medialive

package
v2.0.0-preview.3+incom... Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 8, 2018 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Overview

Package medialive provides the client and types for making API requests to AWS Elemental MediaLive.

API for AWS Elemental MediaLive

See https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14 for more information on this service.

See medialive package documentation for more information. https://docs.aws.amazon.com/sdk-for-go/api/service/medialive/

Using the Client

To AWS Elemental MediaLive with the SDK use the New function to create a new service client. With that client you can make API requests to the service. These clients are safe to use concurrently.

See the SDK's documentation for more information on how to use the SDK. https://docs.aws.amazon.com/sdk-for-go/api/

See aws.Config documentation for more information on configuring SDK clients. https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config

See the AWS Elemental MediaLive client MediaLive for more information on creating client for this service. https://docs.aws.amazon.com/sdk-for-go/api/service/medialive/#New

Index

Constants

View Source
const (

	// ErrCodeBadGatewayException for service response error code
	// "BadGatewayException".
	ErrCodeBadGatewayException = "BadGatewayException"

	// ErrCodeBadRequestException for service response error code
	// "BadRequestException".
	ErrCodeBadRequestException = "BadRequestException"

	// ErrCodeConflictException for service response error code
	// "ConflictException".
	ErrCodeConflictException = "ConflictException"

	// ErrCodeForbiddenException for service response error code
	// "ForbiddenException".
	ErrCodeForbiddenException = "ForbiddenException"

	// ErrCodeGatewayTimeoutException for service response error code
	// "GatewayTimeoutException".
	ErrCodeGatewayTimeoutException = "GatewayTimeoutException"

	// ErrCodeInternalServerErrorException for service response error code
	// "InternalServerErrorException".
	ErrCodeInternalServerErrorException = "InternalServerErrorException"

	// ErrCodeNotFoundException for service response error code
	// "NotFoundException".
	ErrCodeNotFoundException = "NotFoundException"

	// ErrCodeTooManyRequestsException for service response error code
	// "TooManyRequestsException".
	ErrCodeTooManyRequestsException = "TooManyRequestsException"

	// ErrCodeUnprocessableEntityException for service response error code
	// "UnprocessableEntityException".
	ErrCodeUnprocessableEntityException = "UnprocessableEntityException"
)
View Source
const (
	ServiceName = "medialive" // Service endpoint prefix API calls made to.
	EndpointsID = ServiceName // Service ID for Regions and Endpoints metadata.
)

Service information constants

Variables

This section is empty.

Functions

This section is empty.

Types

type AacCodingMode

type AacCodingMode string
const (
	AacCodingModeAdReceiverMix AacCodingMode = "AD_RECEIVER_MIX"
	AacCodingModeCodingMode10  AacCodingMode = "CODING_MODE_1_0"
	AacCodingModeCodingMode11  AacCodingMode = "CODING_MODE_1_1"
	AacCodingModeCodingMode20  AacCodingMode = "CODING_MODE_2_0"
	AacCodingModeCodingMode51  AacCodingMode = "CODING_MODE_5_1"
)

Enum values for AacCodingMode

func (AacCodingMode) MarshalValue

func (enum AacCodingMode) MarshalValue() (string, error)

func (AacCodingMode) MarshalValueBuf

func (enum AacCodingMode) MarshalValueBuf(b []byte) ([]byte, error)

type AacInputType

type AacInputType string
const (
	AacInputTypeBroadcasterMixedAd AacInputType = "BROADCASTER_MIXED_AD"
	AacInputTypeNormal             AacInputType = "NORMAL"
)

Enum values for AacInputType

func (AacInputType) MarshalValue

func (enum AacInputType) MarshalValue() (string, error)

func (AacInputType) MarshalValueBuf

func (enum AacInputType) MarshalValueBuf(b []byte) ([]byte, error)

type AacProfile

type AacProfile string
const (
	AacProfileHev1 AacProfile = "HEV1"
	AacProfileHev2 AacProfile = "HEV2"
	AacProfileLc   AacProfile = "LC"
)

Enum values for AacProfile

func (AacProfile) MarshalValue

func (enum AacProfile) MarshalValue() (string, error)

func (AacProfile) MarshalValueBuf

func (enum AacProfile) MarshalValueBuf(b []byte) ([]byte, error)

type AacRateControlMode

type AacRateControlMode string
const (
	AacRateControlModeCbr AacRateControlMode = "CBR"
	AacRateControlModeVbr AacRateControlMode = "VBR"
)

Enum values for AacRateControlMode

func (AacRateControlMode) MarshalValue

func (enum AacRateControlMode) MarshalValue() (string, error)

func (AacRateControlMode) MarshalValueBuf

func (enum AacRateControlMode) MarshalValueBuf(b []byte) ([]byte, error)

type AacRawFormat

type AacRawFormat string
const (
	AacRawFormatLatmLoas AacRawFormat = "LATM_LOAS"
	AacRawFormatNone     AacRawFormat = "NONE"
)

Enum values for AacRawFormat

func (AacRawFormat) MarshalValue

func (enum AacRawFormat) MarshalValue() (string, error)

func (AacRawFormat) MarshalValueBuf

func (enum AacRawFormat) MarshalValueBuf(b []byte) ([]byte, error)

type AacSettings

type AacSettings struct {

	// Average bitrate in bits/second. Valid values depend on rate control mode
	// and profile.
	Bitrate *float64 `locationName:"bitrate" type:"double"`

	// Mono, Stereo, or 5.1 channel layout. Valid values depend on rate control
	// mode and profile. The adReceiverMix setting receives a stereo description
	// plus control track and emits a mono AAC encode of the description track,
	// with control data emitted in the PES header as per ETSI TS 101 154 Annex
	// E.
	CodingMode AacCodingMode `locationName:"codingMode" type:"string" enum:"true"`

	// Set to "broadcasterMixedAd" when input contains pre-mixed main audio + AD
	// (narration) as a stereo pair. The Audio Type field (audioType) will be set
	// to 3, which signals to downstream systems that this stream contains "broadcaster
	// mixed AD". Note that the input received by the encoder must contain pre-mixed
	// audio; the encoder does not perform the mixing. The values in audioTypeControl
	// and audioType (in AudioDescription) are ignored when set to broadcasterMixedAd.Leave
	// set to "normal" when input does not contain pre-mixed audio + AD.
	InputType AacInputType `locationName:"inputType" type:"string" enum:"true"`

	// AAC Profile.
	Profile AacProfile `locationName:"profile" type:"string" enum:"true"`

	// Rate Control Mode.
	RateControlMode AacRateControlMode `locationName:"rateControlMode" type:"string" enum:"true"`

	// Sets LATM / LOAS AAC output for raw containers.
	RawFormat AacRawFormat `locationName:"rawFormat" type:"string" enum:"true"`

	// Sample rate in Hz. Valid values depend on rate control mode and profile.
	SampleRate *float64 `locationName:"sampleRate" type:"double"`

	// Use MPEG-2 AAC audio instead of MPEG-4 AAC audio for raw or MPEG-2 Transport
	// Stream containers.
	Spec AacSpec `locationName:"spec" type:"string" enum:"true"`

	// VBR Quality Level - Only used if rateControlMode is VBR.
	VbrQuality AacVbrQuality `locationName:"vbrQuality" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AacSettings

func (AacSettings) GoString

func (s AacSettings) GoString() string

GoString returns the string representation

func (AacSettings) MarshalFields

func (s AacSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (AacSettings) String

func (s AacSettings) String() string

String returns the string representation

type AacSpec

type AacSpec string
const (
	AacSpecMpeg2 AacSpec = "MPEG2"
	AacSpecMpeg4 AacSpec = "MPEG4"
)

Enum values for AacSpec

func (AacSpec) MarshalValue

func (enum AacSpec) MarshalValue() (string, error)

func (AacSpec) MarshalValueBuf

func (enum AacSpec) MarshalValueBuf(b []byte) ([]byte, error)

type AacVbrQuality

type AacVbrQuality string
const (
	AacVbrQualityHigh       AacVbrQuality = "HIGH"
	AacVbrQualityLow        AacVbrQuality = "LOW"
	AacVbrQualityMediumHigh AacVbrQuality = "MEDIUM_HIGH"
	AacVbrQualityMediumLow  AacVbrQuality = "MEDIUM_LOW"
)

Enum values for AacVbrQuality

func (AacVbrQuality) MarshalValue

func (enum AacVbrQuality) MarshalValue() (string, error)

func (AacVbrQuality) MarshalValueBuf

func (enum AacVbrQuality) MarshalValueBuf(b []byte) ([]byte, error)

type Ac3BitstreamMode

type Ac3BitstreamMode string
const (
	Ac3BitstreamModeCommentary       Ac3BitstreamMode = "COMMENTARY"
	Ac3BitstreamModeCompleteMain     Ac3BitstreamMode = "COMPLETE_MAIN"
	Ac3BitstreamModeDialogue         Ac3BitstreamMode = "DIALOGUE"
	Ac3BitstreamModeEmergency        Ac3BitstreamMode = "EMERGENCY"
	Ac3BitstreamModeHearingImpaired  Ac3BitstreamMode = "HEARING_IMPAIRED"
	Ac3BitstreamModeMusicAndEffects  Ac3BitstreamMode = "MUSIC_AND_EFFECTS"
	Ac3BitstreamModeVisuallyImpaired Ac3BitstreamMode = "VISUALLY_IMPAIRED"
	Ac3BitstreamModeVoiceOver        Ac3BitstreamMode = "VOICE_OVER"
)

Enum values for Ac3BitstreamMode

func (Ac3BitstreamMode) MarshalValue

func (enum Ac3BitstreamMode) MarshalValue() (string, error)

func (Ac3BitstreamMode) MarshalValueBuf

func (enum Ac3BitstreamMode) MarshalValueBuf(b []byte) ([]byte, error)

type Ac3CodingMode

type Ac3CodingMode string
const (
	Ac3CodingModeCodingMode10    Ac3CodingMode = "CODING_MODE_1_0"
	Ac3CodingModeCodingMode11    Ac3CodingMode = "CODING_MODE_1_1"
	Ac3CodingModeCodingMode20    Ac3CodingMode = "CODING_MODE_2_0"
	Ac3CodingModeCodingMode32Lfe Ac3CodingMode = "CODING_MODE_3_2_LFE"
)

Enum values for Ac3CodingMode

func (Ac3CodingMode) MarshalValue

func (enum Ac3CodingMode) MarshalValue() (string, error)

func (Ac3CodingMode) MarshalValueBuf

func (enum Ac3CodingMode) MarshalValueBuf(b []byte) ([]byte, error)

type Ac3DrcProfile

type Ac3DrcProfile string
const (
	Ac3DrcProfileFilmStandard Ac3DrcProfile = "FILM_STANDARD"
	Ac3DrcProfileNone         Ac3DrcProfile = "NONE"
)

Enum values for Ac3DrcProfile

func (Ac3DrcProfile) MarshalValue

func (enum Ac3DrcProfile) MarshalValue() (string, error)

func (Ac3DrcProfile) MarshalValueBuf

func (enum Ac3DrcProfile) MarshalValueBuf(b []byte) ([]byte, error)

type Ac3LfeFilter

type Ac3LfeFilter string
const (
	Ac3LfeFilterDisabled Ac3LfeFilter = "DISABLED"
	Ac3LfeFilterEnabled  Ac3LfeFilter = "ENABLED"
)

Enum values for Ac3LfeFilter

func (Ac3LfeFilter) MarshalValue

func (enum Ac3LfeFilter) MarshalValue() (string, error)

func (Ac3LfeFilter) MarshalValueBuf

func (enum Ac3LfeFilter) MarshalValueBuf(b []byte) ([]byte, error)

type Ac3MetadataControl

type Ac3MetadataControl string
const (
	Ac3MetadataControlFollowInput   Ac3MetadataControl = "FOLLOW_INPUT"
	Ac3MetadataControlUseConfigured Ac3MetadataControl = "USE_CONFIGURED"
)

Enum values for Ac3MetadataControl

func (Ac3MetadataControl) MarshalValue

func (enum Ac3MetadataControl) MarshalValue() (string, error)

func (Ac3MetadataControl) MarshalValueBuf

func (enum Ac3MetadataControl) MarshalValueBuf(b []byte) ([]byte, error)

type Ac3Settings

type Ac3Settings struct {

	// Average bitrate in bits/second. Valid bitrates depend on the coding mode.
	Bitrate *float64 `locationName:"bitrate" type:"double"`

	// Specifies the bitstream mode (bsmod) for the emitted AC-3 stream. See ATSC
	// A/52-2012 for background on these values.
	BitstreamMode Ac3BitstreamMode `locationName:"bitstreamMode" type:"string" enum:"true"`

	// Dolby Digital coding mode. Determines number of channels.
	CodingMode Ac3CodingMode `locationName:"codingMode" type:"string" enum:"true"`

	// Sets the dialnorm for the output. If excluded and input audio is Dolby Digital,
	// dialnorm will be passed through.
	Dialnorm *int64 `locationName:"dialnorm" type:"integer"`

	// If set to filmStandard, adds dynamic range compression signaling to the output
	// bitstream as defined in the Dolby Digital specification.
	DrcProfile Ac3DrcProfile `locationName:"drcProfile" type:"string" enum:"true"`

	// When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior
	// to encoding. Only valid in codingMode32Lfe mode.
	LfeFilter Ac3LfeFilter `locationName:"lfeFilter" type:"string" enum:"true"`

	// When set to "followInput", encoder metadata will be sourced from the DD,
	// DD+, or DolbyE decoder that supplied this audio data. If audio was not supplied
	// from one of these streams, then the static metadata settings will be used.
	MetadataControl Ac3MetadataControl `locationName:"metadataControl" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Ac3Settings

func (Ac3Settings) GoString

func (s Ac3Settings) GoString() string

GoString returns the string representation

func (Ac3Settings) MarshalFields

func (s Ac3Settings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (Ac3Settings) String

func (s Ac3Settings) String() string

String returns the string representation

type AfdSignaling

type AfdSignaling string
const (
	AfdSignalingAuto  AfdSignaling = "AUTO"
	AfdSignalingFixed AfdSignaling = "FIXED"
	AfdSignalingNone  AfdSignaling = "NONE"
)

Enum values for AfdSignaling

func (AfdSignaling) MarshalValue

func (enum AfdSignaling) MarshalValue() (string, error)

func (AfdSignaling) MarshalValueBuf

func (enum AfdSignaling) MarshalValueBuf(b []byte) ([]byte, error)

type ArchiveContainerSettings

type ArchiveContainerSettings struct {
	M2tsSettings *M2tsSettings `locationName:"m2tsSettings" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ArchiveContainerSettings

func (ArchiveContainerSettings) GoString

func (s ArchiveContainerSettings) GoString() string

GoString returns the string representation

func (ArchiveContainerSettings) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (ArchiveContainerSettings) String

func (s ArchiveContainerSettings) String() string

String returns the string representation

type ArchiveGroupSettings

type ArchiveGroupSettings struct {

	// A directory and base filename where archive files should be written. If the
	// base filename portion of the URI is left blank, the base filename of the
	// first input will be automatically inserted.
	Destination *OutputLocationRef `locationName:"destination" type:"structure"`

	// Number of seconds to write to archive file before closing and starting a
	// new one.
	RolloverInterval *int64 `locationName:"rolloverInterval" type:"integer"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ArchiveGroupSettings

func (ArchiveGroupSettings) GoString

func (s ArchiveGroupSettings) GoString() string

GoString returns the string representation

func (ArchiveGroupSettings) MarshalFields

func (s ArchiveGroupSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (ArchiveGroupSettings) String

func (s ArchiveGroupSettings) String() string

String returns the string representation

type ArchiveOutputSettings

type ArchiveOutputSettings struct {

	// Settings specific to the container type of the file.
	ContainerSettings *ArchiveContainerSettings `locationName:"containerSettings" type:"structure"`

	// Output file extension. If excluded, this will be auto-selected from the container
	// type.
	Extension *string `locationName:"extension" type:"string"`

	// String concatenated to the end of the destination filename. Required for
	// multiple outputs of the same type.
	NameModifier *string `locationName:"nameModifier" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ArchiveOutputSettings

func (ArchiveOutputSettings) GoString

func (s ArchiveOutputSettings) GoString() string

GoString returns the string representation

func (ArchiveOutputSettings) MarshalFields

func (s ArchiveOutputSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (ArchiveOutputSettings) String

func (s ArchiveOutputSettings) String() string

String returns the string representation

type AribDestinationSettings

type AribDestinationSettings struct {
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AribDestinationSettings

func (AribDestinationSettings) GoString

func (s AribDestinationSettings) GoString() string

GoString returns the string representation

func (AribDestinationSettings) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (AribDestinationSettings) String

func (s AribDestinationSettings) String() string

String returns the string representation

type AribSourceSettings

type AribSourceSettings struct {
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AribSourceSettings

func (AribSourceSettings) GoString

func (s AribSourceSettings) GoString() string

GoString returns the string representation

func (AribSourceSettings) MarshalFields

func (s AribSourceSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (AribSourceSettings) String

func (s AribSourceSettings) String() string

String returns the string representation

type AudioChannelMapping

type AudioChannelMapping struct {

	// Indices and gain values for each input channel that should be remixed into
	// this output channel.
	InputChannelLevels []InputChannelLevel `locationName:"inputChannelLevels" type:"list"`

	// The index of the output channel being produced.
	OutputChannel *int64 `locationName:"outputChannel" type:"integer"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioChannelMapping

func (AudioChannelMapping) GoString

func (s AudioChannelMapping) GoString() string

GoString returns the string representation

func (AudioChannelMapping) MarshalFields

func (s AudioChannelMapping) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (AudioChannelMapping) String

func (s AudioChannelMapping) String() string

String returns the string representation

type AudioCodecSettings

type AudioCodecSettings struct {
	AacSettings *AacSettings `locationName:"aacSettings" type:"structure"`

	Ac3Settings *Ac3Settings `locationName:"ac3Settings" type:"structure"`

	Eac3Settings *Eac3Settings `locationName:"eac3Settings" type:"structure"`

	Mp2Settings *Mp2Settings `locationName:"mp2Settings" type:"structure"`

	PassThroughSettings *PassThroughSettings `locationName:"passThroughSettings" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioCodecSettings

func (AudioCodecSettings) GoString

func (s AudioCodecSettings) GoString() string

GoString returns the string representation

func (AudioCodecSettings) MarshalFields

func (s AudioCodecSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (AudioCodecSettings) String

func (s AudioCodecSettings) String() string

String returns the string representation

type AudioDescription

type AudioDescription struct {

	// Advanced audio normalization settings.
	AudioNormalizationSettings *AudioNormalizationSettings `locationName:"audioNormalizationSettings" type:"structure"`

	// The name of the AudioSelector used as the source for this AudioDescription.
	AudioSelectorName *string `locationName:"audioSelectorName" type:"string"`

	// Applies only if audioTypeControl is useConfigured. The values for audioType
	// are defined in ISO-IEC 13818-1.
	AudioType AudioType `locationName:"audioType" type:"string" enum:"true"`

	// Determines how audio type is determined. followInput: If the input contains
	// an ISO 639 audioType, then that value is passed through to the output. If
	// the input contains no ISO 639 audioType, the value in Audio Type is included
	// in the output. useConfigured: The value in Audio Type is included in the
	// output.Note that this field and audioType are both ignored if inputType is
	// broadcasterMixedAd.
	AudioTypeControl AudioDescriptionAudioTypeControl `locationName:"audioTypeControl" type:"string" enum:"true"`

	// Audio codec settings.
	CodecSettings *AudioCodecSettings `locationName:"codecSettings" type:"structure"`

	// Indicates the language of the audio output track. Only used if languageControlMode
	// is useConfigured, or there is no ISO 639 language code specified in the input.
	LanguageCode *string `locationName:"languageCode" type:"string"`

	// Choosing followInput will cause the ISO 639 language code of the output to
	// follow the ISO 639 language code of the input. The languageCode will be used
	// when useConfigured is set, or when followInput is selected but there is no
	// ISO 639 language code specified by the input.
	LanguageCodeControl AudioDescriptionLanguageCodeControl `locationName:"languageCodeControl" type:"string" enum:"true"`

	// The name of this AudioDescription. Outputs will use this name to uniquely
	// identify this AudioDescription. Description names should be unique within
	// this Live Event.
	Name *string `locationName:"name" type:"string"`

	// Settings that control how input audio channels are remixed into the output
	// audio channels.
	RemixSettings *RemixSettings `locationName:"remixSettings" type:"structure"`

	// Used for MS Smooth and Apple HLS outputs. Indicates the name displayed by
	// the player (eg. English, or Director Commentary).
	StreamName *string `locationName:"streamName" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioDescription

func (AudioDescription) GoString

func (s AudioDescription) GoString() string

GoString returns the string representation

func (AudioDescription) MarshalFields

func (s AudioDescription) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (AudioDescription) String

func (s AudioDescription) String() string

String returns the string representation

type AudioDescriptionAudioTypeControl

type AudioDescriptionAudioTypeControl string
const (
	AudioDescriptionAudioTypeControlFollowInput   AudioDescriptionAudioTypeControl = "FOLLOW_INPUT"
	AudioDescriptionAudioTypeControlUseConfigured AudioDescriptionAudioTypeControl = "USE_CONFIGURED"
)

Enum values for AudioDescriptionAudioTypeControl

func (AudioDescriptionAudioTypeControl) MarshalValue

func (enum AudioDescriptionAudioTypeControl) MarshalValue() (string, error)

func (AudioDescriptionAudioTypeControl) MarshalValueBuf

func (enum AudioDescriptionAudioTypeControl) MarshalValueBuf(b []byte) ([]byte, error)

type AudioDescriptionLanguageCodeControl

type AudioDescriptionLanguageCodeControl string
const (
	AudioDescriptionLanguageCodeControlFollowInput   AudioDescriptionLanguageCodeControl = "FOLLOW_INPUT"
	AudioDescriptionLanguageCodeControlUseConfigured AudioDescriptionLanguageCodeControl = "USE_CONFIGURED"
)

Enum values for AudioDescriptionLanguageCodeControl

func (AudioDescriptionLanguageCodeControl) MarshalValue

func (enum AudioDescriptionLanguageCodeControl) MarshalValue() (string, error)

func (AudioDescriptionLanguageCodeControl) MarshalValueBuf

func (enum AudioDescriptionLanguageCodeControl) MarshalValueBuf(b []byte) ([]byte, error)

type AudioLanguageSelection

type AudioLanguageSelection struct {

	// Selects a specific three-letter language code from within an audio source.
	LanguageCode *string `locationName:"languageCode" type:"string"`

	// When set to "strict", the transport stream demux strictly identifies audio
	// streams by their language descriptor. If a PMT update occurs such that an
	// audio stream matching the initially selected language is no longer present
	// then mute will be encoded until the language returns. If "loose", then on
	// a PMT update the demux will choose another audio stream in the program with
	// the same stream type if it can't find one with the same language.
	LanguageSelectionPolicy AudioLanguageSelectionPolicy `locationName:"languageSelectionPolicy" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioLanguageSelection

func (AudioLanguageSelection) GoString

func (s AudioLanguageSelection) GoString() string

GoString returns the string representation

func (AudioLanguageSelection) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (AudioLanguageSelection) String

func (s AudioLanguageSelection) String() string

String returns the string representation

type AudioLanguageSelectionPolicy

type AudioLanguageSelectionPolicy string
const (
	AudioLanguageSelectionPolicyLoose  AudioLanguageSelectionPolicy = "LOOSE"
	AudioLanguageSelectionPolicyStrict AudioLanguageSelectionPolicy = "STRICT"
)

Enum values for AudioLanguageSelectionPolicy

func (AudioLanguageSelectionPolicy) MarshalValue

func (enum AudioLanguageSelectionPolicy) MarshalValue() (string, error)

func (AudioLanguageSelectionPolicy) MarshalValueBuf

func (enum AudioLanguageSelectionPolicy) MarshalValueBuf(b []byte) ([]byte, error)

type AudioNormalizationAlgorithm

type AudioNormalizationAlgorithm string
const (
	AudioNormalizationAlgorithmItu17701 AudioNormalizationAlgorithm = "ITU_1770_1"
	AudioNormalizationAlgorithmItu17702 AudioNormalizationAlgorithm = "ITU_1770_2"
)

Enum values for AudioNormalizationAlgorithm

func (AudioNormalizationAlgorithm) MarshalValue

func (enum AudioNormalizationAlgorithm) MarshalValue() (string, error)

func (AudioNormalizationAlgorithm) MarshalValueBuf

func (enum AudioNormalizationAlgorithm) MarshalValueBuf(b []byte) ([]byte, error)

type AudioNormalizationAlgorithmControl

type AudioNormalizationAlgorithmControl string
const (
	AudioNormalizationAlgorithmControlCorrectAudio AudioNormalizationAlgorithmControl = "CORRECT_AUDIO"
)

Enum values for AudioNormalizationAlgorithmControl

func (AudioNormalizationAlgorithmControl) MarshalValue

func (enum AudioNormalizationAlgorithmControl) MarshalValue() (string, error)

func (AudioNormalizationAlgorithmControl) MarshalValueBuf

func (enum AudioNormalizationAlgorithmControl) MarshalValueBuf(b []byte) ([]byte, error)

type AudioNormalizationSettings

type AudioNormalizationSettings struct {

	// Audio normalization algorithm to use. itu17701 conforms to the CALM Act specification,
	// itu17702 conforms to the EBU R-128 specification.
	Algorithm AudioNormalizationAlgorithm `locationName:"algorithm" type:"string" enum:"true"`

	// When set to correctAudio the output audio is corrected using the chosen algorithm.
	// If set to measureOnly, the audio will be measured but not adjusted.
	AlgorithmControl AudioNormalizationAlgorithmControl `locationName:"algorithmControl" type:"string" enum:"true"`

	// Target LKFS(loudness) to adjust volume to. If no value is entered, a default
	// value will be used according to the chosen algorithm. The CALM Act (1770-1)
	// recommends a target of -24 LKFS. The EBU R-128 specification (1770-2) recommends
	// a target of -23 LKFS.
	TargetLkfs *float64 `locationName:"targetLkfs" type:"double"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioNormalizationSettings

func (AudioNormalizationSettings) GoString

func (s AudioNormalizationSettings) GoString() string

GoString returns the string representation

func (AudioNormalizationSettings) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (AudioNormalizationSettings) String

String returns the string representation

type AudioOnlyHlsSettings

type AudioOnlyHlsSettings struct {

	// Specifies the group to which the audio Rendition belongs.
	AudioGroupId *string `locationName:"audioGroupId" type:"string"`

	// For use with an audio only Stream. Must be a .jpg or .png file. If given,
	// this image will be used as the cover-art for the audio only output. Ideally,
	// it should be formatted for an iPhone screen for two reasons. The iPhone does
	// not resize the image, it crops a centered image on the top/bottom and left/right.
	// Additionally, this image file gets saved bit-for-bit into every 10-second
	// segment file, so will increase bandwidth by {image file size} * {segment
	// count} * {user count.}.
	AudioOnlyImage *InputLocation `locationName:"audioOnlyImage" type:"structure"`

	// Four types of audio-only tracks are supported:Audio-Only Variant StreamThe
	// client can play back this audio-only stream instead of video in low-bandwidth
	// scenarios. Represented as an EXT-X-STREAM-INF in the HLS manifest.Alternate
	// Audio, Auto Select, DefaultAlternate rendition that the client should try
	// to play back by default. Represented as an EXT-X-MEDIA in the HLS manifest
	// with DEFAULT=YES, AUTOSELECT=YESAlternate Audio, Auto Select, Not DefaultAlternate
	// rendition that the client may try to play back by default. Represented as
	// an EXT-X-MEDIA in the HLS manifest with DEFAULT=NO, AUTOSELECT=YESAlternate
	// Audio, not Auto SelectAlternate rendition that the client will not try to
	// play back by default. Represented as an EXT-X-MEDIA in the HLS manifest with
	// DEFAULT=NO, AUTOSELECT=NO
	AudioTrackType AudioOnlyHlsTrackType `locationName:"audioTrackType" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioOnlyHlsSettings

func (AudioOnlyHlsSettings) GoString

func (s AudioOnlyHlsSettings) GoString() string

GoString returns the string representation

func (AudioOnlyHlsSettings) MarshalFields

func (s AudioOnlyHlsSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (AudioOnlyHlsSettings) String

func (s AudioOnlyHlsSettings) String() string

String returns the string representation

type AudioOnlyHlsTrackType

type AudioOnlyHlsTrackType string
const (
	AudioOnlyHlsTrackTypeAlternateAudioAutoSelect        AudioOnlyHlsTrackType = "ALTERNATE_AUDIO_AUTO_SELECT"
	AudioOnlyHlsTrackTypeAlternateAudioAutoSelectDefault AudioOnlyHlsTrackType = "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT"
	AudioOnlyHlsTrackTypeAlternateAudioNotAutoSelect     AudioOnlyHlsTrackType = "ALTERNATE_AUDIO_NOT_AUTO_SELECT"
	AudioOnlyHlsTrackTypeAudioOnlyVariantStream          AudioOnlyHlsTrackType = "AUDIO_ONLY_VARIANT_STREAM"
)

Enum values for AudioOnlyHlsTrackType

func (AudioOnlyHlsTrackType) MarshalValue

func (enum AudioOnlyHlsTrackType) MarshalValue() (string, error)

func (AudioOnlyHlsTrackType) MarshalValueBuf

func (enum AudioOnlyHlsTrackType) MarshalValueBuf(b []byte) ([]byte, error)

type AudioPidSelection

type AudioPidSelection struct {

	// Selects a specific PID from within a source.
	Pid *int64 `locationName:"pid" type:"integer"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioPidSelection

func (AudioPidSelection) GoString

func (s AudioPidSelection) GoString() string

GoString returns the string representation

func (AudioPidSelection) MarshalFields

func (s AudioPidSelection) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (AudioPidSelection) String

func (s AudioPidSelection) String() string

String returns the string representation

type AudioSelector

type AudioSelector struct {

	// The name of this AudioSelector. AudioDescriptions will use this name to uniquely
	// identify this Selector. Selector names should be unique per input.
	Name *string `locationName:"name" type:"string"`

	// The audio selector settings.
	SelectorSettings *AudioSelectorSettings `locationName:"selectorSettings" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioSelector

func (AudioSelector) GoString

func (s AudioSelector) GoString() string

GoString returns the string representation

func (AudioSelector) MarshalFields

func (s AudioSelector) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (AudioSelector) String

func (s AudioSelector) String() string

String returns the string representation

type AudioSelectorSettings

type AudioSelectorSettings struct {
	AudioLanguageSelection *AudioLanguageSelection `locationName:"audioLanguageSelection" type:"structure"`

	AudioPidSelection *AudioPidSelection `locationName:"audioPidSelection" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioSelectorSettings

func (AudioSelectorSettings) GoString

func (s AudioSelectorSettings) GoString() string

GoString returns the string representation

func (AudioSelectorSettings) MarshalFields

func (s AudioSelectorSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (AudioSelectorSettings) String

func (s AudioSelectorSettings) String() string

String returns the string representation

type AudioType

type AudioType string
const (
	AudioTypeCleanEffects             AudioType = "CLEAN_EFFECTS"
	AudioTypeHearingImpaired          AudioType = "HEARING_IMPAIRED"
	AudioTypeUndefined                AudioType = "UNDEFINED"
	AudioTypeVisualImpairedCommentary AudioType = "VISUAL_IMPAIRED_COMMENTARY"
)

Enum values for AudioType

func (AudioType) MarshalValue

func (enum AudioType) MarshalValue() (string, error)

func (AudioType) MarshalValueBuf

func (enum AudioType) MarshalValueBuf(b []byte) ([]byte, error)

type AvailBlanking

type AvailBlanking struct {

	// Blanking image to be used. Leave empty for solid black. Only bmp and png
	// images are supported.
	AvailBlankingImage *InputLocation `locationName:"availBlankingImage" type:"structure"`

	// When set to enabled, causes video, audio and captions to be blanked when
	// insertion metadata is added.
	State AvailBlankingState `locationName:"state" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AvailBlanking

func (AvailBlanking) GoString

func (s AvailBlanking) GoString() string

GoString returns the string representation

func (AvailBlanking) MarshalFields

func (s AvailBlanking) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (AvailBlanking) String

func (s AvailBlanking) String() string

String returns the string representation

type AvailBlankingState

type AvailBlankingState string
const (
	AvailBlankingStateDisabled AvailBlankingState = "DISABLED"
	AvailBlankingStateEnabled  AvailBlankingState = "ENABLED"
)

Enum values for AvailBlankingState

func (AvailBlankingState) MarshalValue

func (enum AvailBlankingState) MarshalValue() (string, error)

func (AvailBlankingState) MarshalValueBuf

func (enum AvailBlankingState) MarshalValueBuf(b []byte) ([]byte, error)

type AvailConfiguration

type AvailConfiguration struct {

	// Ad avail settings.
	AvailSettings *AvailSettings `locationName:"availSettings" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AvailConfiguration

func (AvailConfiguration) GoString

func (s AvailConfiguration) GoString() string

GoString returns the string representation

func (AvailConfiguration) MarshalFields

func (s AvailConfiguration) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (AvailConfiguration) String

func (s AvailConfiguration) String() string

String returns the string representation

type AvailSettings

type AvailSettings struct {
	Scte35SpliceInsert *Scte35SpliceInsert `locationName:"scte35SpliceInsert" type:"structure"`

	Scte35TimeSignalApos *Scte35TimeSignalApos `locationName:"scte35TimeSignalApos" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AvailSettings

func (AvailSettings) GoString

func (s AvailSettings) GoString() string

GoString returns the string representation

func (AvailSettings) MarshalFields

func (s AvailSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (AvailSettings) String

func (s AvailSettings) String() string

String returns the string representation

type BlackoutSlate

type BlackoutSlate struct {

	// Blackout slate image to be used. Leave empty for solid black. Only bmp and
	// png images are supported.
	BlackoutSlateImage *InputLocation `locationName:"blackoutSlateImage" type:"structure"`

	// Setting to enabled causes the encoder to blackout the video, audio, and captions,
	// and raise the "Network Blackout Image" slate when an SCTE104/35 Network End
	// Segmentation Descriptor is encountered. The blackout will be lifted when
	// the Network Start Segmentation Descriptor is encountered. The Network End
	// and Network Start descriptors must contain a network ID that matches the
	// value entered in "Network ID".
	NetworkEndBlackout BlackoutSlateNetworkEndBlackout `locationName:"networkEndBlackout" type:"string" enum:"true"`

	// Path to local file to use as Network End Blackout image. Image will be scaled
	// to fill the entire output raster.
	NetworkEndBlackoutImage *InputLocation `locationName:"networkEndBlackoutImage" type:"structure"`

	// Provides Network ID that matches EIDR ID format (e.g., "10.XXXX/XXXX-XXXX-XXXX-XXXX-XXXX-C").
	NetworkId *string `locationName:"networkId" type:"string"`

	// When set to enabled, causes video, audio and captions to be blanked when
	// indicated by program metadata.
	State BlackoutSlateState `locationName:"state" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BlackoutSlate

func (BlackoutSlate) GoString

func (s BlackoutSlate) GoString() string

GoString returns the string representation

func (BlackoutSlate) MarshalFields

func (s BlackoutSlate) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (BlackoutSlate) String

func (s BlackoutSlate) String() string

String returns the string representation

type BlackoutSlateNetworkEndBlackout

type BlackoutSlateNetworkEndBlackout string
const (
	BlackoutSlateNetworkEndBlackoutDisabled BlackoutSlateNetworkEndBlackout = "DISABLED"
	BlackoutSlateNetworkEndBlackoutEnabled  BlackoutSlateNetworkEndBlackout = "ENABLED"
)

Enum values for BlackoutSlateNetworkEndBlackout

func (BlackoutSlateNetworkEndBlackout) MarshalValue

func (enum BlackoutSlateNetworkEndBlackout) MarshalValue() (string, error)

func (BlackoutSlateNetworkEndBlackout) MarshalValueBuf

func (enum BlackoutSlateNetworkEndBlackout) MarshalValueBuf(b []byte) ([]byte, error)

type BlackoutSlateState

type BlackoutSlateState string
const (
	BlackoutSlateStateDisabled BlackoutSlateState = "DISABLED"
	BlackoutSlateStateEnabled  BlackoutSlateState = "ENABLED"
)

Enum values for BlackoutSlateState

func (BlackoutSlateState) MarshalValue

func (enum BlackoutSlateState) MarshalValue() (string, error)

func (BlackoutSlateState) MarshalValueBuf

func (enum BlackoutSlateState) MarshalValueBuf(b []byte) ([]byte, error)

type BurnInAlignment

type BurnInAlignment string
const (
	BurnInAlignmentCentered BurnInAlignment = "CENTERED"
	BurnInAlignmentLeft     BurnInAlignment = "LEFT"
	BurnInAlignmentSmart    BurnInAlignment = "SMART"
)

Enum values for BurnInAlignment

func (BurnInAlignment) MarshalValue

func (enum BurnInAlignment) MarshalValue() (string, error)

func (BurnInAlignment) MarshalValueBuf

func (enum BurnInAlignment) MarshalValueBuf(b []byte) ([]byte, error)

type BurnInBackgroundColor

type BurnInBackgroundColor string
const (
	BurnInBackgroundColorBlack BurnInBackgroundColor = "BLACK"
	BurnInBackgroundColorNone  BurnInBackgroundColor = "NONE"
	BurnInBackgroundColorWhite BurnInBackgroundColor = "WHITE"
)

Enum values for BurnInBackgroundColor

func (BurnInBackgroundColor) MarshalValue

func (enum BurnInBackgroundColor) MarshalValue() (string, error)

func (BurnInBackgroundColor) MarshalValueBuf

func (enum BurnInBackgroundColor) MarshalValueBuf(b []byte) ([]byte, error)

type BurnInDestinationSettings

type BurnInDestinationSettings struct {

	// If no explicit xPosition or yPosition is provided, setting alignment to centered
	// will place the captions at the bottom center of the output. Similarly, setting
	// a left alignment will align captions to the bottom left of the output. If
	// x and y positions are given in conjunction with the alignment parameter,
	// the font will be justified (either left or centered) relative to those coordinates.
	// Selecting "smart" justification will left-justify live subtitles and center-justify
	// pre-recorded subtitles. All burn-in and DVB-Sub font settings must match.
	Alignment BurnInAlignment `locationName:"alignment" type:"string" enum:"true"`

	// Specifies the color of the rectangle behind the captions. All burn-in and
	// DVB-Sub font settings must match.
	BackgroundColor BurnInBackgroundColor `locationName:"backgroundColor" type:"string" enum:"true"`

	// Specifies the opacity of the background rectangle. 255 is opaque; 0 is transparent.
	// Leaving this parameter out is equivalent to setting it to 0 (transparent).
	// All burn-in and DVB-Sub font settings must match.
	BackgroundOpacity *int64 `locationName:"backgroundOpacity" type:"integer"`

	// External font file used for caption burn-in. File extension must be 'ttf'
	// or 'tte'. Although the user can select output fonts for many different types
	// of input captions, embedded, STL and teletext sources use a strict grid system.
	// Using external fonts with these caption sources could cause unexpected display
	// of proportional fonts. All burn-in and DVB-Sub font settings must match.
	Font *InputLocation `locationName:"font" type:"structure"`

	// Specifies the color of the burned-in captions. This option is not valid for
	// source captions that are STL, 608/embedded or teletext. These source settings
	// are already pre-defined by the caption stream. All burn-in and DVB-Sub font
	// settings must match.
	FontColor BurnInFontColor `locationName:"fontColor" type:"string" enum:"true"`

	// Specifies the opacity of the burned-in captions. 255 is opaque; 0 is transparent.
	// All burn-in and DVB-Sub font settings must match.
	FontOpacity *int64 `locationName:"fontOpacity" type:"integer"`

	// Font resolution in DPI (dots per inch); default is 96 dpi. All burn-in and
	// DVB-Sub font settings must match.
	FontResolution *int64 `locationName:"fontResolution" type:"integer"`

	// When set to 'auto' fontSize will scale depending on the size of the output.
	// Giving a positive integer will specify the exact font size in points. All
	// burn-in and DVB-Sub font settings must match.
	FontSize *string `locationName:"fontSize" type:"string"`

	// Specifies font outline color. This option is not valid for source captions
	// that are either 608/embedded or teletext. These source settings are already
	// pre-defined by the caption stream. All burn-in and DVB-Sub font settings
	// must match.
	OutlineColor BurnInOutlineColor `locationName:"outlineColor" type:"string" enum:"true"`

	// Specifies font outline size in pixels. This option is not valid for source
	// captions that are either 608/embedded or teletext. These source settings
	// are already pre-defined by the caption stream. All burn-in and DVB-Sub font
	// settings must match.
	OutlineSize *int64 `locationName:"outlineSize" type:"integer"`

	// Specifies the color of the shadow cast by the captions. All burn-in and DVB-Sub
	// font settings must match.
	ShadowColor BurnInShadowColor `locationName:"shadowColor" type:"string" enum:"true"`

	// Specifies the opacity of the shadow. 255 is opaque; 0 is transparent. Leaving
	// this parameter out is equivalent to setting it to 0 (transparent). All burn-in
	// and DVB-Sub font settings must match.
	ShadowOpacity *int64 `locationName:"shadowOpacity" type:"integer"`

	// Specifies the horizontal offset of the shadow relative to the captions in
	// pixels. A value of -2 would result in a shadow offset 2 pixels to the left.
	// All burn-in and DVB-Sub font settings must match.
	ShadowXOffset *int64 `locationName:"shadowXOffset" type:"integer"`

	// Specifies the vertical offset of the shadow relative to the captions in pixels.
	// A value of -2 would result in a shadow offset 2 pixels above the text. All
	// burn-in and DVB-Sub font settings must match.
	ShadowYOffset *int64 `locationName:"shadowYOffset" type:"integer"`

	// Controls whether a fixed grid size will be used to generate the output subtitles
	// bitmap. Only applicable for Teletext inputs and DVB-Sub/Burn-in outputs.
	TeletextGridControl BurnInTeletextGridControl `locationName:"teletextGridControl" type:"string" enum:"true"`

	// Specifies the horizontal position of the caption relative to the left side
	// of the output in pixels. A value of 10 would result in the captions starting
	// 10 pixels from the left of the output. If no explicit xPosition is provided,
	// the horizontal caption position will be determined by the alignment parameter.
	// All burn-in and DVB-Sub font settings must match.
	XPosition *int64 `locationName:"xPosition" type:"integer"`

	// Specifies the vertical position of the caption relative to the top of the
	// output in pixels. A value of 10 would result in the captions starting 10
	// pixels from the top of the output. If no explicit yPosition is provided,
	// the caption will be positioned towards the bottom of the output. All burn-in
	// and DVB-Sub font settings must match.
	YPosition *int64 `locationName:"yPosition" type:"integer"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BurnInDestinationSettings

func (BurnInDestinationSettings) GoString

func (s BurnInDestinationSettings) GoString() string

GoString returns the string representation

func (BurnInDestinationSettings) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (BurnInDestinationSettings) String

func (s BurnInDestinationSettings) String() string

String returns the string representation

type BurnInFontColor

type BurnInFontColor string
const (
	BurnInFontColorBlack  BurnInFontColor = "BLACK"
	BurnInFontColorBlue   BurnInFontColor = "BLUE"
	BurnInFontColorGreen  BurnInFontColor = "GREEN"
	BurnInFontColorRed    BurnInFontColor = "RED"
	BurnInFontColorWhite  BurnInFontColor = "WHITE"
	BurnInFontColorYellow BurnInFontColor = "YELLOW"
)

Enum values for BurnInFontColor

func (BurnInFontColor) MarshalValue

func (enum BurnInFontColor) MarshalValue() (string, error)

func (BurnInFontColor) MarshalValueBuf

func (enum BurnInFontColor) MarshalValueBuf(b []byte) ([]byte, error)

type BurnInOutlineColor

type BurnInOutlineColor string
const (
	BurnInOutlineColorBlack  BurnInOutlineColor = "BLACK"
	BurnInOutlineColorBlue   BurnInOutlineColor = "BLUE"
	BurnInOutlineColorGreen  BurnInOutlineColor = "GREEN"
	BurnInOutlineColorRed    BurnInOutlineColor = "RED"
	BurnInOutlineColorWhite  BurnInOutlineColor = "WHITE"
	BurnInOutlineColorYellow BurnInOutlineColor = "YELLOW"
)

Enum values for BurnInOutlineColor

func (BurnInOutlineColor) MarshalValue

func (enum BurnInOutlineColor) MarshalValue() (string, error)

func (BurnInOutlineColor) MarshalValueBuf

func (enum BurnInOutlineColor) MarshalValueBuf(b []byte) ([]byte, error)

type BurnInShadowColor

type BurnInShadowColor string
const (
	BurnInShadowColorBlack BurnInShadowColor = "BLACK"
	BurnInShadowColorNone  BurnInShadowColor = "NONE"
	BurnInShadowColorWhite BurnInShadowColor = "WHITE"
)

Enum values for BurnInShadowColor

func (BurnInShadowColor) MarshalValue

func (enum BurnInShadowColor) MarshalValue() (string, error)

func (BurnInShadowColor) MarshalValueBuf

func (enum BurnInShadowColor) MarshalValueBuf(b []byte) ([]byte, error)

type BurnInTeletextGridControl

type BurnInTeletextGridControl string
const (
	BurnInTeletextGridControlFixed  BurnInTeletextGridControl = "FIXED"
	BurnInTeletextGridControlScaled BurnInTeletextGridControl = "SCALED"
)

Enum values for BurnInTeletextGridControl

func (BurnInTeletextGridControl) MarshalValue

func (enum BurnInTeletextGridControl) MarshalValue() (string, error)

func (BurnInTeletextGridControl) MarshalValueBuf

func (enum BurnInTeletextGridControl) MarshalValueBuf(b []byte) ([]byte, error)

type CaptionDescription

type CaptionDescription struct {

	// Specifies which input caption selector to use as a caption source when generating
	// output captions. This field should match a captionSelector name.
	CaptionSelectorName *string `locationName:"captionSelectorName" type:"string"`

	// Additional settings for captions destination that depend on the destination
	// type.
	DestinationSettings *CaptionDestinationSettings `locationName:"destinationSettings" type:"structure"`

	// ISO 639-2 three-digit code: http://www.loc.gov/standards/iso639-2/
	LanguageCode *string `locationName:"languageCode" type:"string"`

	// Human readable information to indicate captions available for players (eg.
	// English, or Spanish).
	LanguageDescription *string `locationName:"languageDescription" type:"string"`

	// Name of the caption description. Used to associate a caption description
	// with an output. Names must be unique within an event.
	Name *string `locationName:"name" type:"string"`
	// contains filtered or unexported fields
}

Output groups for this Live Event. Output groups contain information about where streams should be distributed. Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CaptionDescription

func (CaptionDescription) GoString

func (s CaptionDescription) GoString() string

GoString returns the string representation

func (CaptionDescription) MarshalFields

func (s CaptionDescription) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (CaptionDescription) String

func (s CaptionDescription) String() string

String returns the string representation

type CaptionDestinationSettings

type CaptionDestinationSettings struct {
	AribDestinationSettings *AribDestinationSettings `locationName:"aribDestinationSettings" type:"structure"`

	BurnInDestinationSettings *BurnInDestinationSettings `locationName:"burnInDestinationSettings" type:"structure"`

	DvbSubDestinationSettings *DvbSubDestinationSettings `locationName:"dvbSubDestinationSettings" type:"structure"`

	EmbeddedDestinationSettings *EmbeddedDestinationSettings `locationName:"embeddedDestinationSettings" type:"structure"`

	EmbeddedPlusScte20DestinationSettings *EmbeddedPlusScte20DestinationSettings `locationName:"embeddedPlusScte20DestinationSettings" type:"structure"`

	Scte20PlusEmbeddedDestinationSettings *Scte20PlusEmbeddedDestinationSettings `locationName:"scte20PlusEmbeddedDestinationSettings" type:"structure"`

	Scte27DestinationSettings *Scte27DestinationSettings `locationName:"scte27DestinationSettings" type:"structure"`

	SmpteTtDestinationSettings *SmpteTtDestinationSettings `locationName:"smpteTtDestinationSettings" type:"structure"`

	TeletextDestinationSettings *TeletextDestinationSettings `locationName:"teletextDestinationSettings" type:"structure"`

	TtmlDestinationSettings *TtmlDestinationSettings `locationName:"ttmlDestinationSettings" type:"structure"`

	WebvttDestinationSettings *WebvttDestinationSettings `locationName:"webvttDestinationSettings" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CaptionDestinationSettings

func (CaptionDestinationSettings) GoString

func (s CaptionDestinationSettings) GoString() string

GoString returns the string representation

func (CaptionDestinationSettings) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (CaptionDestinationSettings) String

String returns the string representation

type CaptionLanguageMapping

type CaptionLanguageMapping struct {

	// The closed caption channel being described by this CaptionLanguageMapping.
	// Each channel mapping must have a unique channel number (maximum of 4)
	CaptionChannel *int64 `locationName:"captionChannel" type:"integer"`

	// Three character ISO 639-2 language code (see http://www.loc.gov/standards/iso639-2)
	LanguageCode *string `locationName:"languageCode" type:"string"`

	// Textual description of language
	LanguageDescription *string `locationName:"languageDescription" type:"string"`
	// contains filtered or unexported fields
}

Maps a caption channel to an ISO 693-2 language code (http://www.loc.gov/standards/iso639-2), with an optional description. Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CaptionLanguageMapping

func (CaptionLanguageMapping) GoString

func (s CaptionLanguageMapping) GoString() string

GoString returns the string representation

func (CaptionLanguageMapping) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (CaptionLanguageMapping) String

func (s CaptionLanguageMapping) String() string

String returns the string representation

type CaptionSelector

type CaptionSelector struct {

	// When specified this field indicates the three letter language code of the
	// caption track to extract from the source.
	LanguageCode *string `locationName:"languageCode" type:"string"`

	// Name identifier for a caption selector. This name is used to associate this
	// caption selector with one or more caption descriptions. Names must be unique
	// within an event.
	Name *string `locationName:"name" type:"string"`

	// Caption selector settings.
	SelectorSettings *CaptionSelectorSettings `locationName:"selectorSettings" type:"structure"`
	// contains filtered or unexported fields
}

Output groups for this Live Event. Output groups contain information about where streams should be distributed. Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CaptionSelector

func (CaptionSelector) GoString

func (s CaptionSelector) GoString() string

GoString returns the string representation

func (CaptionSelector) MarshalFields

func (s CaptionSelector) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (CaptionSelector) String

func (s CaptionSelector) String() string

String returns the string representation

type CaptionSelectorSettings

type CaptionSelectorSettings struct {
	AribSourceSettings *AribSourceSettings `locationName:"aribSourceSettings" type:"structure"`

	DvbSubSourceSettings *DvbSubSourceSettings `locationName:"dvbSubSourceSettings" type:"structure"`

	EmbeddedSourceSettings *EmbeddedSourceSettings `locationName:"embeddedSourceSettings" type:"structure"`

	Scte20SourceSettings *Scte20SourceSettings `locationName:"scte20SourceSettings" type:"structure"`

	Scte27SourceSettings *Scte27SourceSettings `locationName:"scte27SourceSettings" type:"structure"`

	TeletextSourceSettings *TeletextSourceSettings `locationName:"teletextSourceSettings" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CaptionSelectorSettings

func (CaptionSelectorSettings) GoString

func (s CaptionSelectorSettings) GoString() string

GoString returns the string representation

func (CaptionSelectorSettings) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (CaptionSelectorSettings) String

func (s CaptionSelectorSettings) String() string

String returns the string representation

type Channel

type Channel struct {

	// The unique arn of the channel.
	Arn *string `locationName:"arn" type:"string"`

	// A list of destinations of the channel. For UDP outputs, there is onedestination
	// per output. For other types (HLS, for example), there isone destination per
	// packager.
	Destinations []OutputDestination `locationName:"destinations" type:"list"`

	// The endpoints where outgoing connections initiate from
	EgressEndpoints []ChannelEgressEndpoint `locationName:"egressEndpoints" type:"list"`

	EncoderSettings *EncoderSettings `locationName:"encoderSettings" type:"structure"`

	// The unique id of the channel.
	Id *string `locationName:"id" type:"string"`

	// List of input attachments for channel.
	InputAttachments []InputAttachment `locationName:"inputAttachments" type:"list"`

	InputSpecification *InputSpecification `locationName:"inputSpecification" type:"structure"`

	// The name of the channel. (user-mutable)
	Name *string `locationName:"name" type:"string"`

	// The number of currently healthy pipelines.
	PipelinesRunningCount *int64 `locationName:"pipelinesRunningCount" type:"integer"`

	// The Amazon Resource Name (ARN) of the role assumed when running the Channel.
	RoleArn *string `locationName:"roleArn" type:"string"`

	State ChannelState `locationName:"state" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Channel

func (Channel) GoString

func (s Channel) GoString() string

GoString returns the string representation

func (Channel) MarshalFields

func (s Channel) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (Channel) String

func (s Channel) String() string

String returns the string representation

type ChannelEgressEndpoint

type ChannelEgressEndpoint struct {

	// Public IP of where a channel's output comes from
	SourceIp *string `locationName:"sourceIp" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ChannelEgressEndpoint

func (ChannelEgressEndpoint) GoString

func (s ChannelEgressEndpoint) GoString() string

GoString returns the string representation

func (ChannelEgressEndpoint) MarshalFields

func (s ChannelEgressEndpoint) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (ChannelEgressEndpoint) String

func (s ChannelEgressEndpoint) String() string

String returns the string representation

type ChannelState

type ChannelState string
const (
	ChannelStateCreating     ChannelState = "CREATING"
	ChannelStateCreateFailed ChannelState = "CREATE_FAILED"
	ChannelStateIdle         ChannelState = "IDLE"
	ChannelStateStarting     ChannelState = "STARTING"
	ChannelStateRunning      ChannelState = "RUNNING"
	ChannelStateRecovering   ChannelState = "RECOVERING"
	ChannelStateStopping     ChannelState = "STOPPING"
	ChannelStateDeleting     ChannelState = "DELETING"
	ChannelStateDeleted      ChannelState = "DELETED"
)

Enum values for ChannelState

func (ChannelState) MarshalValue

func (enum ChannelState) MarshalValue() (string, error)

func (ChannelState) MarshalValueBuf

func (enum ChannelState) MarshalValueBuf(b []byte) ([]byte, error)

type ChannelSummary

type ChannelSummary struct {

	// The unique arn of the channel.
	Arn *string `locationName:"arn" type:"string"`

	// A list of destinations of the channel. For UDP outputs, there is onedestination
	// per output. For other types (HLS, for example), there isone destination per
	// packager.
	Destinations []OutputDestination `locationName:"destinations" type:"list"`

	// The endpoints where outgoing connections initiate from
	EgressEndpoints []ChannelEgressEndpoint `locationName:"egressEndpoints" type:"list"`

	// The unique id of the channel.
	Id *string `locationName:"id" type:"string"`

	// List of input attachments for channel.
	InputAttachments []InputAttachment `locationName:"inputAttachments" type:"list"`

	InputSpecification *InputSpecification `locationName:"inputSpecification" type:"structure"`

	// The name of the channel. (user-mutable)
	Name *string `locationName:"name" type:"string"`

	// The number of currently healthy pipelines.
	PipelinesRunningCount *int64 `locationName:"pipelinesRunningCount" type:"integer"`

	// The Amazon Resource Name (ARN) of the role assumed when running the Channel.
	RoleArn *string `locationName:"roleArn" type:"string"`

	State ChannelState `locationName:"state" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ChannelSummary

func (ChannelSummary) GoString

func (s ChannelSummary) GoString() string

GoString returns the string representation

func (ChannelSummary) MarshalFields

func (s ChannelSummary) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (ChannelSummary) String

func (s ChannelSummary) String() string

String returns the string representation

type CreateChannelInput

type CreateChannelInput struct {
	Destinations []OutputDestination `locationName:"destinations" type:"list"`

	EncoderSettings *EncoderSettings `locationName:"encoderSettings" type:"structure"`

	InputAttachments []InputAttachment `locationName:"inputAttachments" type:"list"`

	InputSpecification *InputSpecification `locationName:"inputSpecification" type:"structure"`

	Name *string `locationName:"name" type:"string"`

	RequestId *string `locationName:"requestId" type:"string" idempotencyToken:"true"`

	Reserved *string `locationName:"reserved" deprecated:"true" type:"string"`

	RoleArn *string `locationName:"roleArn" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateChannelRequest

func (CreateChannelInput) GoString

func (s CreateChannelInput) GoString() string

GoString returns the string representation

func (CreateChannelInput) MarshalFields

func (s CreateChannelInput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (CreateChannelInput) String

func (s CreateChannelInput) String() string

String returns the string representation

type CreateChannelOutput

type CreateChannelOutput struct {
	Channel *Channel `locationName:"channel" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateChannelResponse

func (CreateChannelOutput) GoString

func (s CreateChannelOutput) GoString() string

GoString returns the string representation

func (CreateChannelOutput) MarshalFields

func (s CreateChannelOutput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (CreateChannelOutput) SDKResponseMetadata

func (s CreateChannelOutput) SDKResponseMetadata() aws.Response

SDKResponseMetdata return sthe response metadata for the API.

func (CreateChannelOutput) String

func (s CreateChannelOutput) String() string

String returns the string representation

type CreateChannelRequest

type CreateChannelRequest struct {
	*aws.Request
	Input *CreateChannelInput
	Copy  func(*CreateChannelInput) CreateChannelRequest
}

CreateChannelRequest is a API request type for the CreateChannel API operation.

func (CreateChannelRequest) Send

Send marshals and sends the CreateChannel API request.

type CreateInputInput

type CreateInputInput struct {
	Destinations []InputDestinationRequest `locationName:"destinations" type:"list"`

	InputSecurityGroups []string `locationName:"inputSecurityGroups" type:"list"`

	Name *string `locationName:"name" type:"string"`

	RequestId *string `locationName:"requestId" type:"string" idempotencyToken:"true"`

	Sources []InputSourceRequest `locationName:"sources" type:"list"`

	Type InputType `locationName:"type" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInputRequest

func (CreateInputInput) GoString

func (s CreateInputInput) GoString() string

GoString returns the string representation

func (CreateInputInput) MarshalFields

func (s CreateInputInput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (CreateInputInput) String

func (s CreateInputInput) String() string

String returns the string representation

type CreateInputOutput

type CreateInputOutput struct {
	Input *Input `locationName:"input" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInputResponse

func (CreateInputOutput) GoString

func (s CreateInputOutput) GoString() string

GoString returns the string representation

func (CreateInputOutput) MarshalFields

func (s CreateInputOutput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (CreateInputOutput) SDKResponseMetadata

func (s CreateInputOutput) SDKResponseMetadata() aws.Response

SDKResponseMetdata return sthe response metadata for the API.

func (CreateInputOutput) String

func (s CreateInputOutput) String() string

String returns the string representation

type CreateInputRequest

type CreateInputRequest struct {
	*aws.Request
	Input *CreateInputInput
	Copy  func(*CreateInputInput) CreateInputRequest
}

CreateInputRequest is a API request type for the CreateInput API operation.

func (CreateInputRequest) Send

Send marshals and sends the CreateInput API request.

type CreateInputSecurityGroupInput

type CreateInputSecurityGroupInput struct {
	WhitelistRules []InputWhitelistRuleCidr `locationName:"whitelistRules" type:"list"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInputSecurityGroupRequest

func (CreateInputSecurityGroupInput) GoString

GoString returns the string representation

func (CreateInputSecurityGroupInput) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (CreateInputSecurityGroupInput) String

String returns the string representation

type CreateInputSecurityGroupOutput

type CreateInputSecurityGroupOutput struct {

	// An Input Security Group
	SecurityGroup *InputSecurityGroup `locationName:"securityGroup" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInputSecurityGroupResponse

func (CreateInputSecurityGroupOutput) GoString

GoString returns the string representation

func (CreateInputSecurityGroupOutput) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (CreateInputSecurityGroupOutput) SDKResponseMetadata

func (s CreateInputSecurityGroupOutput) SDKResponseMetadata() aws.Response

SDKResponseMetdata return sthe response metadata for the API.

func (CreateInputSecurityGroupOutput) String

String returns the string representation

type CreateInputSecurityGroupRequest

type CreateInputSecurityGroupRequest struct {
	*aws.Request
	Input *CreateInputSecurityGroupInput
	Copy  func(*CreateInputSecurityGroupInput) CreateInputSecurityGroupRequest
}

CreateInputSecurityGroupRequest is a API request type for the CreateInputSecurityGroup API operation.

func (CreateInputSecurityGroupRequest) Send

Send marshals and sends the CreateInputSecurityGroup API request.

type DeleteChannelInput

type DeleteChannelInput struct {

	// ChannelId is a required field
	ChannelId *string `location:"uri" locationName:"channelId" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteChannelRequest

func (DeleteChannelInput) GoString

func (s DeleteChannelInput) GoString() string

GoString returns the string representation

func (DeleteChannelInput) MarshalFields

func (s DeleteChannelInput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (DeleteChannelInput) String

func (s DeleteChannelInput) String() string

String returns the string representation

func (*DeleteChannelInput) Validate

func (s *DeleteChannelInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteChannelOutput

type DeleteChannelOutput struct {
	Arn *string `locationName:"arn" type:"string"`

	Destinations []OutputDestination `locationName:"destinations" type:"list"`

	EgressEndpoints []ChannelEgressEndpoint `locationName:"egressEndpoints" type:"list"`

	EncoderSettings *EncoderSettings `locationName:"encoderSettings" type:"structure"`

	Id *string `locationName:"id" type:"string"`

	InputAttachments []InputAttachment `locationName:"inputAttachments" type:"list"`

	InputSpecification *InputSpecification `locationName:"inputSpecification" type:"structure"`

	Name *string `locationName:"name" type:"string"`

	PipelinesRunningCount *int64 `locationName:"pipelinesRunningCount" type:"integer"`

	RoleArn *string `locationName:"roleArn" type:"string"`

	State ChannelState `locationName:"state" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteChannelResponse

func (DeleteChannelOutput) GoString

func (s DeleteChannelOutput) GoString() string

GoString returns the string representation

func (DeleteChannelOutput) MarshalFields

func (s DeleteChannelOutput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (DeleteChannelOutput) SDKResponseMetadata

func (s DeleteChannelOutput) SDKResponseMetadata() aws.Response

SDKResponseMetdata return sthe response metadata for the API.

func (DeleteChannelOutput) String

func (s DeleteChannelOutput) String() string

String returns the string representation

type DeleteChannelRequest

type DeleteChannelRequest struct {
	*aws.Request
	Input *DeleteChannelInput
	Copy  func(*DeleteChannelInput) DeleteChannelRequest
}

DeleteChannelRequest is a API request type for the DeleteChannel API operation.

func (DeleteChannelRequest) Send

Send marshals and sends the DeleteChannel API request.

type DeleteInputInput

type DeleteInputInput struct {

	// InputId is a required field
	InputId *string `location:"uri" locationName:"inputId" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteInputRequest

func (DeleteInputInput) GoString

func (s DeleteInputInput) GoString() string

GoString returns the string representation

func (DeleteInputInput) MarshalFields

func (s DeleteInputInput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (DeleteInputInput) String

func (s DeleteInputInput) String() string

String returns the string representation

func (*DeleteInputInput) Validate

func (s *DeleteInputInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteInputOutput

type DeleteInputOutput struct {
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteInputResponse

func (DeleteInputOutput) GoString

func (s DeleteInputOutput) GoString() string

GoString returns the string representation

func (DeleteInputOutput) MarshalFields

func (s DeleteInputOutput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (DeleteInputOutput) SDKResponseMetadata

func (s DeleteInputOutput) SDKResponseMetadata() aws.Response

SDKResponseMetdata return sthe response metadata for the API.

func (DeleteInputOutput) String

func (s DeleteInputOutput) String() string

String returns the string representation

type DeleteInputRequest

type DeleteInputRequest struct {
	*aws.Request
	Input *DeleteInputInput
	Copy  func(*DeleteInputInput) DeleteInputRequest
}

DeleteInputRequest is a API request type for the DeleteInput API operation.

func (DeleteInputRequest) Send

Send marshals and sends the DeleteInput API request.

type DeleteInputSecurityGroupInput

type DeleteInputSecurityGroupInput struct {

	// InputSecurityGroupId is a required field
	InputSecurityGroupId *string `location:"uri" locationName:"inputSecurityGroupId" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteInputSecurityGroupRequest

func (DeleteInputSecurityGroupInput) GoString

GoString returns the string representation

func (DeleteInputSecurityGroupInput) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (DeleteInputSecurityGroupInput) String

String returns the string representation

func (*DeleteInputSecurityGroupInput) Validate

func (s *DeleteInputSecurityGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteInputSecurityGroupOutput

type DeleteInputSecurityGroupOutput struct {
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteInputSecurityGroupResponse

func (DeleteInputSecurityGroupOutput) GoString

GoString returns the string representation

func (DeleteInputSecurityGroupOutput) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (DeleteInputSecurityGroupOutput) SDKResponseMetadata

func (s DeleteInputSecurityGroupOutput) SDKResponseMetadata() aws.Response

SDKResponseMetdata return sthe response metadata for the API.

func (DeleteInputSecurityGroupOutput) String

String returns the string representation

type DeleteInputSecurityGroupRequest

type DeleteInputSecurityGroupRequest struct {
	*aws.Request
	Input *DeleteInputSecurityGroupInput
	Copy  func(*DeleteInputSecurityGroupInput) DeleteInputSecurityGroupRequest
}

DeleteInputSecurityGroupRequest is a API request type for the DeleteInputSecurityGroup API operation.

func (DeleteInputSecurityGroupRequest) Send

Send marshals and sends the DeleteInputSecurityGroup API request.

type DescribeChannelInput

type DescribeChannelInput struct {

	// ChannelId is a required field
	ChannelId *string `location:"uri" locationName:"channelId" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeChannelRequest

func (DescribeChannelInput) GoString

func (s DescribeChannelInput) GoString() string

GoString returns the string representation

func (DescribeChannelInput) MarshalFields

func (s DescribeChannelInput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (DescribeChannelInput) String

func (s DescribeChannelInput) String() string

String returns the string representation

func (*DescribeChannelInput) Validate

func (s *DescribeChannelInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeChannelOutput

type DescribeChannelOutput struct {
	Arn *string `locationName:"arn" type:"string"`

	Destinations []OutputDestination `locationName:"destinations" type:"list"`

	EgressEndpoints []ChannelEgressEndpoint `locationName:"egressEndpoints" type:"list"`

	EncoderSettings *EncoderSettings `locationName:"encoderSettings" type:"structure"`

	Id *string `locationName:"id" type:"string"`

	InputAttachments []InputAttachment `locationName:"inputAttachments" type:"list"`

	InputSpecification *InputSpecification `locationName:"inputSpecification" type:"structure"`

	Name *string `locationName:"name" type:"string"`

	PipelinesRunningCount *int64 `locationName:"pipelinesRunningCount" type:"integer"`

	RoleArn *string `locationName:"roleArn" type:"string"`

	State ChannelState `locationName:"state" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeChannelResponse

func (DescribeChannelOutput) GoString

func (s DescribeChannelOutput) GoString() string

GoString returns the string representation

func (DescribeChannelOutput) MarshalFields

func (s DescribeChannelOutput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (DescribeChannelOutput) SDKResponseMetadata

func (s DescribeChannelOutput) SDKResponseMetadata() aws.Response

SDKResponseMetdata return sthe response metadata for the API.

func (DescribeChannelOutput) String

func (s DescribeChannelOutput) String() string

String returns the string representation

type DescribeChannelRequest

type DescribeChannelRequest struct {
	*aws.Request
	Input *DescribeChannelInput
	Copy  func(*DescribeChannelInput) DescribeChannelRequest
}

DescribeChannelRequest is a API request type for the DescribeChannel API operation.

func (DescribeChannelRequest) Send

Send marshals and sends the DescribeChannel API request.

type DescribeInputInput

type DescribeInputInput struct {

	// InputId is a required field
	InputId *string `location:"uri" locationName:"inputId" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputRequest

func (DescribeInputInput) GoString

func (s DescribeInputInput) GoString() string

GoString returns the string representation

func (DescribeInputInput) MarshalFields

func (s DescribeInputInput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (DescribeInputInput) String

func (s DescribeInputInput) String() string

String returns the string representation

func (*DescribeInputInput) Validate

func (s *DescribeInputInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeInputOutput

type DescribeInputOutput struct {
	Arn *string `locationName:"arn" type:"string"`

	AttachedChannels []string `locationName:"attachedChannels" type:"list"`

	Destinations []InputDestination `locationName:"destinations" type:"list"`

	Id *string `locationName:"id" type:"string"`

	Name *string `locationName:"name" type:"string"`

	SecurityGroups []string `locationName:"securityGroups" type:"list"`

	Sources []InputSource `locationName:"sources" type:"list"`

	State InputState `locationName:"state" type:"string" enum:"true"`

	Type InputType `locationName:"type" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputResponse

func (DescribeInputOutput) GoString

func (s DescribeInputOutput) GoString() string

GoString returns the string representation

func (DescribeInputOutput) MarshalFields

func (s DescribeInputOutput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (DescribeInputOutput) SDKResponseMetadata

func (s DescribeInputOutput) SDKResponseMetadata() aws.Response

SDKResponseMetdata return sthe response metadata for the API.

func (DescribeInputOutput) String

func (s DescribeInputOutput) String() string

String returns the string representation

type DescribeInputRequest

type DescribeInputRequest struct {
	*aws.Request
	Input *DescribeInputInput
	Copy  func(*DescribeInputInput) DescribeInputRequest
}

DescribeInputRequest is a API request type for the DescribeInput API operation.

func (DescribeInputRequest) Send

Send marshals and sends the DescribeInput API request.

type DescribeInputSecurityGroupInput

type DescribeInputSecurityGroupInput struct {

	// InputSecurityGroupId is a required field
	InputSecurityGroupId *string `location:"uri" locationName:"inputSecurityGroupId" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputSecurityGroupRequest

func (DescribeInputSecurityGroupInput) GoString

GoString returns the string representation

func (DescribeInputSecurityGroupInput) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (DescribeInputSecurityGroupInput) String

String returns the string representation

func (*DescribeInputSecurityGroupInput) Validate

func (s *DescribeInputSecurityGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeInputSecurityGroupOutput

type DescribeInputSecurityGroupOutput struct {
	Arn *string `locationName:"arn" type:"string"`

	Id *string `locationName:"id" type:"string"`

	WhitelistRules []InputWhitelistRule `locationName:"whitelistRules" type:"list"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputSecurityGroupResponse

func (DescribeInputSecurityGroupOutput) GoString

GoString returns the string representation

func (DescribeInputSecurityGroupOutput) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (DescribeInputSecurityGroupOutput) SDKResponseMetadata

func (s DescribeInputSecurityGroupOutput) SDKResponseMetadata() aws.Response

SDKResponseMetdata return sthe response metadata for the API.

func (DescribeInputSecurityGroupOutput) String

String returns the string representation

type DescribeInputSecurityGroupRequest

type DescribeInputSecurityGroupRequest struct {
	*aws.Request
	Input *DescribeInputSecurityGroupInput
	Copy  func(*DescribeInputSecurityGroupInput) DescribeInputSecurityGroupRequest
}

DescribeInputSecurityGroupRequest is a API request type for the DescribeInputSecurityGroup API operation.

func (DescribeInputSecurityGroupRequest) Send

Send marshals and sends the DescribeInputSecurityGroup API request.

type DvbNitSettings

type DvbNitSettings struct {

	// The numeric value placed in the Network Information Table (NIT).
	NetworkId *int64 `locationName:"networkId" type:"integer"`

	// The network name text placed in the networkNameDescriptor inside the Network
	// Information Table. Maximum length is 256 characters.
	NetworkName *string `locationName:"networkName" type:"string"`

	// The number of milliseconds between instances of this table in the output
	// transport stream.
	RepInterval *int64 `locationName:"repInterval" type:"integer"`
	// contains filtered or unexported fields
}

DVB Network Information Table (NIT) Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DvbNitSettings

func (DvbNitSettings) GoString

func (s DvbNitSettings) GoString() string

GoString returns the string representation

func (DvbNitSettings) MarshalFields

func (s DvbNitSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (DvbNitSettings) String

func (s DvbNitSettings) String() string

String returns the string representation

type DvbSdtOutputSdt

type DvbSdtOutputSdt string
const (
	DvbSdtOutputSdtSdtFollow          DvbSdtOutputSdt = "SDT_FOLLOW"
	DvbSdtOutputSdtSdtFollowIfPresent DvbSdtOutputSdt = "SDT_FOLLOW_IF_PRESENT"
	DvbSdtOutputSdtSdtManual          DvbSdtOutputSdt = "SDT_MANUAL"
	DvbSdtOutputSdtSdtNone            DvbSdtOutputSdt = "SDT_NONE"
)

Enum values for DvbSdtOutputSdt

func (DvbSdtOutputSdt) MarshalValue

func (enum DvbSdtOutputSdt) MarshalValue() (string, error)

func (DvbSdtOutputSdt) MarshalValueBuf

func (enum DvbSdtOutputSdt) MarshalValueBuf(b []byte) ([]byte, error)

type DvbSdtSettings

type DvbSdtSettings struct {

	// Selects method of inserting SDT information into output stream. The sdtFollow
	// setting copies SDT information from input stream to output stream. The sdtFollowIfPresent
	// setting copies SDT information from input stream to output stream if SDT
	// information is present in the input, otherwise it will fall back on the user-defined
	// values. The sdtManual setting means user will enter the SDT information.
	// The sdtNone setting means output stream will not contain SDT information.
	OutputSdt DvbSdtOutputSdt `locationName:"outputSdt" type:"string" enum:"true"`

	// The number of milliseconds between instances of this table in the output
	// transport stream.
	RepInterval *int64 `locationName:"repInterval" type:"integer"`

	// The service name placed in the serviceDescriptor in the Service Description
	// Table. Maximum length is 256 characters.
	ServiceName *string `locationName:"serviceName" type:"string"`

	// The service provider name placed in the serviceDescriptor in the Service
	// Description Table. Maximum length is 256 characters.
	ServiceProviderName *string `locationName:"serviceProviderName" type:"string"`
	// contains filtered or unexported fields
}

DVB Service Description Table (SDT) Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DvbSdtSettings

func (DvbSdtSettings) GoString

func (s DvbSdtSettings) GoString() string

GoString returns the string representation

func (DvbSdtSettings) MarshalFields

func (s DvbSdtSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (DvbSdtSettings) String

func (s DvbSdtSettings) String() string

String returns the string representation

type DvbSubDestinationAlignment

type DvbSubDestinationAlignment string
const (
	DvbSubDestinationAlignmentCentered DvbSubDestinationAlignment = "CENTERED"
	DvbSubDestinationAlignmentLeft     DvbSubDestinationAlignment = "LEFT"
	DvbSubDestinationAlignmentSmart    DvbSubDestinationAlignment = "SMART"
)

Enum values for DvbSubDestinationAlignment

func (DvbSubDestinationAlignment) MarshalValue

func (enum DvbSubDestinationAlignment) MarshalValue() (string, error)

func (DvbSubDestinationAlignment) MarshalValueBuf

func (enum DvbSubDestinationAlignment) MarshalValueBuf(b []byte) ([]byte, error)

type DvbSubDestinationBackgroundColor

type DvbSubDestinationBackgroundColor string
const (
	DvbSubDestinationBackgroundColorBlack DvbSubDestinationBackgroundColor = "BLACK"
	DvbSubDestinationBackgroundColorNone  DvbSubDestinationBackgroundColor = "NONE"
	DvbSubDestinationBackgroundColorWhite DvbSubDestinationBackgroundColor = "WHITE"
)

Enum values for DvbSubDestinationBackgroundColor

func (DvbSubDestinationBackgroundColor) MarshalValue

func (enum DvbSubDestinationBackgroundColor) MarshalValue() (string, error)

func (DvbSubDestinationBackgroundColor) MarshalValueBuf

func (enum DvbSubDestinationBackgroundColor) MarshalValueBuf(b []byte) ([]byte, error)

type DvbSubDestinationFontColor

type DvbSubDestinationFontColor string
const (
	DvbSubDestinationFontColorBlack  DvbSubDestinationFontColor = "BLACK"
	DvbSubDestinationFontColorBlue   DvbSubDestinationFontColor = "BLUE"
	DvbSubDestinationFontColorGreen  DvbSubDestinationFontColor = "GREEN"
	DvbSubDestinationFontColorRed    DvbSubDestinationFontColor = "RED"
	DvbSubDestinationFontColorWhite  DvbSubDestinationFontColor = "WHITE"
	DvbSubDestinationFontColorYellow DvbSubDestinationFontColor = "YELLOW"
)

Enum values for DvbSubDestinationFontColor

func (DvbSubDestinationFontColor) MarshalValue

func (enum DvbSubDestinationFontColor) MarshalValue() (string, error)

func (DvbSubDestinationFontColor) MarshalValueBuf

func (enum DvbSubDestinationFontColor) MarshalValueBuf(b []byte) ([]byte, error)

type DvbSubDestinationOutlineColor

type DvbSubDestinationOutlineColor string
const (
	DvbSubDestinationOutlineColorBlack  DvbSubDestinationOutlineColor = "BLACK"
	DvbSubDestinationOutlineColorBlue   DvbSubDestinationOutlineColor = "BLUE"
	DvbSubDestinationOutlineColorGreen  DvbSubDestinationOutlineColor = "GREEN"
	DvbSubDestinationOutlineColorRed    DvbSubDestinationOutlineColor = "RED"
	DvbSubDestinationOutlineColorWhite  DvbSubDestinationOutlineColor = "WHITE"
	DvbSubDestinationOutlineColorYellow DvbSubDestinationOutlineColor = "YELLOW"
)

Enum values for DvbSubDestinationOutlineColor

func (DvbSubDestinationOutlineColor) MarshalValue

func (enum DvbSubDestinationOutlineColor) MarshalValue() (string, error)

func (DvbSubDestinationOutlineColor) MarshalValueBuf

func (enum DvbSubDestinationOutlineColor) MarshalValueBuf(b []byte) ([]byte, error)

type DvbSubDestinationSettings

type DvbSubDestinationSettings struct {

	// If no explicit xPosition or yPosition is provided, setting alignment to centered
	// will place the captions at the bottom center of the output. Similarly, setting
	// a left alignment will align captions to the bottom left of the output. If
	// x and y positions are given in conjunction with the alignment parameter,
	// the font will be justified (either left or centered) relative to those coordinates.
	// Selecting "smart" justification will left-justify live subtitles and center-justify
	// pre-recorded subtitles. This option is not valid for source captions that
	// are STL or 608/embedded. These source settings are already pre-defined by
	// the caption stream. All burn-in and DVB-Sub font settings must match.
	Alignment DvbSubDestinationAlignment `locationName:"alignment" type:"string" enum:"true"`

	// Specifies the color of the rectangle behind the captions. All burn-in and
	// DVB-Sub font settings must match.
	BackgroundColor DvbSubDestinationBackgroundColor `locationName:"backgroundColor" type:"string" enum:"true"`

	// Specifies the opacity of the background rectangle. 255 is opaque; 0 is transparent.
	// Leaving this parameter blank is equivalent to setting it to 0 (transparent).
	// All burn-in and DVB-Sub font settings must match.
	BackgroundOpacity *int64 `locationName:"backgroundOpacity" type:"integer"`

	// External font file used for caption burn-in. File extension must be 'ttf'
	// or 'tte'. Although the user can select output fonts for many different types
	// of input captions, embedded, STL and teletext sources use a strict grid system.
	// Using external fonts with these caption sources could cause unexpected display
	// of proportional fonts. All burn-in and DVB-Sub font settings must match.
	Font *InputLocation `locationName:"font" type:"structure"`

	// Specifies the color of the burned-in captions. This option is not valid for
	// source captions that are STL, 608/embedded or teletext. These source settings
	// are already pre-defined by the caption stream. All burn-in and DVB-Sub font
	// settings must match.
	FontColor DvbSubDestinationFontColor `locationName:"fontColor" type:"string" enum:"true"`

	// Specifies the opacity of the burned-in captions. 255 is opaque; 0 is transparent.
	// All burn-in and DVB-Sub font settings must match.
	FontOpacity *int64 `locationName:"fontOpacity" type:"integer"`

	// Font resolution in DPI (dots per inch); default is 96 dpi. All burn-in and
	// DVB-Sub font settings must match.
	FontResolution *int64 `locationName:"fontResolution" type:"integer"`

	// When set to auto fontSize will scale depending on the size of the output.
	// Giving a positive integer will specify the exact font size in points. All
	// burn-in and DVB-Sub font settings must match.
	FontSize *string `locationName:"fontSize" type:"string"`

	// Specifies font outline color. This option is not valid for source captions
	// that are either 608/embedded or teletext. These source settings are already
	// pre-defined by the caption stream. All burn-in and DVB-Sub font settings
	// must match.
	OutlineColor DvbSubDestinationOutlineColor `locationName:"outlineColor" type:"string" enum:"true"`

	// Specifies font outline size in pixels. This option is not valid for source
	// captions that are either 608/embedded or teletext. These source settings
	// are already pre-defined by the caption stream. All burn-in and DVB-Sub font
	// settings must match.
	OutlineSize *int64 `locationName:"outlineSize" type:"integer"`

	// Specifies the color of the shadow cast by the captions. All burn-in and DVB-Sub
	// font settings must match.
	ShadowColor DvbSubDestinationShadowColor `locationName:"shadowColor" type:"string" enum:"true"`

	// Specifies the opacity of the shadow. 255 is opaque; 0 is transparent. Leaving
	// this parameter blank is equivalent to setting it to 0 (transparent). All
	// burn-in and DVB-Sub font settings must match.
	ShadowOpacity *int64 `locationName:"shadowOpacity" type:"integer"`

	// Specifies the horizontal offset of the shadow relative to the captions in
	// pixels. A value of -2 would result in a shadow offset 2 pixels to the left.
	// All burn-in and DVB-Sub font settings must match.
	ShadowXOffset *int64 `locationName:"shadowXOffset" type:"integer"`

	// Specifies the vertical offset of the shadow relative to the captions in pixels.
	// A value of -2 would result in a shadow offset 2 pixels above the text. All
	// burn-in and DVB-Sub font settings must match.
	ShadowYOffset *int64 `locationName:"shadowYOffset" type:"integer"`

	// Controls whether a fixed grid size will be used to generate the output subtitles
	// bitmap. Only applicable for Teletext inputs and DVB-Sub/Burn-in outputs.
	TeletextGridControl DvbSubDestinationTeletextGridControl `locationName:"teletextGridControl" type:"string" enum:"true"`

	// Specifies the horizontal position of the caption relative to the left side
	// of the output in pixels. A value of 10 would result in the captions starting
	// 10 pixels from the left of the output. If no explicit xPosition is provided,
	// the horizontal caption position will be determined by the alignment parameter.
	// This option is not valid for source captions that are STL, 608/embedded or
	// teletext. These source settings are already pre-defined by the caption stream.
	// All burn-in and DVB-Sub font settings must match.
	XPosition *int64 `locationName:"xPosition" type:"integer"`

	// Specifies the vertical position of the caption relative to the top of the
	// output in pixels. A value of 10 would result in the captions starting 10
	// pixels from the top of the output. If no explicit yPosition is provided,
	// the caption will be positioned towards the bottom of the output. This option
	// is not valid for source captions that are STL, 608/embedded or teletext.
	// These source settings are already pre-defined by the caption stream. All
	// burn-in and DVB-Sub font settings must match.
	YPosition *int64 `locationName:"yPosition" type:"integer"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DvbSubDestinationSettings

func (DvbSubDestinationSettings) GoString

func (s DvbSubDestinationSettings) GoString() string

GoString returns the string representation

func (DvbSubDestinationSettings) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (DvbSubDestinationSettings) String

func (s DvbSubDestinationSettings) String() string

String returns the string representation

type DvbSubDestinationShadowColor

type DvbSubDestinationShadowColor string
const (
	DvbSubDestinationShadowColorBlack DvbSubDestinationShadowColor = "BLACK"
	DvbSubDestinationShadowColorNone  DvbSubDestinationShadowColor = "NONE"
	DvbSubDestinationShadowColorWhite DvbSubDestinationShadowColor = "WHITE"
)

Enum values for DvbSubDestinationShadowColor

func (DvbSubDestinationShadowColor) MarshalValue

func (enum DvbSubDestinationShadowColor) MarshalValue() (string, error)

func (DvbSubDestinationShadowColor) MarshalValueBuf

func (enum DvbSubDestinationShadowColor) MarshalValueBuf(b []byte) ([]byte, error)

type DvbSubDestinationTeletextGridControl

type DvbSubDestinationTeletextGridControl string
const (
	DvbSubDestinationTeletextGridControlFixed  DvbSubDestinationTeletextGridControl = "FIXED"
	DvbSubDestinationTeletextGridControlScaled DvbSubDestinationTeletextGridControl = "SCALED"
)

Enum values for DvbSubDestinationTeletextGridControl

func (DvbSubDestinationTeletextGridControl) MarshalValue

func (enum DvbSubDestinationTeletextGridControl) MarshalValue() (string, error)

func (DvbSubDestinationTeletextGridControl) MarshalValueBuf

func (enum DvbSubDestinationTeletextGridControl) MarshalValueBuf(b []byte) ([]byte, error)

type DvbSubSourceSettings

type DvbSubSourceSettings struct {

	// When using DVB-Sub with Burn-In or SMPTE-TT, use this PID for the source
	// content. Unused for DVB-Sub passthrough. All DVB-Sub content is passed through,
	// regardless of selectors.
	Pid *int64 `locationName:"pid" type:"integer"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DvbSubSourceSettings

func (DvbSubSourceSettings) GoString

func (s DvbSubSourceSettings) GoString() string

GoString returns the string representation

func (DvbSubSourceSettings) MarshalFields

func (s DvbSubSourceSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (DvbSubSourceSettings) String

func (s DvbSubSourceSettings) String() string

String returns the string representation

type DvbTdtSettings

type DvbTdtSettings struct {

	// The number of milliseconds between instances of this table in the output
	// transport stream.
	RepInterval *int64 `locationName:"repInterval" type:"integer"`
	// contains filtered or unexported fields
}

DVB Time and Date Table (SDT) Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DvbTdtSettings

func (DvbTdtSettings) GoString

func (s DvbTdtSettings) GoString() string

GoString returns the string representation

func (DvbTdtSettings) MarshalFields

func (s DvbTdtSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (DvbTdtSettings) String

func (s DvbTdtSettings) String() string

String returns the string representation

type Eac3AttenuationControl

type Eac3AttenuationControl string
const (
	Eac3AttenuationControlAttenuate3Db Eac3AttenuationControl = "ATTENUATE_3_DB"
	Eac3AttenuationControlNone         Eac3AttenuationControl = "NONE"
)

Enum values for Eac3AttenuationControl

func (Eac3AttenuationControl) MarshalValue

func (enum Eac3AttenuationControl) MarshalValue() (string, error)

func (Eac3AttenuationControl) MarshalValueBuf

func (enum Eac3AttenuationControl) MarshalValueBuf(b []byte) ([]byte, error)

type Eac3BitstreamMode

type Eac3BitstreamMode string
const (
	Eac3BitstreamModeCommentary       Eac3BitstreamMode = "COMMENTARY"
	Eac3BitstreamModeCompleteMain     Eac3BitstreamMode = "COMPLETE_MAIN"
	Eac3BitstreamModeEmergency        Eac3BitstreamMode = "EMERGENCY"
	Eac3BitstreamModeHearingImpaired  Eac3BitstreamMode = "HEARING_IMPAIRED"
	Eac3BitstreamModeVisuallyImpaired Eac3BitstreamMode = "VISUALLY_IMPAIRED"
)

Enum values for Eac3BitstreamMode

func (Eac3BitstreamMode) MarshalValue

func (enum Eac3BitstreamMode) MarshalValue() (string, error)

func (Eac3BitstreamMode) MarshalValueBuf

func (enum Eac3BitstreamMode) MarshalValueBuf(b []byte) ([]byte, error)

type Eac3CodingMode

type Eac3CodingMode string
const (
	Eac3CodingModeCodingMode10 Eac3CodingMode = "CODING_MODE_1_0"
	Eac3CodingModeCodingMode20 Eac3CodingMode = "CODING_MODE_2_0"
	Eac3CodingModeCodingMode32 Eac3CodingMode = "CODING_MODE_3_2"
)

Enum values for Eac3CodingMode

func (Eac3CodingMode) MarshalValue

func (enum Eac3CodingMode) MarshalValue() (string, error)

func (Eac3CodingMode) MarshalValueBuf

func (enum Eac3CodingMode) MarshalValueBuf(b []byte) ([]byte, error)

type Eac3DcFilter

type Eac3DcFilter string
const (
	Eac3DcFilterDisabled Eac3DcFilter = "DISABLED"
	Eac3DcFilterEnabled  Eac3DcFilter = "ENABLED"
)

Enum values for Eac3DcFilter

func (Eac3DcFilter) MarshalValue

func (enum Eac3DcFilter) MarshalValue() (string, error)

func (Eac3DcFilter) MarshalValueBuf

func (enum Eac3DcFilter) MarshalValueBuf(b []byte) ([]byte, error)

type Eac3DrcLine

type Eac3DrcLine string
const (
	Eac3DrcLineFilmLight     Eac3DrcLine = "FILM_LIGHT"
	Eac3DrcLineFilmStandard  Eac3DrcLine = "FILM_STANDARD"
	Eac3DrcLineMusicLight    Eac3DrcLine = "MUSIC_LIGHT"
	Eac3DrcLineMusicStandard Eac3DrcLine = "MUSIC_STANDARD"
	Eac3DrcLineNone          Eac3DrcLine = "NONE"
	Eac3DrcLineSpeech        Eac3DrcLine = "SPEECH"
)

Enum values for Eac3DrcLine

func (Eac3DrcLine) MarshalValue

func (enum Eac3DrcLine) MarshalValue() (string, error)

func (Eac3DrcLine) MarshalValueBuf

func (enum Eac3DrcLine) MarshalValueBuf(b []byte) ([]byte, error)

type Eac3DrcRf

type Eac3DrcRf string
const (
	Eac3DrcRfFilmLight     Eac3DrcRf = "FILM_LIGHT"
	Eac3DrcRfFilmStandard  Eac3DrcRf = "FILM_STANDARD"
	Eac3DrcRfMusicLight    Eac3DrcRf = "MUSIC_LIGHT"
	Eac3DrcRfMusicStandard Eac3DrcRf = "MUSIC_STANDARD"
	Eac3DrcRfNone          Eac3DrcRf = "NONE"
	Eac3DrcRfSpeech        Eac3DrcRf = "SPEECH"
)

Enum values for Eac3DrcRf

func (Eac3DrcRf) MarshalValue

func (enum Eac3DrcRf) MarshalValue() (string, error)

func (Eac3DrcRf) MarshalValueBuf

func (enum Eac3DrcRf) MarshalValueBuf(b []byte) ([]byte, error)

type Eac3LfeControl

type Eac3LfeControl string
const (
	Eac3LfeControlLfe   Eac3LfeControl = "LFE"
	Eac3LfeControlNoLfe Eac3LfeControl = "NO_LFE"
)

Enum values for Eac3LfeControl

func (Eac3LfeControl) MarshalValue

func (enum Eac3LfeControl) MarshalValue() (string, error)

func (Eac3LfeControl) MarshalValueBuf

func (enum Eac3LfeControl) MarshalValueBuf(b []byte) ([]byte, error)

type Eac3LfeFilter

type Eac3LfeFilter string
const (
	Eac3LfeFilterDisabled Eac3LfeFilter = "DISABLED"
	Eac3LfeFilterEnabled  Eac3LfeFilter = "ENABLED"
)

Enum values for Eac3LfeFilter

func (Eac3LfeFilter) MarshalValue

func (enum Eac3LfeFilter) MarshalValue() (string, error)

func (Eac3LfeFilter) MarshalValueBuf

func (enum Eac3LfeFilter) MarshalValueBuf(b []byte) ([]byte, error)

type Eac3MetadataControl

type Eac3MetadataControl string
const (
	Eac3MetadataControlFollowInput   Eac3MetadataControl = "FOLLOW_INPUT"
	Eac3MetadataControlUseConfigured Eac3MetadataControl = "USE_CONFIGURED"
)

Enum values for Eac3MetadataControl

func (Eac3MetadataControl) MarshalValue

func (enum Eac3MetadataControl) MarshalValue() (string, error)

func (Eac3MetadataControl) MarshalValueBuf

func (enum Eac3MetadataControl) MarshalValueBuf(b []byte) ([]byte, error)

type Eac3PassthroughControl

type Eac3PassthroughControl string
const (
	Eac3PassthroughControlNoPassthrough Eac3PassthroughControl = "NO_PASSTHROUGH"
	Eac3PassthroughControlWhenPossible  Eac3PassthroughControl = "WHEN_POSSIBLE"
)

Enum values for Eac3PassthroughControl

func (Eac3PassthroughControl) MarshalValue

func (enum Eac3PassthroughControl) MarshalValue() (string, error)

func (Eac3PassthroughControl) MarshalValueBuf

func (enum Eac3PassthroughControl) MarshalValueBuf(b []byte) ([]byte, error)

type Eac3PhaseControl

type Eac3PhaseControl string
const (
	Eac3PhaseControlNoShift        Eac3PhaseControl = "NO_SHIFT"
	Eac3PhaseControlShift90Degrees Eac3PhaseControl = "SHIFT_90_DEGREES"
)

Enum values for Eac3PhaseControl

func (Eac3PhaseControl) MarshalValue

func (enum Eac3PhaseControl) MarshalValue() (string, error)

func (Eac3PhaseControl) MarshalValueBuf

func (enum Eac3PhaseControl) MarshalValueBuf(b []byte) ([]byte, error)

type Eac3Settings

type Eac3Settings struct {

	// When set to attenuate3Db, applies a 3 dB attenuation to the surround channels.
	// Only used for 3/2 coding mode.
	AttenuationControl Eac3AttenuationControl `locationName:"attenuationControl" type:"string" enum:"true"`

	// Average bitrate in bits/second. Valid bitrates depend on the coding mode.
	Bitrate *float64 `locationName:"bitrate" type:"double"`

	// Specifies the bitstream mode (bsmod) for the emitted E-AC-3 stream. See ATSC
	// A/52-2012 (Annex E) for background on these values.
	BitstreamMode Eac3BitstreamMode `locationName:"bitstreamMode" type:"string" enum:"true"`

	// Dolby Digital Plus coding mode. Determines number of channels.
	CodingMode Eac3CodingMode `locationName:"codingMode" type:"string" enum:"true"`

	// When set to enabled, activates a DC highpass filter for all input channels.
	DcFilter Eac3DcFilter `locationName:"dcFilter" type:"string" enum:"true"`

	// Sets the dialnorm for the output. If blank and input audio is Dolby Digital
	// Plus, dialnorm will be passed through.
	Dialnorm *int64 `locationName:"dialnorm" type:"integer"`

	// Sets the Dolby dynamic range compression profile.
	DrcLine Eac3DrcLine `locationName:"drcLine" type:"string" enum:"true"`

	// Sets the profile for heavy Dolby dynamic range compression, ensures that
	// the instantaneous signal peaks do not exceed specified levels.
	DrcRf Eac3DrcRf `locationName:"drcRf" type:"string" enum:"true"`

	// When encoding 3/2 audio, setting to lfe enables the LFE channel
	LfeControl Eac3LfeControl `locationName:"lfeControl" type:"string" enum:"true"`

	// When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior
	// to encoding. Only valid with codingMode32 coding mode.
	LfeFilter Eac3LfeFilter `locationName:"lfeFilter" type:"string" enum:"true"`

	// Left only/Right only center mix level. Only used for 3/2 coding mode.
	LoRoCenterMixLevel *float64 `locationName:"loRoCenterMixLevel" type:"double"`

	// Left only/Right only surround mix level. Only used for 3/2 coding mode.
	LoRoSurroundMixLevel *float64 `locationName:"loRoSurroundMixLevel" type:"double"`

	// Left total/Right total center mix level. Only used for 3/2 coding mode.
	LtRtCenterMixLevel *float64 `locationName:"ltRtCenterMixLevel" type:"double"`

	// Left total/Right total surround mix level. Only used for 3/2 coding mode.
	LtRtSurroundMixLevel *float64 `locationName:"ltRtSurroundMixLevel" type:"double"`

	// When set to followInput, encoder metadata will be sourced from the DD, DD+,
	// or DolbyE decoder that supplied this audio data. If audio was not supplied
	// from one of these streams, then the static metadata settings will be used.
	MetadataControl Eac3MetadataControl `locationName:"metadataControl" type:"string" enum:"true"`

	// When set to whenPossible, input DD+ audio will be passed through if it is
	// present on the input. This detection is dynamic over the life of the transcode.
	// Inputs that alternate between DD+ and non-DD+ content will have a consistent
	// DD+ output as the system alternates between passthrough and encoding.
	PassthroughControl Eac3PassthroughControl `locationName:"passthroughControl" type:"string" enum:"true"`

	// When set to shift90Degrees, applies a 90-degree phase shift to the surround
	// channels. Only used for 3/2 coding mode.
	PhaseControl Eac3PhaseControl `locationName:"phaseControl" type:"string" enum:"true"`

	// Stereo downmix preference. Only used for 3/2 coding mode.
	StereoDownmix Eac3StereoDownmix `locationName:"stereoDownmix" type:"string" enum:"true"`

	// When encoding 3/2 audio, sets whether an extra center back surround channel
	// is matrix encoded into the left and right surround channels.
	SurroundExMode Eac3SurroundExMode `locationName:"surroundExMode" type:"string" enum:"true"`

	// When encoding 2/0 audio, sets whether Dolby Surround is matrix encoded into
	// the two channels.
	SurroundMode Eac3SurroundMode `locationName:"surroundMode" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Eac3Settings

func (Eac3Settings) GoString

func (s Eac3Settings) GoString() string

GoString returns the string representation

func (Eac3Settings) MarshalFields

func (s Eac3Settings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (Eac3Settings) String

func (s Eac3Settings) String() string

String returns the string representation

type Eac3StereoDownmix

type Eac3StereoDownmix string
const (
	Eac3StereoDownmixDpl2         Eac3StereoDownmix = "DPL2"
	Eac3StereoDownmixLoRo         Eac3StereoDownmix = "LO_RO"
	Eac3StereoDownmixLtRt         Eac3StereoDownmix = "LT_RT"
	Eac3StereoDownmixNotIndicated Eac3StereoDownmix = "NOT_INDICATED"
)

Enum values for Eac3StereoDownmix

func (Eac3StereoDownmix) MarshalValue

func (enum Eac3StereoDownmix) MarshalValue() (string, error)

func (Eac3StereoDownmix) MarshalValueBuf

func (enum Eac3StereoDownmix) MarshalValueBuf(b []byte) ([]byte, error)

type Eac3SurroundExMode

type Eac3SurroundExMode string
const (
	Eac3SurroundExModeDisabled     Eac3SurroundExMode = "DISABLED"
	Eac3SurroundExModeEnabled      Eac3SurroundExMode = "ENABLED"
	Eac3SurroundExModeNotIndicated Eac3SurroundExMode = "NOT_INDICATED"
)

Enum values for Eac3SurroundExMode

func (Eac3SurroundExMode) MarshalValue

func (enum Eac3SurroundExMode) MarshalValue() (string, error)

func (Eac3SurroundExMode) MarshalValueBuf

func (enum Eac3SurroundExMode) MarshalValueBuf(b []byte) ([]byte, error)

type Eac3SurroundMode

type Eac3SurroundMode string
const (
	Eac3SurroundModeDisabled     Eac3SurroundMode = "DISABLED"
	Eac3SurroundModeEnabled      Eac3SurroundMode = "ENABLED"
	Eac3SurroundModeNotIndicated Eac3SurroundMode = "NOT_INDICATED"
)

Enum values for Eac3SurroundMode

func (Eac3SurroundMode) MarshalValue

func (enum Eac3SurroundMode) MarshalValue() (string, error)

func (Eac3SurroundMode) MarshalValueBuf

func (enum Eac3SurroundMode) MarshalValueBuf(b []byte) ([]byte, error)

type EmbeddedConvert608To708

type EmbeddedConvert608To708 string
const (
	EmbeddedConvert608To708Disabled  EmbeddedConvert608To708 = "DISABLED"
	EmbeddedConvert608To708Upconvert EmbeddedConvert608To708 = "UPCONVERT"
)

Enum values for EmbeddedConvert608To708

func (EmbeddedConvert608To708) MarshalValue

func (enum EmbeddedConvert608To708) MarshalValue() (string, error)

func (EmbeddedConvert608To708) MarshalValueBuf

func (enum EmbeddedConvert608To708) MarshalValueBuf(b []byte) ([]byte, error)

type EmbeddedDestinationSettings

type EmbeddedDestinationSettings struct {
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/EmbeddedDestinationSettings

func (EmbeddedDestinationSettings) GoString

func (s EmbeddedDestinationSettings) GoString() string

GoString returns the string representation

func (EmbeddedDestinationSettings) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (EmbeddedDestinationSettings) String

String returns the string representation

type EmbeddedPlusScte20DestinationSettings

type EmbeddedPlusScte20DestinationSettings struct {
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/EmbeddedPlusScte20DestinationSettings

func (EmbeddedPlusScte20DestinationSettings) GoString

GoString returns the string representation

func (EmbeddedPlusScte20DestinationSettings) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (EmbeddedPlusScte20DestinationSettings) String

String returns the string representation

type EmbeddedScte20Detection

type EmbeddedScte20Detection string
const (
	EmbeddedScte20DetectionAuto EmbeddedScte20Detection = "AUTO"
	EmbeddedScte20DetectionOff  EmbeddedScte20Detection = "OFF"
)

Enum values for EmbeddedScte20Detection

func (EmbeddedScte20Detection) MarshalValue

func (enum EmbeddedScte20Detection) MarshalValue() (string, error)

func (EmbeddedScte20Detection) MarshalValueBuf

func (enum EmbeddedScte20Detection) MarshalValueBuf(b []byte) ([]byte, error)

type EmbeddedSourceSettings

type EmbeddedSourceSettings struct {

	// If upconvert, 608 data is both passed through via the "608 compatibility
	// bytes" fields of the 708 wrapper as well as translated into 708. 708 data
	// present in the source content will be discarded.
	Convert608To708 EmbeddedConvert608To708 `locationName:"convert608To708" type:"string" enum:"true"`

	// Set to "auto" to handle streams with intermittent and/or non-aligned SCTE-20
	// and Embedded captions.
	Scte20Detection EmbeddedScte20Detection `locationName:"scte20Detection" type:"string" enum:"true"`

	// Specifies the 608/708 channel number within the video track from which to
	// extract captions. Unused for passthrough.
	Source608ChannelNumber *int64 `locationName:"source608ChannelNumber" type:"integer"`

	// This field is unused and deprecated.
	Source608TrackNumber *int64 `locationName:"source608TrackNumber" type:"integer"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/EmbeddedSourceSettings

func (EmbeddedSourceSettings) GoString

func (s EmbeddedSourceSettings) GoString() string

GoString returns the string representation

func (EmbeddedSourceSettings) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (EmbeddedSourceSettings) String

func (s EmbeddedSourceSettings) String() string

String returns the string representation

type EncoderSettings

type EncoderSettings struct {
	AudioDescriptions []AudioDescription `locationName:"audioDescriptions" type:"list"`

	// Settings for ad avail blanking.
	AvailBlanking *AvailBlanking `locationName:"availBlanking" type:"structure"`

	// Event-wide configuration settings for ad avail insertion.
	AvailConfiguration *AvailConfiguration `locationName:"availConfiguration" type:"structure"`

	// Settings for blackout slate.
	BlackoutSlate *BlackoutSlate `locationName:"blackoutSlate" type:"structure"`

	// Settings for caption decriptions
	CaptionDescriptions []CaptionDescription `locationName:"captionDescriptions" type:"list"`

	// Configuration settings that apply to the event as a whole.
	GlobalConfiguration *GlobalConfiguration `locationName:"globalConfiguration" type:"structure"`

	OutputGroups []OutputGroup `locationName:"outputGroups" type:"list"`

	// Contains settings used to acquire and adjust timecode information from inputs.
	TimecodeConfig *TimecodeConfig `locationName:"timecodeConfig" type:"structure"`

	VideoDescriptions []VideoDescription `locationName:"videoDescriptions" type:"list"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/EncoderSettings

func (EncoderSettings) GoString

func (s EncoderSettings) GoString() string

GoString returns the string representation

func (EncoderSettings) MarshalFields

func (s EncoderSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (EncoderSettings) String

func (s EncoderSettings) String() string

String returns the string representation

type FecOutputIncludeFec

type FecOutputIncludeFec string
const (
	FecOutputIncludeFecColumn       FecOutputIncludeFec = "COLUMN"
	FecOutputIncludeFecColumnAndRow FecOutputIncludeFec = "COLUMN_AND_ROW"
)

Enum values for FecOutputIncludeFec

func (FecOutputIncludeFec) MarshalValue

func (enum FecOutputIncludeFec) MarshalValue() (string, error)

func (FecOutputIncludeFec) MarshalValueBuf

func (enum FecOutputIncludeFec) MarshalValueBuf(b []byte) ([]byte, error)

type FecOutputSettings

type FecOutputSettings struct {

	// Parameter D from SMPTE 2022-1. The height of the FEC protection matrix. The
	// number of transport stream packets per column error correction packet. Must
	// be between 4 and 20, inclusive.
	ColumnDepth *int64 `locationName:"columnDepth" type:"integer"`

	// Enables column only or column and row based FEC
	IncludeFec FecOutputIncludeFec `locationName:"includeFec" type:"string" enum:"true"`

	// Parameter L from SMPTE 2022-1. The width of the FEC protection matrix. Must
	// be between 1 and 20, inclusive. If only Column FEC is used, then larger values
	// increase robustness. If Row FEC is used, then this is the number of transport
	// stream packets per row error correction packet, and the value must be between
	// 4 and 20, inclusive, if includeFec is columnAndRow. If includeFec is column,
	// this value must be 1 to 20, inclusive.
	RowLength *int64 `locationName:"rowLength" type:"integer"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/FecOutputSettings

func (FecOutputSettings) GoString

func (s FecOutputSettings) GoString() string

GoString returns the string representation

func (FecOutputSettings) MarshalFields

func (s FecOutputSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (FecOutputSettings) String

func (s FecOutputSettings) String() string

String returns the string representation

type FixedAfd

type FixedAfd string
const (
	FixedAfdAfd0000 FixedAfd = "AFD_0000"
	FixedAfdAfd0010 FixedAfd = "AFD_0010"
	FixedAfdAfd0011 FixedAfd = "AFD_0011"
	FixedAfdAfd0100 FixedAfd = "AFD_0100"
	FixedAfdAfd1000 FixedAfd = "AFD_1000"
	FixedAfdAfd1001 FixedAfd = "AFD_1001"
	FixedAfdAfd1010 FixedAfd = "AFD_1010"
	FixedAfdAfd1011 FixedAfd = "AFD_1011"
	FixedAfdAfd1101 FixedAfd = "AFD_1101"
	FixedAfdAfd1110 FixedAfd = "AFD_1110"
	FixedAfdAfd1111 FixedAfd = "AFD_1111"
)

Enum values for FixedAfd

func (FixedAfd) MarshalValue

func (enum FixedAfd) MarshalValue() (string, error)

func (FixedAfd) MarshalValueBuf

func (enum FixedAfd) MarshalValueBuf(b []byte) ([]byte, error)

type GlobalConfiguration

type GlobalConfiguration struct {

	// Value to set the initial audio gain for the Live Event.
	InitialAudioGain *int64 `locationName:"initialAudioGain" type:"integer"`

	// Indicates the action to take when an input completes (e.g. end-of-file.)
	// Options include immediately switching to the next sequential input (via "switchInput"),
	// switching to the next input and looping back to the first input when last
	// input ends (via "switchAndLoopInputs") or not switching inputs and instead
	// transcoding black / color / slate images per the "Input Loss Behavior" configuration
	// until an activateInput REST command is received (via "none").
	InputEndAction GlobalConfigurationInputEndAction `locationName:"inputEndAction" type:"string" enum:"true"`

	// Settings for system actions when input is lost.
	InputLossBehavior *InputLossBehavior `locationName:"inputLossBehavior" type:"structure"`

	// Indicates whether the rate of frames emitted by the Live encoder should be
	// paced by its system clock (which optionally may be locked to another source
	// via NTP) or should be locked to the clock of the source that is providing
	// the input stream.
	OutputTimingSource GlobalConfigurationOutputTimingSource `locationName:"outputTimingSource" type:"string" enum:"true"`

	// Adjusts video input buffer for streams with very low video framerates. This
	// is commonly set to enabled for music channels with less than one video frame
	// per second.
	SupportLowFramerateInputs GlobalConfigurationLowFramerateInputs `locationName:"supportLowFramerateInputs" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/GlobalConfiguration

func (GlobalConfiguration) GoString

func (s GlobalConfiguration) GoString() string

GoString returns the string representation

func (GlobalConfiguration) MarshalFields

func (s GlobalConfiguration) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (GlobalConfiguration) String

func (s GlobalConfiguration) String() string

String returns the string representation

type GlobalConfigurationInputEndAction

type GlobalConfigurationInputEndAction string
const (
	GlobalConfigurationInputEndActionNone                GlobalConfigurationInputEndAction = "NONE"
	GlobalConfigurationInputEndActionSwitchAndLoopInputs GlobalConfigurationInputEndAction = "SWITCH_AND_LOOP_INPUTS"
)

Enum values for GlobalConfigurationInputEndAction

func (GlobalConfigurationInputEndAction) MarshalValue

func (enum GlobalConfigurationInputEndAction) MarshalValue() (string, error)

func (GlobalConfigurationInputEndAction) MarshalValueBuf

func (enum GlobalConfigurationInputEndAction) MarshalValueBuf(b []byte) ([]byte, error)

type GlobalConfigurationLowFramerateInputs

type GlobalConfigurationLowFramerateInputs string
const (
	GlobalConfigurationLowFramerateInputsDisabled GlobalConfigurationLowFramerateInputs = "DISABLED"
	GlobalConfigurationLowFramerateInputsEnabled  GlobalConfigurationLowFramerateInputs = "ENABLED"
)

Enum values for GlobalConfigurationLowFramerateInputs

func (GlobalConfigurationLowFramerateInputs) MarshalValue

func (enum GlobalConfigurationLowFramerateInputs) MarshalValue() (string, error)

func (GlobalConfigurationLowFramerateInputs) MarshalValueBuf

func (enum GlobalConfigurationLowFramerateInputs) MarshalValueBuf(b []byte) ([]byte, error)

type GlobalConfigurationOutputTimingSource

type GlobalConfigurationOutputTimingSource string
const (
	GlobalConfigurationOutputTimingSourceInputClock  GlobalConfigurationOutputTimingSource = "INPUT_CLOCK"
	GlobalConfigurationOutputTimingSourceSystemClock GlobalConfigurationOutputTimingSource = "SYSTEM_CLOCK"
)

Enum values for GlobalConfigurationOutputTimingSource

func (GlobalConfigurationOutputTimingSource) MarshalValue

func (enum GlobalConfigurationOutputTimingSource) MarshalValue() (string, error)

func (GlobalConfigurationOutputTimingSource) MarshalValueBuf

func (enum GlobalConfigurationOutputTimingSource) MarshalValueBuf(b []byte) ([]byte, error)

type H264AdaptiveQuantization

type H264AdaptiveQuantization string
const (
	H264AdaptiveQuantizationHigh   H264AdaptiveQuantization = "HIGH"
	H264AdaptiveQuantizationHigher H264AdaptiveQuantization = "HIGHER"
	H264AdaptiveQuantizationLow    H264AdaptiveQuantization = "LOW"
	H264AdaptiveQuantizationMax    H264AdaptiveQuantization = "MAX"
	H264AdaptiveQuantizationMedium H264AdaptiveQuantization = "MEDIUM"
	H264AdaptiveQuantizationOff    H264AdaptiveQuantization = "OFF"
)

Enum values for H264AdaptiveQuantization

func (H264AdaptiveQuantization) MarshalValue

func (enum H264AdaptiveQuantization) MarshalValue() (string, error)

func (H264AdaptiveQuantization) MarshalValueBuf

func (enum H264AdaptiveQuantization) MarshalValueBuf(b []byte) ([]byte, error)

type H264ColorMetadata

type H264ColorMetadata string
const (
	H264ColorMetadataIgnore H264ColorMetadata = "IGNORE"
	H264ColorMetadataInsert H264ColorMetadata = "INSERT"
)

Enum values for H264ColorMetadata

func (H264ColorMetadata) MarshalValue

func (enum H264ColorMetadata) MarshalValue() (string, error)

func (H264ColorMetadata) MarshalValueBuf

func (enum H264ColorMetadata) MarshalValueBuf(b []byte) ([]byte, error)

type H264EntropyEncoding

type H264EntropyEncoding string
const (
	H264EntropyEncodingCabac H264EntropyEncoding = "CABAC"
	H264EntropyEncodingCavlc H264EntropyEncoding = "CAVLC"
)

Enum values for H264EntropyEncoding

func (H264EntropyEncoding) MarshalValue

func (enum H264EntropyEncoding) MarshalValue() (string, error)

func (H264EntropyEncoding) MarshalValueBuf

func (enum H264EntropyEncoding) MarshalValueBuf(b []byte) ([]byte, error)

type H264FlickerAq

type H264FlickerAq string
const (
	H264FlickerAqDisabled H264FlickerAq = "DISABLED"
	H264FlickerAqEnabled  H264FlickerAq = "ENABLED"
)

Enum values for H264FlickerAq

func (H264FlickerAq) MarshalValue

func (enum H264FlickerAq) MarshalValue() (string, error)

func (H264FlickerAq) MarshalValueBuf

func (enum H264FlickerAq) MarshalValueBuf(b []byte) ([]byte, error)

type H264FramerateControl

type H264FramerateControl string
const (
	H264FramerateControlInitializeFromSource H264FramerateControl = "INITIALIZE_FROM_SOURCE"
	H264FramerateControlSpecified            H264FramerateControl = "SPECIFIED"
)

Enum values for H264FramerateControl

func (H264FramerateControl) MarshalValue

func (enum H264FramerateControl) MarshalValue() (string, error)

func (H264FramerateControl) MarshalValueBuf

func (enum H264FramerateControl) MarshalValueBuf(b []byte) ([]byte, error)

type H264GopBReference

type H264GopBReference string
const (
	H264GopBReferenceDisabled H264GopBReference = "DISABLED"
	H264GopBReferenceEnabled  H264GopBReference = "ENABLED"
)

Enum values for H264GopBReference

func (H264GopBReference) MarshalValue

func (enum H264GopBReference) MarshalValue() (string, error)

func (H264GopBReference) MarshalValueBuf

func (enum H264GopBReference) MarshalValueBuf(b []byte) ([]byte, error)

type H264GopSizeUnits

type H264GopSizeUnits string
const (
	H264GopSizeUnitsFrames  H264GopSizeUnits = "FRAMES"
	H264GopSizeUnitsSeconds H264GopSizeUnits = "SECONDS"
)

Enum values for H264GopSizeUnits

func (H264GopSizeUnits) MarshalValue

func (enum H264GopSizeUnits) MarshalValue() (string, error)

func (H264GopSizeUnits) MarshalValueBuf

func (enum H264GopSizeUnits) MarshalValueBuf(b []byte) ([]byte, error)

type H264Level

type H264Level string
const (
	H264LevelH264Level1    H264Level = "H264_LEVEL_1"
	H264LevelH264Level11   H264Level = "H264_LEVEL_1_1"
	H264LevelH264Level12   H264Level = "H264_LEVEL_1_2"
	H264LevelH264Level13   H264Level = "H264_LEVEL_1_3"
	H264LevelH264Level2    H264Level = "H264_LEVEL_2"
	H264LevelH264Level21   H264Level = "H264_LEVEL_2_1"
	H264LevelH264Level22   H264Level = "H264_LEVEL_2_2"
	H264LevelH264Level3    H264Level = "H264_LEVEL_3"
	H264LevelH264Level31   H264Level = "H264_LEVEL_3_1"
	H264LevelH264Level32   H264Level = "H264_LEVEL_3_2"
	H264LevelH264Level4    H264Level = "H264_LEVEL_4"
	H264LevelH264Level41   H264Level = "H264_LEVEL_4_1"
	H264LevelH264Level42   H264Level = "H264_LEVEL_4_2"
	H264LevelH264Level5    H264Level = "H264_LEVEL_5"
	H264LevelH264Level51   H264Level = "H264_LEVEL_5_1"
	H264LevelH264Level52   H264Level = "H264_LEVEL_5_2"
	H264LevelH264LevelAuto H264Level = "H264_LEVEL_AUTO"
)

Enum values for H264Level

func (H264Level) MarshalValue

func (enum H264Level) MarshalValue() (string, error)

func (H264Level) MarshalValueBuf

func (enum H264Level) MarshalValueBuf(b []byte) ([]byte, error)

type H264LookAheadRateControl

type H264LookAheadRateControl string
const (
	H264LookAheadRateControlHigh   H264LookAheadRateControl = "HIGH"
	H264LookAheadRateControlLow    H264LookAheadRateControl = "LOW"
	H264LookAheadRateControlMedium H264LookAheadRateControl = "MEDIUM"
)

Enum values for H264LookAheadRateControl

func (H264LookAheadRateControl) MarshalValue

func (enum H264LookAheadRateControl) MarshalValue() (string, error)

func (H264LookAheadRateControl) MarshalValueBuf

func (enum H264LookAheadRateControl) MarshalValueBuf(b []byte) ([]byte, error)

type H264ParControl

type H264ParControl string
const (
	H264ParControlInitializeFromSource H264ParControl = "INITIALIZE_FROM_SOURCE"
	H264ParControlSpecified            H264ParControl = "SPECIFIED"
)

Enum values for H264ParControl

func (H264ParControl) MarshalValue

func (enum H264ParControl) MarshalValue() (string, error)

func (H264ParControl) MarshalValueBuf

func (enum H264ParControl) MarshalValueBuf(b []byte) ([]byte, error)

type H264Profile

type H264Profile string
const (
	H264ProfileBaseline     H264Profile = "BASELINE"
	H264ProfileHigh         H264Profile = "HIGH"
	H264ProfileHigh10bit    H264Profile = "HIGH_10BIT"
	H264ProfileHigh422      H264Profile = "HIGH_422"
	H264ProfileHigh42210bit H264Profile = "HIGH_422_10BIT"
	H264ProfileMain         H264Profile = "MAIN"
)

Enum values for H264Profile

func (H264Profile) MarshalValue

func (enum H264Profile) MarshalValue() (string, error)

func (H264Profile) MarshalValueBuf

func (enum H264Profile) MarshalValueBuf(b []byte) ([]byte, error)

type H264RateControlMode

type H264RateControlMode string
const (
	H264RateControlModeCbr H264RateControlMode = "CBR"
	H264RateControlModeVbr H264RateControlMode = "VBR"
)

Enum values for H264RateControlMode

func (H264RateControlMode) MarshalValue

func (enum H264RateControlMode) MarshalValue() (string, error)

func (H264RateControlMode) MarshalValueBuf

func (enum H264RateControlMode) MarshalValueBuf(b []byte) ([]byte, error)

type H264ScanType

type H264ScanType string
const (
	H264ScanTypeInterlaced  H264ScanType = "INTERLACED"
	H264ScanTypeProgressive H264ScanType = "PROGRESSIVE"
)

Enum values for H264ScanType

func (H264ScanType) MarshalValue

func (enum H264ScanType) MarshalValue() (string, error)

func (H264ScanType) MarshalValueBuf

func (enum H264ScanType) MarshalValueBuf(b []byte) ([]byte, error)

type H264SceneChangeDetect

type H264SceneChangeDetect string
const (
	H264SceneChangeDetectDisabled H264SceneChangeDetect = "DISABLED"
	H264SceneChangeDetectEnabled  H264SceneChangeDetect = "ENABLED"
)

Enum values for H264SceneChangeDetect

func (H264SceneChangeDetect) MarshalValue

func (enum H264SceneChangeDetect) MarshalValue() (string, error)

func (H264SceneChangeDetect) MarshalValueBuf

func (enum H264SceneChangeDetect) MarshalValueBuf(b []byte) ([]byte, error)

type H264Settings

type H264Settings struct {

	// Adaptive quantization. Allows intra-frame quantizers to vary to improve visual
	// quality.
	AdaptiveQuantization H264AdaptiveQuantization `locationName:"adaptiveQuantization" type:"string" enum:"true"`

	// Indicates that AFD values will be written into the output stream. If afdSignaling
	// is "auto", the system will try to preserve the input AFD value (in cases
	// where multiple AFD values are valid). If set to "fixed", the AFD value will
	// be the value configured in the fixedAfd parameter.
	AfdSignaling AfdSignaling `locationName:"afdSignaling" type:"string" enum:"true"`

	// Average bitrate in bits/second. Required for VBR, CBR, and ABR. For MS Smooth
	// outputs, bitrates must be unique when rounded down to the nearest multiple
	// of 1000.
	Bitrate *int64 `locationName:"bitrate" type:"integer"`

	// Percentage of the buffer that should initially be filled (HRD buffer model).
	BufFillPct *int64 `locationName:"bufFillPct" type:"integer"`

	// Size of buffer (HRD buffer model) in bits/second.
	BufSize *int64 `locationName:"bufSize" type:"integer"`

	// Includes colorspace metadata in the output.
	ColorMetadata H264ColorMetadata `locationName:"colorMetadata" type:"string" enum:"true"`

	// Entropy encoding mode. Use cabac (must be in Main or High profile) or cavlc.
	EntropyEncoding H264EntropyEncoding `locationName:"entropyEncoding" type:"string" enum:"true"`

	// Four bit AFD value to write on all frames of video in the output stream.
	// Only valid when afdSignaling is set to 'Fixed'.
	FixedAfd FixedAfd `locationName:"fixedAfd" type:"string" enum:"true"`

	// If set to enabled, adjust quantization within each frame to reduce flicker
	// or 'pop' on I-frames.
	FlickerAq H264FlickerAq `locationName:"flickerAq" type:"string" enum:"true"`

	// This field indicates how the output video frame rate is specified. If "specified"
	// is selected then the output video frame rate is determined by framerateNumerator
	// and framerateDenominator, else if "initializeFromSource" is selected then
	// the output video frame rate will be set equal to the input video frame rate
	// of the first input.
	FramerateControl H264FramerateControl `locationName:"framerateControl" type:"string" enum:"true"`

	// Framerate denominator.
	FramerateDenominator *int64 `locationName:"framerateDenominator" type:"integer"`

	// Framerate numerator - framerate is a fraction, e.g. 24000 / 1001 = 23.976
	// fps.
	FramerateNumerator *int64 `locationName:"framerateNumerator" type:"integer"`

	// If enabled, use reference B frames for GOP structures that have B frames
	// > 1.
	GopBReference H264GopBReference `locationName:"gopBReference" type:"string" enum:"true"`

	// Frequency of closed GOPs. In streaming applications, it is recommended that
	// this be set to 1 so a decoder joining mid-stream will receive an IDR frame
	// as quickly as possible. Setting this value to 0 will break output segmenting.
	GopClosedCadence *int64 `locationName:"gopClosedCadence" type:"integer"`

	// Number of B-frames between reference frames.
	GopNumBFrames *int64 `locationName:"gopNumBFrames" type:"integer"`

	// GOP size (keyframe interval) in units of either frames or seconds per gopSizeUnits.
	// Must be greater than zero.
	GopSize *float64 `locationName:"gopSize" type:"double"`

	// Indicates if the gopSize is specified in frames or seconds. If seconds the
	// system will convert the gopSize into a frame count at run time.
	GopSizeUnits H264GopSizeUnits `locationName:"gopSizeUnits" type:"string" enum:"true"`

	// H.264 Level.
	Level H264Level `locationName:"level" type:"string" enum:"true"`

	// Amount of lookahead. A value of low can decrease latency and memory usage,
	// while high can produce better quality for certain content.
	LookAheadRateControl H264LookAheadRateControl `locationName:"lookAheadRateControl" type:"string" enum:"true"`

	// Maximum bitrate in bits/second (for VBR mode only).
	MaxBitrate *int64 `locationName:"maxBitrate" type:"integer"`

	// Only meaningful if sceneChangeDetect is set to enabled. Enforces separation
	// between repeated (cadence) I-frames and I-frames inserted by Scene Change
	// Detection. If a scene change I-frame is within I-interval frames of a cadence
	// I-frame, the GOP is shrunk and/or stretched to the scene change I-frame.
	// GOP stretch requires enabling lookahead as well as setting I-interval. The
	// normal cadence resumes for the next GOP. Note: Maximum GOP stretch = GOP
	// size + Min-I-interval - 1
	MinIInterval *int64 `locationName:"minIInterval" type:"integer"`

	// Number of reference frames to use. The encoder may use more than requested
	// if using B-frames and/or interlaced encoding.
	NumRefFrames *int64 `locationName:"numRefFrames" type:"integer"`

	// This field indicates how the output pixel aspect ratio is specified. If "specified"
	// is selected then the output video pixel aspect ratio is determined by parNumerator
	// and parDenominator, else if "initializeFromSource" is selected then the output
	// pixsel aspect ratio will be set equal to the input video pixel aspect ratio
	// of the first input.
	ParControl H264ParControl `locationName:"parControl" type:"string" enum:"true"`

	// Pixel Aspect Ratio denominator.
	ParDenominator *int64 `locationName:"parDenominator" type:"integer"`

	// Pixel Aspect Ratio numerator.
	ParNumerator *int64 `locationName:"parNumerator" type:"integer"`

	// H.264 Profile.
	Profile H264Profile `locationName:"profile" type:"string" enum:"true"`

	// Rate control mode.
	RateControlMode H264RateControlMode `locationName:"rateControlMode" type:"string" enum:"true"`

	// Sets the scan type of the output to progressive or top-field-first interlaced.
	ScanType H264ScanType `locationName:"scanType" type:"string" enum:"true"`

	// Scene change detection. Inserts I-frames on scene changes when enabled.
	SceneChangeDetect H264SceneChangeDetect `locationName:"sceneChangeDetect" type:"string" enum:"true"`

	// Number of slices per picture. Must be less than or equal to the number of
	// macroblock rows for progressive pictures, and less than or equal to half
	// the number of macroblock rows for interlaced pictures.This field is optional;
	// when no value is specified the encoder will choose the number of slices based
	// on encode resolution.
	Slices *int64 `locationName:"slices" type:"integer"`

	// Softness. Selects quantizer matrix, larger values reduce high-frequency content
	// in the encoded image.
	Softness *int64 `locationName:"softness" type:"integer"`

	// If set to enabled, adjust quantization within each frame based on spatial
	// variation of content complexity.
	SpatialAq H264SpatialAq `locationName:"spatialAq" type:"string" enum:"true"`

	// Produces a bitstream compliant with SMPTE RP-2027.
	Syntax H264Syntax `locationName:"syntax" type:"string" enum:"true"`

	// If set to enabled, adjust quantization within each frame based on temporal
	// variation of content complexity.
	TemporalAq H264TemporalAq `locationName:"temporalAq" type:"string" enum:"true"`

	// Determines how timecodes should be inserted into the video elementary stream.-
	// 'disabled': Do not include timecodes- 'picTimingSei': Pass through picture
	// timing SEI messages from the source specified in Timecode Config
	TimecodeInsertion H264TimecodeInsertionBehavior `locationName:"timecodeInsertion" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/H264Settings

func (H264Settings) GoString

func (s H264Settings) GoString() string

GoString returns the string representation

func (H264Settings) MarshalFields

func (s H264Settings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (H264Settings) String

func (s H264Settings) String() string

String returns the string representation

type H264SpatialAq

type H264SpatialAq string
const (
	H264SpatialAqDisabled H264SpatialAq = "DISABLED"
	H264SpatialAqEnabled  H264SpatialAq = "ENABLED"
)

Enum values for H264SpatialAq

func (H264SpatialAq) MarshalValue

func (enum H264SpatialAq) MarshalValue() (string, error)

func (H264SpatialAq) MarshalValueBuf

func (enum H264SpatialAq) MarshalValueBuf(b []byte) ([]byte, error)

type H264Syntax

type H264Syntax string
const (
	H264SyntaxDefault H264Syntax = "DEFAULT"
	H264SyntaxRp2027  H264Syntax = "RP2027"
)

Enum values for H264Syntax

func (H264Syntax) MarshalValue

func (enum H264Syntax) MarshalValue() (string, error)

func (H264Syntax) MarshalValueBuf

func (enum H264Syntax) MarshalValueBuf(b []byte) ([]byte, error)

type H264TemporalAq

type H264TemporalAq string
const (
	H264TemporalAqDisabled H264TemporalAq = "DISABLED"
	H264TemporalAqEnabled  H264TemporalAq = "ENABLED"
)

Enum values for H264TemporalAq

func (H264TemporalAq) MarshalValue

func (enum H264TemporalAq) MarshalValue() (string, error)

func (H264TemporalAq) MarshalValueBuf

func (enum H264TemporalAq) MarshalValueBuf(b []byte) ([]byte, error)

type H264TimecodeInsertionBehavior

type H264TimecodeInsertionBehavior string
const (
	H264TimecodeInsertionBehaviorDisabled     H264TimecodeInsertionBehavior = "DISABLED"
	H264TimecodeInsertionBehaviorPicTimingSei H264TimecodeInsertionBehavior = "PIC_TIMING_SEI"
)

Enum values for H264TimecodeInsertionBehavior

func (H264TimecodeInsertionBehavior) MarshalValue

func (enum H264TimecodeInsertionBehavior) MarshalValue() (string, error)

func (H264TimecodeInsertionBehavior) MarshalValueBuf

func (enum H264TimecodeInsertionBehavior) MarshalValueBuf(b []byte) ([]byte, error)

type HlsAdMarkers

type HlsAdMarkers string
const (
	HlsAdMarkersAdobe           HlsAdMarkers = "ADOBE"
	HlsAdMarkersElemental       HlsAdMarkers = "ELEMENTAL"
	HlsAdMarkersElementalScte35 HlsAdMarkers = "ELEMENTAL_SCTE35"
)

Enum values for HlsAdMarkers

func (HlsAdMarkers) MarshalValue

func (enum HlsAdMarkers) MarshalValue() (string, error)

func (HlsAdMarkers) MarshalValueBuf

func (enum HlsAdMarkers) MarshalValueBuf(b []byte) ([]byte, error)

type HlsAkamaiHttpTransferMode

type HlsAkamaiHttpTransferMode string
const (
	HlsAkamaiHttpTransferModeChunked    HlsAkamaiHttpTransferMode = "CHUNKED"
	HlsAkamaiHttpTransferModeNonChunked HlsAkamaiHttpTransferMode = "NON_CHUNKED"
)

Enum values for HlsAkamaiHttpTransferMode

func (HlsAkamaiHttpTransferMode) MarshalValue

func (enum HlsAkamaiHttpTransferMode) MarshalValue() (string, error)

func (HlsAkamaiHttpTransferMode) MarshalValueBuf

func (enum HlsAkamaiHttpTransferMode) MarshalValueBuf(b []byte) ([]byte, error)

type HlsAkamaiSettings

type HlsAkamaiSettings struct {

	// Number of seconds to wait before retrying connection to the CDN if the connection
	// is lost.
	ConnectionRetryInterval *int64 `locationName:"connectionRetryInterval" type:"integer"`

	// Size in seconds of file cache for streaming outputs.
	FilecacheDuration *int64 `locationName:"filecacheDuration" type:"integer"`

	// Specify whether or not to use chunked transfer encoding to Akamai. User should
	// contact Akamai to enable this feature.
	HttpTransferMode HlsAkamaiHttpTransferMode `locationName:"httpTransferMode" type:"string" enum:"true"`

	// Number of retry attempts that will be made before the Live Event is put into
	// an error state.
	NumRetries *int64 `locationName:"numRetries" type:"integer"`

	// If a streaming output fails, number of seconds to wait until a restart is
	// initiated. A value of 0 means never restart.
	RestartDelay *int64 `locationName:"restartDelay" type:"integer"`

	// Salt for authenticated Akamai.
	Salt *string `locationName:"salt" type:"string"`

	// Token parameter for authenticated akamai. If not specified, _gda_ is used.
	Token *string `locationName:"token" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/HlsAkamaiSettings

func (HlsAkamaiSettings) GoString

func (s HlsAkamaiSettings) GoString() string

GoString returns the string representation

func (HlsAkamaiSettings) MarshalFields

func (s HlsAkamaiSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (HlsAkamaiSettings) String

func (s HlsAkamaiSettings) String() string

String returns the string representation

type HlsBasicPutSettings

type HlsBasicPutSettings struct {

	// Number of seconds to wait before retrying connection to the CDN if the connection
	// is lost.
	ConnectionRetryInterval *int64 `locationName:"connectionRetryInterval" type:"integer"`

	// Size in seconds of file cache for streaming outputs.
	FilecacheDuration *int64 `locationName:"filecacheDuration" type:"integer"`

	// Number of retry attempts that will be made before the Live Event is put into
	// an error state.
	NumRetries *int64 `locationName:"numRetries" type:"integer"`

	// If a streaming output fails, number of seconds to wait until a restart is
	// initiated. A value of 0 means never restart.
	RestartDelay *int64 `locationName:"restartDelay" type:"integer"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/HlsBasicPutSettings

func (HlsBasicPutSettings) GoString

func (s HlsBasicPutSettings) GoString() string

GoString returns the string representation

func (HlsBasicPutSettings) MarshalFields

func (s HlsBasicPutSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (HlsBasicPutSettings) String

func (s HlsBasicPutSettings) String() string

String returns the string representation

type HlsCaptionLanguageSetting

type HlsCaptionLanguageSetting string
const (
	HlsCaptionLanguageSettingInsert HlsCaptionLanguageSetting = "INSERT"
	HlsCaptionLanguageSettingNone   HlsCaptionLanguageSetting = "NONE"
	HlsCaptionLanguageSettingOmit   HlsCaptionLanguageSetting = "OMIT"
)

Enum values for HlsCaptionLanguageSetting

func (HlsCaptionLanguageSetting) MarshalValue

func (enum HlsCaptionLanguageSetting) MarshalValue() (string, error)

func (HlsCaptionLanguageSetting) MarshalValueBuf

func (enum HlsCaptionLanguageSetting) MarshalValueBuf(b []byte) ([]byte, error)

type HlsCdnSettings

type HlsCdnSettings struct {
	HlsAkamaiSettings *HlsAkamaiSettings `locationName:"hlsAkamaiSettings" type:"structure"`

	HlsBasicPutSettings *HlsBasicPutSettings `locationName:"hlsBasicPutSettings" type:"structure"`

	HlsMediaStoreSettings *HlsMediaStoreSettings `locationName:"hlsMediaStoreSettings" type:"structure"`

	HlsWebdavSettings *HlsWebdavSettings `locationName:"hlsWebdavSettings" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/HlsCdnSettings

func (HlsCdnSettings) GoString

func (s HlsCdnSettings) GoString() string

GoString returns the string representation

func (HlsCdnSettings) MarshalFields

func (s HlsCdnSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (HlsCdnSettings) String

func (s HlsCdnSettings) String() string

String returns the string representation

type HlsClientCache

type HlsClientCache string
const (
	HlsClientCacheDisabled HlsClientCache = "DISABLED"
	HlsClientCacheEnabled  HlsClientCache = "ENABLED"
)

Enum values for HlsClientCache

func (HlsClientCache) MarshalValue

func (enum HlsClientCache) MarshalValue() (string, error)

func (HlsClientCache) MarshalValueBuf

func (enum HlsClientCache) MarshalValueBuf(b []byte) ([]byte, error)

type HlsCodecSpecification

type HlsCodecSpecification string
const (
	HlsCodecSpecificationRfc4281 HlsCodecSpecification = "RFC_4281"
	HlsCodecSpecificationRfc6381 HlsCodecSpecification = "RFC_6381"
)

Enum values for HlsCodecSpecification

func (HlsCodecSpecification) MarshalValue

func (enum HlsCodecSpecification) MarshalValue() (string, error)

func (HlsCodecSpecification) MarshalValueBuf

func (enum HlsCodecSpecification) MarshalValueBuf(b []byte) ([]byte, error)

type HlsDirectoryStructure

type HlsDirectoryStructure string
const (
	HlsDirectoryStructureSingleDirectory       HlsDirectoryStructure = "SINGLE_DIRECTORY"
	HlsDirectoryStructureSubdirectoryPerStream HlsDirectoryStructure = "SUBDIRECTORY_PER_STREAM"
)

Enum values for HlsDirectoryStructure

func (HlsDirectoryStructure) MarshalValue

func (enum HlsDirectoryStructure) MarshalValue() (string, error)

func (HlsDirectoryStructure) MarshalValueBuf

func (enum HlsDirectoryStructure) MarshalValueBuf(b []byte) ([]byte, error)

type HlsEncryptionType

type HlsEncryptionType string
const (
	HlsEncryptionTypeAes128    HlsEncryptionType = "AES128"
	HlsEncryptionTypeSampleAes HlsEncryptionType = "SAMPLE_AES"
)

Enum values for HlsEncryptionType

func (HlsEncryptionType) MarshalValue

func (enum HlsEncryptionType) MarshalValue() (string, error)

func (HlsEncryptionType) MarshalValueBuf

func (enum HlsEncryptionType) MarshalValueBuf(b []byte) ([]byte, error)

type HlsGroupSettings

type HlsGroupSettings struct {

	// Choose one or more ad marker types to pass SCTE35 signals through to this
	// group of Apple HLS outputs.
	AdMarkers []HlsAdMarkers `locationName:"adMarkers" type:"list"`

	// A partial URI prefix that will be prepended to each output in the media .m3u8
	// file. Can be used if base manifest is delivered from a different URL than
	// the main .m3u8 file.
	BaseUrlContent *string `locationName:"baseUrlContent" type:"string"`

	// A partial URI prefix that will be prepended to each output in the media .m3u8
	// file. Can be used if base manifest is delivered from a different URL than
	// the main .m3u8 file.
	BaseUrlManifest *string `locationName:"baseUrlManifest" type:"string"`

	// Mapping of up to 4 caption channels to caption languages. Is only meaningful
	// if captionLanguageSetting is set to "insert".
	CaptionLanguageMappings []CaptionLanguageMapping `locationName:"captionLanguageMappings" type:"list"`

	// Applies only to 608 Embedded output captions.insert: Include CLOSED-CAPTIONS
	// lines in the manifest. Specify at least one language in the CC1 Language
	// Code field. One CLOSED-CAPTION line is added for each Language Code you specify.
	// Make sure to specify the languages in the order in which they appear in the
	// original source (if the source is embedded format) or the order of the caption
	// selectors (if the source is other than embedded). Otherwise, languages in
	// the manifest will not match up properly with the output captions.none: Include
	// CLOSED-CAPTIONS=NONE line in the manifest.omit: Omit any CLOSED-CAPTIONS
	// line from the manifest.
	CaptionLanguageSetting HlsCaptionLanguageSetting `locationName:"captionLanguageSetting" type:"string" enum:"true"`

	// When set to "disabled", sets the #EXT-X-ALLOW-CACHE:no tag in the manifest,
	// which prevents clients from saving media segments for later replay.
	ClientCache HlsClientCache `locationName:"clientCache" type:"string" enum:"true"`

	// Specification to use (RFC-6381 or the default RFC-4281) during m3u8 playlist
	// generation.
	CodecSpecification HlsCodecSpecification `locationName:"codecSpecification" type:"string" enum:"true"`

	// For use with encryptionType. This is a 128-bit, 16-byte hex value represented
	// by a 32-character text string. If ivSource is set to "explicit" then this
	// parameter is required and is used as the IV for encryption.
	ConstantIv *string `locationName:"constantIv" type:"string"`

	// A directory or HTTP destination for the HLS segments, manifest files, and
	// encryption keys (if enabled).
	Destination *OutputLocationRef `locationName:"destination" type:"structure"`

	// Place segments in subdirectories.
	DirectoryStructure HlsDirectoryStructure `locationName:"directoryStructure" type:"string" enum:"true"`

	// Encrypts the segments with the given encryption scheme. Exclude this parameter
	// if no encryption is desired.
	EncryptionType HlsEncryptionType `locationName:"encryptionType" type:"string" enum:"true"`

	// Parameters that control interactions with the CDN.
	HlsCdnSettings *HlsCdnSettings `locationName:"hlsCdnSettings" type:"structure"`

	// If mode is "live", the number of segments to retain in the manifest (.m3u8)
	// file. This number must be less than or equal to keepSegments. If mode is
	// "vod", this parameter has no effect.
	IndexNSegments *int64 `locationName:"indexNSegments" type:"integer"`

	// Parameter that control output group behavior on input loss.
	InputLossAction InputLossActionForHlsOut `locationName:"inputLossAction" type:"string" enum:"true"`

	// For use with encryptionType. The IV (Initialization Vector) is a 128-bit
	// number used in conjunction with the key for encrypting blocks. If set to
	// "include", IV is listed in the manifest, otherwise the IV is not in the manifest.
	IvInManifest HlsIvInManifest `locationName:"ivInManifest" type:"string" enum:"true"`

	// For use with encryptionType. The IV (Initialization Vector) is a 128-bit
	// number used in conjunction with the key for encrypting blocks. If this setting
	// is "followsSegmentNumber", it will cause the IV to change every segment (to
	// match the segment number). If this is set to "explicit", you must enter a
	// constantIv value.
	IvSource HlsIvSource `locationName:"ivSource" type:"string" enum:"true"`

	// If mode is "live", the number of TS segments to retain in the destination
	// directory. If mode is "vod", this parameter has no effect.
	KeepSegments *int64 `locationName:"keepSegments" type:"integer"`

	// The value specifies how the key is represented in the resource identified
	// by the URI. If parameter is absent, an implicit value of "identity" is used.
	// A reverse DNS string can also be given.
	KeyFormat *string `locationName:"keyFormat" type:"string"`

	// Either a single positive integer version value or a slash delimited list
	// of version values (1/2/3).
	KeyFormatVersions *string `locationName:"keyFormatVersions" type:"string"`

	// The key provider settings.
	KeyProviderSettings *KeyProviderSettings `locationName:"keyProviderSettings" type:"structure"`

	// When set to gzip, compresses HLS playlist.
	ManifestCompression HlsManifestCompression `locationName:"manifestCompression" type:"string" enum:"true"`

	// Indicates whether the output manifest should use floating point or integer
	// values for segment duration.
	ManifestDurationFormat HlsManifestDurationFormat `locationName:"manifestDurationFormat" type:"string" enum:"true"`

	// When set, minimumSegmentLength is enforced by looking ahead and back within
	// the specified range for a nearby avail and extending the segment size if
	// needed.
	MinSegmentLength *int64 `locationName:"minSegmentLength" type:"integer"`

	// If "vod", all segments are indexed and kept permanently in the destination
	// and manifest. If "live", only the number segments specified in keepSegments
	// and indexNSegments are kept; newer segments replace older segments, which
	// may prevent players from rewinding all the way to the beginning of the event.VOD
	// mode uses HLS EXT-X-PLAYLIST-TYPE of EVENT while the channel is running,
	// converting it to a "VOD" type manifest on completion of the stream.
	Mode HlsMode `locationName:"mode" type:"string" enum:"true"`

	// Generates the .m3u8 playlist file for this HLS output group. The segmentsOnly
	// option will output segments without the .m3u8 file.
	OutputSelection HlsOutputSelection `locationName:"outputSelection" type:"string" enum:"true"`

	// Includes or excludes EXT-X-PROGRAM-DATE-TIME tag in .m3u8 manifest files.
	// The value is calculated as follows: either the program date and time are
	// initialized using the input timecode source, or the time is initialized using
	// the input timecode source and the date is initialized using the timestampOffset.
	ProgramDateTime HlsProgramDateTime `locationName:"programDateTime" type:"string" enum:"true"`

	// Period of insertion of EXT-X-PROGRAM-DATE-TIME entry, in seconds.
	ProgramDateTimePeriod *int64 `locationName:"programDateTimePeriod" type:"integer"`

	// Length of MPEG-2 Transport Stream segments to create (in seconds). Note that
	// segments will end on the next keyframe after this number of seconds, so actual
	// segment length may be longer.
	SegmentLength *int64 `locationName:"segmentLength" type:"integer"`

	// When set to useInputSegmentation, the output segment or fragment points are
	// set by the RAI markers from the input streams.
	SegmentationMode HlsSegmentationMode `locationName:"segmentationMode" type:"string" enum:"true"`

	// Number of segments to write to a subdirectory before starting a new one.
	// directoryStructure must be subdirectoryPerStream for this setting to have
	// an effect.
	SegmentsPerSubdirectory *int64 `locationName:"segmentsPerSubdirectory" type:"integer"`

	// Include or exclude RESOLUTION attribute for video in EXT-X-STREAM-INF tag
	// of variant manifest.
	StreamInfResolution HlsStreamInfResolution `locationName:"streamInfResolution" type:"string" enum:"true"`

	// Indicates ID3 frame that has the timecode.
	TimedMetadataId3Frame HlsTimedMetadataId3Frame `locationName:"timedMetadataId3Frame" type:"string" enum:"true"`

	// Timed Metadata interval in seconds.
	TimedMetadataId3Period *int64 `locationName:"timedMetadataId3Period" type:"integer"`

	// Provides an extra millisecond delta offset to fine tune the timestamps.
	TimestampDeltaMilliseconds *int64 `locationName:"timestampDeltaMilliseconds" type:"integer"`

	// When set to "singleFile", emits the program as a single media resource (.ts)
	// file, and uses #EXT-X-BYTERANGE tags to index segment for playback. Playback
	// of VOD mode content during event is not guaranteed due to HTTP server caching.
	TsFileMode HlsTsFileMode `locationName:"tsFileMode" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/HlsGroupSettings

func (HlsGroupSettings) GoString

func (s HlsGroupSettings) GoString() string

GoString returns the string representation

func (HlsGroupSettings) MarshalFields

func (s HlsGroupSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (HlsGroupSettings) String

func (s HlsGroupSettings) String() string

String returns the string representation

type HlsInputSettings

type HlsInputSettings struct {

	// When specified the HLS stream with the m3u8 BANDWIDTH that most closely matches
	// this value will be chosen, otherwise the highest bandwidth stream in the
	// m3u8 will be chosen. The bitrate is specified in bits per second, as in an
	// HLS manifest.
	Bandwidth *int64 `locationName:"bandwidth" type:"integer"`

	// When specified, reading of the HLS input will begin this many buffer segments
	// from the end (most recently written segment). When not specified, the HLS
	// input will begin with the first segment specified in the m3u8.
	BufferSegments *int64 `locationName:"bufferSegments" type:"integer"`

	// The number of consecutive times that attempts to read a manifest or segment
	// must fail before the input is considered unavailable.
	Retries *int64 `locationName:"retries" type:"integer"`

	// The number of seconds between retries when an attempt to read a manifest
	// or segment fails.
	RetryInterval *int64 `locationName:"retryInterval" type:"integer"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/HlsInputSettings

func (HlsInputSettings) GoString

func (s HlsInputSettings) GoString() string

GoString returns the string representation

func (HlsInputSettings) MarshalFields

func (s HlsInputSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (HlsInputSettings) String

func (s HlsInputSettings) String() string

String returns the string representation

type HlsIvInManifest

type HlsIvInManifest string
const (
	HlsIvInManifestExclude HlsIvInManifest = "EXCLUDE"
	HlsIvInManifestInclude HlsIvInManifest = "INCLUDE"
)

Enum values for HlsIvInManifest

func (HlsIvInManifest) MarshalValue

func (enum HlsIvInManifest) MarshalValue() (string, error)

func (HlsIvInManifest) MarshalValueBuf

func (enum HlsIvInManifest) MarshalValueBuf(b []byte) ([]byte, error)

type HlsIvSource

type HlsIvSource string
const (
	HlsIvSourceExplicit             HlsIvSource = "EXPLICIT"
	HlsIvSourceFollowsSegmentNumber HlsIvSource = "FOLLOWS_SEGMENT_NUMBER"
)

Enum values for HlsIvSource

func (HlsIvSource) MarshalValue

func (enum HlsIvSource) MarshalValue() (string, error)

func (HlsIvSource) MarshalValueBuf

func (enum HlsIvSource) MarshalValueBuf(b []byte) ([]byte, error)

type HlsManifestCompression

type HlsManifestCompression string
const (
	HlsManifestCompressionGzip HlsManifestCompression = "GZIP"
	HlsManifestCompressionNone HlsManifestCompression = "NONE"
)

Enum values for HlsManifestCompression

func (HlsManifestCompression) MarshalValue

func (enum HlsManifestCompression) MarshalValue() (string, error)

func (HlsManifestCompression) MarshalValueBuf

func (enum HlsManifestCompression) MarshalValueBuf(b []byte) ([]byte, error)

type HlsManifestDurationFormat

type HlsManifestDurationFormat string
const (
	HlsManifestDurationFormatFloatingPoint HlsManifestDurationFormat = "FLOATING_POINT"
	HlsManifestDurationFormatInteger       HlsManifestDurationFormat = "INTEGER"
)

Enum values for HlsManifestDurationFormat

func (HlsManifestDurationFormat) MarshalValue

func (enum HlsManifestDurationFormat) MarshalValue() (string, error)

func (HlsManifestDurationFormat) MarshalValueBuf

func (enum HlsManifestDurationFormat) MarshalValueBuf(b []byte) ([]byte, error)

type HlsMediaStoreSettings

type HlsMediaStoreSettings struct {

	// Number of seconds to wait before retrying connection to the CDN if the connection
	// is lost.
	ConnectionRetryInterval *int64 `locationName:"connectionRetryInterval" type:"integer"`

	// Size in seconds of file cache for streaming outputs.
	FilecacheDuration *int64 `locationName:"filecacheDuration" type:"integer"`

	// When set to temporal, output files are stored in non-persistent memory for
	// faster reading and writing.
	MediaStoreStorageClass HlsMediaStoreStorageClass `locationName:"mediaStoreStorageClass" type:"string" enum:"true"`

	// Number of retry attempts that will be made before the Live Event is put into
	// an error state.
	NumRetries *int64 `locationName:"numRetries" type:"integer"`

	// If a streaming output fails, number of seconds to wait until a restart is
	// initiated. A value of 0 means never restart.
	RestartDelay *int64 `locationName:"restartDelay" type:"integer"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/HlsMediaStoreSettings

func (HlsMediaStoreSettings) GoString

func (s HlsMediaStoreSettings) GoString() string

GoString returns the string representation

func (HlsMediaStoreSettings) MarshalFields

func (s HlsMediaStoreSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (HlsMediaStoreSettings) String

func (s HlsMediaStoreSettings) String() string

String returns the string representation

type HlsMediaStoreStorageClass

type HlsMediaStoreStorageClass string
const (
	HlsMediaStoreStorageClassTemporal HlsMediaStoreStorageClass = "TEMPORAL"
)

Enum values for HlsMediaStoreStorageClass

func (HlsMediaStoreStorageClass) MarshalValue

func (enum HlsMediaStoreStorageClass) MarshalValue() (string, error)

func (HlsMediaStoreStorageClass) MarshalValueBuf

func (enum HlsMediaStoreStorageClass) MarshalValueBuf(b []byte) ([]byte, error)

type HlsMode

type HlsMode string
const (
	HlsModeLive HlsMode = "LIVE"
	HlsModeVod  HlsMode = "VOD"
)

Enum values for HlsMode

func (HlsMode) MarshalValue

func (enum HlsMode) MarshalValue() (string, error)

func (HlsMode) MarshalValueBuf

func (enum HlsMode) MarshalValueBuf(b []byte) ([]byte, error)

type HlsOutputSelection

type HlsOutputSelection string
const (
	HlsOutputSelectionManifestsAndSegments HlsOutputSelection = "MANIFESTS_AND_SEGMENTS"
	HlsOutputSelectionSegmentsOnly         HlsOutputSelection = "SEGMENTS_ONLY"
)

Enum values for HlsOutputSelection

func (HlsOutputSelection) MarshalValue

func (enum HlsOutputSelection) MarshalValue() (string, error)

func (HlsOutputSelection) MarshalValueBuf

func (enum HlsOutputSelection) MarshalValueBuf(b []byte) ([]byte, error)

type HlsOutputSettings

type HlsOutputSettings struct {

	// Settings regarding the underlying stream. These settings are different for
	// audio-only outputs.
	HlsSettings *HlsSettings `locationName:"hlsSettings" type:"structure"`

	// String concatenated to the end of the destination filename. Accepts \"Format
	// Identifiers\":#formatIdentifierParameters.
	NameModifier *string `locationName:"nameModifier" type:"string"`

	// String concatenated to end of segment filenames.
	SegmentModifier *string `locationName:"segmentModifier" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/HlsOutputSettings

func (HlsOutputSettings) GoString

func (s HlsOutputSettings) GoString() string

GoString returns the string representation

func (HlsOutputSettings) MarshalFields

func (s HlsOutputSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (HlsOutputSettings) String

func (s HlsOutputSettings) String() string

String returns the string representation

type HlsProgramDateTime

type HlsProgramDateTime string
const (
	HlsProgramDateTimeExclude HlsProgramDateTime = "EXCLUDE"
	HlsProgramDateTimeInclude HlsProgramDateTime = "INCLUDE"
)

Enum values for HlsProgramDateTime

func (HlsProgramDateTime) MarshalValue

func (enum HlsProgramDateTime) MarshalValue() (string, error)

func (HlsProgramDateTime) MarshalValueBuf

func (enum HlsProgramDateTime) MarshalValueBuf(b []byte) ([]byte, error)

type HlsSegmentationMode

type HlsSegmentationMode string
const (
	HlsSegmentationModeUseInputSegmentation HlsSegmentationMode = "USE_INPUT_SEGMENTATION"
	HlsSegmentationModeUseSegmentDuration   HlsSegmentationMode = "USE_SEGMENT_DURATION"
)

Enum values for HlsSegmentationMode

func (HlsSegmentationMode) MarshalValue

func (enum HlsSegmentationMode) MarshalValue() (string, error)

func (HlsSegmentationMode) MarshalValueBuf

func (enum HlsSegmentationMode) MarshalValueBuf(b []byte) ([]byte, error)

type HlsSettings

type HlsSettings struct {
	AudioOnlyHlsSettings *AudioOnlyHlsSettings `locationName:"audioOnlyHlsSettings" type:"structure"`

	StandardHlsSettings *StandardHlsSettings `locationName:"standardHlsSettings" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/HlsSettings

func (HlsSettings) GoString

func (s HlsSettings) GoString() string

GoString returns the string representation

func (HlsSettings) MarshalFields

func (s HlsSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (HlsSettings) String

func (s HlsSettings) String() string

String returns the string representation

type HlsStreamInfResolution

type HlsStreamInfResolution string
const (
	HlsStreamInfResolutionExclude HlsStreamInfResolution = "EXCLUDE"
	HlsStreamInfResolutionInclude HlsStreamInfResolution = "INCLUDE"
)

Enum values for HlsStreamInfResolution

func (HlsStreamInfResolution) MarshalValue

func (enum HlsStreamInfResolution) MarshalValue() (string, error)

func (HlsStreamInfResolution) MarshalValueBuf

func (enum HlsStreamInfResolution) MarshalValueBuf(b []byte) ([]byte, error)

type HlsTimedMetadataId3Frame

type HlsTimedMetadataId3Frame string
const (
	HlsTimedMetadataId3FrameNone HlsTimedMetadataId3Frame = "NONE"
	HlsTimedMetadataId3FramePriv HlsTimedMetadataId3Frame = "PRIV"
	HlsTimedMetadataId3FrameTdrl HlsTimedMetadataId3Frame = "TDRL"
)

Enum values for HlsTimedMetadataId3Frame

func (HlsTimedMetadataId3Frame) MarshalValue

func (enum HlsTimedMetadataId3Frame) MarshalValue() (string, error)

func (HlsTimedMetadataId3Frame) MarshalValueBuf

func (enum HlsTimedMetadataId3Frame) MarshalValueBuf(b []byte) ([]byte, error)

type HlsTsFileMode

type HlsTsFileMode string
const (
	HlsTsFileModeSegmentedFiles HlsTsFileMode = "SEGMENTED_FILES"
	HlsTsFileModeSingleFile     HlsTsFileMode = "SINGLE_FILE"
)

Enum values for HlsTsFileMode

func (HlsTsFileMode) MarshalValue

func (enum HlsTsFileMode) MarshalValue() (string, error)

func (HlsTsFileMode) MarshalValueBuf

func (enum HlsTsFileMode) MarshalValueBuf(b []byte) ([]byte, error)

type HlsWebdavHttpTransferMode

type HlsWebdavHttpTransferMode string
const (
	HlsWebdavHttpTransferModeChunked    HlsWebdavHttpTransferMode = "CHUNKED"
	HlsWebdavHttpTransferModeNonChunked HlsWebdavHttpTransferMode = "NON_CHUNKED"
)

Enum values for HlsWebdavHttpTransferMode

func (HlsWebdavHttpTransferMode) MarshalValue

func (enum HlsWebdavHttpTransferMode) MarshalValue() (string, error)

func (HlsWebdavHttpTransferMode) MarshalValueBuf

func (enum HlsWebdavHttpTransferMode) MarshalValueBuf(b []byte) ([]byte, error)

type HlsWebdavSettings

type HlsWebdavSettings struct {

	// Number of seconds to wait before retrying connection to the CDN if the connection
	// is lost.
	ConnectionRetryInterval *int64 `locationName:"connectionRetryInterval" type:"integer"`

	// Size in seconds of file cache for streaming outputs.
	FilecacheDuration *int64 `locationName:"filecacheDuration" type:"integer"`

	// Specify whether or not to use chunked transfer encoding to WebDAV.
	HttpTransferMode HlsWebdavHttpTransferMode `locationName:"httpTransferMode" type:"string" enum:"true"`

	// Number of retry attempts that will be made before the Live Event is put into
	// an error state.
	NumRetries *int64 `locationName:"numRetries" type:"integer"`

	// If a streaming output fails, number of seconds to wait until a restart is
	// initiated. A value of 0 means never restart.
	RestartDelay *int64 `locationName:"restartDelay" type:"integer"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/HlsWebdavSettings

func (HlsWebdavSettings) GoString

func (s HlsWebdavSettings) GoString() string

GoString returns the string representation

func (HlsWebdavSettings) MarshalFields

func (s HlsWebdavSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (HlsWebdavSettings) String

func (s HlsWebdavSettings) String() string

String returns the string representation

type Input

type Input struct {

	// The Unique ARN of the input (generated, immutable).
	Arn *string `locationName:"arn" type:"string"`

	// A list of channel IDs that that input is attached to (currently an input
	// can only be attached to one channel).
	AttachedChannels []string `locationName:"attachedChannels" type:"list"`

	// A list of the destinations of the input (PUSH-type).
	Destinations []InputDestination `locationName:"destinations" type:"list"`

	// The generated ID of the input (unique for user account, immutable).
	Id *string `locationName:"id" type:"string"`

	// The user-assigned name (This is a mutable value).
	Name *string `locationName:"name" type:"string"`

	// A list of IDs for all the security groups attached to the input.
	SecurityGroups []string `locationName:"securityGroups" type:"list"`

	// A list of the sources of the input (PULL-type).
	Sources []InputSource `locationName:"sources" type:"list"`

	State InputState `locationName:"state" type:"string" enum:"true"`

	Type InputType `locationName:"type" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Input

func (Input) GoString

func (s Input) GoString() string

GoString returns the string representation

func (Input) MarshalFields

func (s Input) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (Input) String

func (s Input) String() string

String returns the string representation

type InputAttachment

type InputAttachment struct {

	// The ID of the input
	InputId *string `locationName:"inputId" type:"string"`

	// Settings of an input (caption selector, etc.)
	InputSettings *InputSettings `locationName:"inputSettings" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputAttachment

func (InputAttachment) GoString

func (s InputAttachment) GoString() string

GoString returns the string representation

func (InputAttachment) MarshalFields

func (s InputAttachment) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (InputAttachment) String

func (s InputAttachment) String() string

String returns the string representation

type InputChannelLevel

type InputChannelLevel struct {

	// Remixing value. Units are in dB and acceptable values are within the range
	// from -60 (mute) and 6 dB.
	Gain *int64 `locationName:"gain" type:"integer"`

	// The index of the input channel used as a source.
	InputChannel *int64 `locationName:"inputChannel" type:"integer"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputChannelLevel

func (InputChannelLevel) GoString

func (s InputChannelLevel) GoString() string

GoString returns the string representation

func (InputChannelLevel) MarshalFields

func (s InputChannelLevel) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (InputChannelLevel) String

func (s InputChannelLevel) String() string

String returns the string representation

type InputCodec

type InputCodec string

codec in increasing order of complexity

const (
	InputCodecMpeg2 InputCodec = "MPEG2"
	InputCodecAvc   InputCodec = "AVC"
	InputCodecHevc  InputCodec = "HEVC"
)

Enum values for InputCodec

func (InputCodec) MarshalValue

func (enum InputCodec) MarshalValue() (string, error)

func (InputCodec) MarshalValueBuf

func (enum InputCodec) MarshalValueBuf(b []byte) ([]byte, error)

type InputDeblockFilter

type InputDeblockFilter string
const (
	InputDeblockFilterDisabled InputDeblockFilter = "DISABLED"
	InputDeblockFilterEnabled  InputDeblockFilter = "ENABLED"
)

Enum values for InputDeblockFilter

func (InputDeblockFilter) MarshalValue

func (enum InputDeblockFilter) MarshalValue() (string, error)

func (InputDeblockFilter) MarshalValueBuf

func (enum InputDeblockFilter) MarshalValueBuf(b []byte) ([]byte, error)

type InputDenoiseFilter

type InputDenoiseFilter string
const (
	InputDenoiseFilterDisabled InputDenoiseFilter = "DISABLED"
	InputDenoiseFilterEnabled  InputDenoiseFilter = "ENABLED"
)

Enum values for InputDenoiseFilter

func (InputDenoiseFilter) MarshalValue

func (enum InputDenoiseFilter) MarshalValue() (string, error)

func (InputDenoiseFilter) MarshalValueBuf

func (enum InputDenoiseFilter) MarshalValueBuf(b []byte) ([]byte, error)

type InputDestination

type InputDestination struct {

	// The system-generated static IP address of endpoint.It remains fixed for the
	// lifetime of the input.
	Ip *string `locationName:"ip" type:"string"`

	// The port number for the input.
	Port *string `locationName:"port" type:"string"`

	// This represents the endpoint that the customer stream will bepushed to.
	Url *string `locationName:"url" type:"string"`
	// contains filtered or unexported fields
}

The settings for a PUSH type input. Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputDestination

func (InputDestination) GoString

func (s InputDestination) GoString() string

GoString returns the string representation

func (InputDestination) MarshalFields

func (s InputDestination) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (InputDestination) String

func (s InputDestination) String() string

String returns the string representation

type InputDestinationRequest

type InputDestinationRequest struct {

	// A unique name for the location the RTMP stream is being pushedto.
	StreamName *string `locationName:"streamName" type:"string"`
	// contains filtered or unexported fields
}

Endpoint settings for a PUSH type input. Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputDestinationRequest

func (InputDestinationRequest) GoString

func (s InputDestinationRequest) GoString() string

GoString returns the string representation

func (InputDestinationRequest) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (InputDestinationRequest) String

func (s InputDestinationRequest) String() string

String returns the string representation

type InputFilter

type InputFilter string
const (
	InputFilterAuto     InputFilter = "AUTO"
	InputFilterDisabled InputFilter = "DISABLED"
	InputFilterForced   InputFilter = "FORCED"
)

Enum values for InputFilter

func (InputFilter) MarshalValue

func (enum InputFilter) MarshalValue() (string, error)

func (InputFilter) MarshalValueBuf

func (enum InputFilter) MarshalValueBuf(b []byte) ([]byte, error)

type InputLocation

type InputLocation struct {

	// key used to extract the password from EC2 Parameter store
	PasswordParam *string `locationName:"passwordParam" type:"string"`

	// Uniform Resource Identifier - This should be a path to a file accessible
	// to the Live system (eg. a http:// URI) depending on the output type. For
	// example, a rtmpEndpoint should have a uri simliar to: "rtmp://fmsserver/live".
	Uri *string `locationName:"uri" type:"string"`

	// Username if credentials are required to access a file or publishing point.
	// This can be either a plaintext username, or a reference to an AWS parameter
	// store name from which the username can be retrieved. AWS Parameter store
	// format: "ssm://"
	Username *string `locationName:"username" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputLocation

func (InputLocation) GoString

func (s InputLocation) GoString() string

GoString returns the string representation

func (InputLocation) MarshalFields

func (s InputLocation) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (InputLocation) String

func (s InputLocation) String() string

String returns the string representation

type InputLossActionForHlsOut

type InputLossActionForHlsOut string
const (
	InputLossActionForHlsOutEmitOutput  InputLossActionForHlsOut = "EMIT_OUTPUT"
	InputLossActionForHlsOutPauseOutput InputLossActionForHlsOut = "PAUSE_OUTPUT"
)

Enum values for InputLossActionForHlsOut

func (InputLossActionForHlsOut) MarshalValue

func (enum InputLossActionForHlsOut) MarshalValue() (string, error)

func (InputLossActionForHlsOut) MarshalValueBuf

func (enum InputLossActionForHlsOut) MarshalValueBuf(b []byte) ([]byte, error)

type InputLossActionForMsSmoothOut

type InputLossActionForMsSmoothOut string
const (
	InputLossActionForMsSmoothOutEmitOutput  InputLossActionForMsSmoothOut = "EMIT_OUTPUT"
	InputLossActionForMsSmoothOutPauseOutput InputLossActionForMsSmoothOut = "PAUSE_OUTPUT"
)

Enum values for InputLossActionForMsSmoothOut

func (InputLossActionForMsSmoothOut) MarshalValue

func (enum InputLossActionForMsSmoothOut) MarshalValue() (string, error)

func (InputLossActionForMsSmoothOut) MarshalValueBuf

func (enum InputLossActionForMsSmoothOut) MarshalValueBuf(b []byte) ([]byte, error)

type InputLossActionForUdpOut

type InputLossActionForUdpOut string
const (
	InputLossActionForUdpOutDropProgram InputLossActionForUdpOut = "DROP_PROGRAM"
	InputLossActionForUdpOutDropTs      InputLossActionForUdpOut = "DROP_TS"
	InputLossActionForUdpOutEmitProgram InputLossActionForUdpOut = "EMIT_PROGRAM"
)

Enum values for InputLossActionForUdpOut

func (InputLossActionForUdpOut) MarshalValue

func (enum InputLossActionForUdpOut) MarshalValue() (string, error)

func (InputLossActionForUdpOut) MarshalValueBuf

func (enum InputLossActionForUdpOut) MarshalValueBuf(b []byte) ([]byte, error)

type InputLossBehavior

type InputLossBehavior struct {

	// On input loss, the number of milliseconds to substitute black into the output
	// before switching to the frame specified by inputLossImageType. A value x,
	// where 0 <= x <= 1,000,000 and a value of 1,000,000 will be interpreted as
	// infinite.
	BlackFrameMsec *int64 `locationName:"blackFrameMsec" type:"integer"`

	// When input loss image type is "color" this field specifies the color to use.
	// Value: 6 hex characters representing the values of RGB.
	InputLossImageColor *string `locationName:"inputLossImageColor" type:"string"`

	// When input loss image type is "slate" these fields specify the parameters
	// for accessing the slate.
	InputLossImageSlate *InputLocation `locationName:"inputLossImageSlate" type:"structure"`

	// Indicates whether to substitute a solid color or a slate into the output
	// after input loss exceeds blackFrameMsec.
	InputLossImageType InputLossImageType `locationName:"inputLossImageType" type:"string" enum:"true"`

	// On input loss, the number of milliseconds to repeat the previous picture
	// before substituting black into the output. A value x, where 0 <= x <= 1,000,000
	// and a value of 1,000,000 will be interpreted as infinite.
	RepeatFrameMsec *int64 `locationName:"repeatFrameMsec" type:"integer"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputLossBehavior

func (InputLossBehavior) GoString

func (s InputLossBehavior) GoString() string

GoString returns the string representation

func (InputLossBehavior) MarshalFields

func (s InputLossBehavior) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (InputLossBehavior) String

func (s InputLossBehavior) String() string

String returns the string representation

type InputLossImageType

type InputLossImageType string
const (
	InputLossImageTypeColor InputLossImageType = "COLOR"
	InputLossImageTypeSlate InputLossImageType = "SLATE"
)

Enum values for InputLossImageType

func (InputLossImageType) MarshalValue

func (enum InputLossImageType) MarshalValue() (string, error)

func (InputLossImageType) MarshalValueBuf

func (enum InputLossImageType) MarshalValueBuf(b []byte) ([]byte, error)

type InputMaximumBitrate

type InputMaximumBitrate string

Maximum input bitrate in megabits per second. Bitrates up to 50 Mbps are supported currently.

const (
	InputMaximumBitrateMax10Mbps InputMaximumBitrate = "MAX_10_MBPS"
	InputMaximumBitrateMax20Mbps InputMaximumBitrate = "MAX_20_MBPS"
	InputMaximumBitrateMax50Mbps InputMaximumBitrate = "MAX_50_MBPS"
)

Enum values for InputMaximumBitrate

func (InputMaximumBitrate) MarshalValue

func (enum InputMaximumBitrate) MarshalValue() (string, error)

func (InputMaximumBitrate) MarshalValueBuf

func (enum InputMaximumBitrate) MarshalValueBuf(b []byte) ([]byte, error)

type InputResolution

type InputResolution string

Input resolution based on lines of vertical resolution in the input; SD is less than 720 lines, HD is 720 to 1080 lines, UHD is greater than 1080 lines

const (
	InputResolutionSd  InputResolution = "SD"
	InputResolutionHd  InputResolution = "HD"
	InputResolutionUhd InputResolution = "UHD"
)

Enum values for InputResolution

func (InputResolution) MarshalValue

func (enum InputResolution) MarshalValue() (string, error)

func (InputResolution) MarshalValueBuf

func (enum InputResolution) MarshalValueBuf(b []byte) ([]byte, error)

type InputSecurityGroup

type InputSecurityGroup struct {

	// Unique ARN of Input Security Group
	Arn *string `locationName:"arn" type:"string"`

	// The Id of the Input Security Group
	Id *string `locationName:"id" type:"string"`

	// Whitelist rules and their sync status
	WhitelistRules []InputWhitelistRule `locationName:"whitelistRules" type:"list"`
	// contains filtered or unexported fields
}

An Input Security Group Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputSecurityGroup

func (InputSecurityGroup) GoString

func (s InputSecurityGroup) GoString() string

GoString returns the string representation

func (InputSecurityGroup) MarshalFields

func (s InputSecurityGroup) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (InputSecurityGroup) String

func (s InputSecurityGroup) String() string

String returns the string representation

type InputSettings

type InputSettings struct {

	// Used to select the audio stream to decode for inputs that have multiple available.
	AudioSelectors []AudioSelector `locationName:"audioSelectors" type:"list"`

	// Used to select the caption input to use for inputs that have multiple available.
	CaptionSelectors []CaptionSelector `locationName:"captionSelectors" type:"list"`

	// Enable or disable the deblock filter when filtering.
	DeblockFilter InputDeblockFilter `locationName:"deblockFilter" type:"string" enum:"true"`

	// Enable or disable the denoise filter when filtering.
	DenoiseFilter InputDenoiseFilter `locationName:"denoiseFilter" type:"string" enum:"true"`

	// Adjusts the magnitude of filtering from 1 (minimal) to 5 (strongest).
	FilterStrength *int64 `locationName:"filterStrength" type:"integer"`

	// Turns on the filter for this input. MPEG-2 inputs have the deblocking filter
	// enabled by default.1) auto - filtering will be applied depending on input
	// type/quality2) disabled - no filtering will be applied to the input3) forced
	// - filtering will be applied regardless of input type
	InputFilter InputFilter `locationName:"inputFilter" type:"string" enum:"true"`

	// Input settings.
	NetworkInputSettings *NetworkInputSettings `locationName:"networkInputSettings" type:"structure"`

	// Loop input if it is a file. This allows a file input to be streamed indefinitely.
	SourceEndBehavior InputSourceEndBehavior `locationName:"sourceEndBehavior" type:"string" enum:"true"`

	// Informs which video elementary stream to decode for input types that have
	// multiple available.
	VideoSelector *VideoSelector `locationName:"videoSelector" type:"structure"`
	// contains filtered or unexported fields
}

Live Event input parameters. There can be multiple inputs in a single Live Event. Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputSettings

func (InputSettings) GoString

func (s InputSettings) GoString() string

GoString returns the string representation

func (InputSettings) MarshalFields

func (s InputSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (InputSettings) String

func (s InputSettings) String() string

String returns the string representation

type InputSource

type InputSource struct {

	// The key used to extract the password from EC2 Parameter store.
	PasswordParam *string `locationName:"passwordParam" type:"string"`

	// This represents the customer's source URL where stream ispulled from.
	Url *string `locationName:"url" type:"string"`

	// The username for the input source.
	Username *string `locationName:"username" type:"string"`
	// contains filtered or unexported fields
}

The settings for a PULL type input. Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputSource

func (InputSource) GoString

func (s InputSource) GoString() string

GoString returns the string representation

func (InputSource) MarshalFields

func (s InputSource) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (InputSource) String

func (s InputSource) String() string

String returns the string representation

type InputSourceEndBehavior

type InputSourceEndBehavior string
const (
	InputSourceEndBehaviorContinue InputSourceEndBehavior = "CONTINUE"
	InputSourceEndBehaviorLoop     InputSourceEndBehavior = "LOOP"
)

Enum values for InputSourceEndBehavior

func (InputSourceEndBehavior) MarshalValue

func (enum InputSourceEndBehavior) MarshalValue() (string, error)

func (InputSourceEndBehavior) MarshalValueBuf

func (enum InputSourceEndBehavior) MarshalValueBuf(b []byte) ([]byte, error)

type InputSourceRequest

type InputSourceRequest struct {

	// The key used to extract the password from EC2 Parameter store.
	PasswordParam *string `locationName:"passwordParam" type:"string"`

	// This represents the customer's source URL where stream ispulled from.
	Url *string `locationName:"url" type:"string"`

	// The username for the input source.
	Username *string `locationName:"username" type:"string"`
	// contains filtered or unexported fields
}

Settings for for a PULL type input. Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputSourceRequest

func (InputSourceRequest) GoString

func (s InputSourceRequest) GoString() string

GoString returns the string representation

func (InputSourceRequest) MarshalFields

func (s InputSourceRequest) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (InputSourceRequest) String

func (s InputSourceRequest) String() string

String returns the string representation

type InputSpecification

type InputSpecification struct {

	// Input codec
	Codec InputCodec `locationName:"codec" type:"string" enum:"true"`

	// Maximum input bitrate, categorized coarsely
	MaximumBitrate InputMaximumBitrate `locationName:"maximumBitrate" type:"string" enum:"true"`

	// Input resolution, categorized coarsely
	Resolution InputResolution `locationName:"resolution" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputSpecification

func (InputSpecification) GoString

func (s InputSpecification) GoString() string

GoString returns the string representation

func (InputSpecification) MarshalFields

func (s InputSpecification) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (InputSpecification) String

func (s InputSpecification) String() string

String returns the string representation

type InputState

type InputState string
const (
	InputStateCreating InputState = "CREATING"
	InputStateDetached InputState = "DETACHED"
	InputStateAttached InputState = "ATTACHED"
	InputStateDeleting InputState = "DELETING"
	InputStateDeleted  InputState = "DELETED"
)

Enum values for InputState

func (InputState) MarshalValue

func (enum InputState) MarshalValue() (string, error)

func (InputState) MarshalValueBuf

func (enum InputState) MarshalValueBuf(b []byte) ([]byte, error)

type InputType

type InputType string
const (
	InputTypeUdpPush  InputType = "UDP_PUSH"
	InputTypeRtpPush  InputType = "RTP_PUSH"
	InputTypeRtmpPush InputType = "RTMP_PUSH"
	InputTypeRtmpPull InputType = "RTMP_PULL"
	InputTypeUrlPull  InputType = "URL_PULL"
)

Enum values for InputType

func (InputType) MarshalValue

func (enum InputType) MarshalValue() (string, error)

func (InputType) MarshalValueBuf

func (enum InputType) MarshalValueBuf(b []byte) ([]byte, error)

type InputWhitelistRule

type InputWhitelistRule struct {

	// The IPv4 CIDR that's whitelisted.
	Cidr *string `locationName:"cidr" type:"string"`
	// contains filtered or unexported fields
}

Whitelist rule Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputWhitelistRule

func (InputWhitelistRule) GoString

func (s InputWhitelistRule) GoString() string

GoString returns the string representation

func (InputWhitelistRule) MarshalFields

func (s InputWhitelistRule) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (InputWhitelistRule) String

func (s InputWhitelistRule) String() string

String returns the string representation

type InputWhitelistRuleCidr

type InputWhitelistRuleCidr struct {

	// The IPv4 CIDR to whitelist
	Cidr *string `locationName:"cidr" type:"string"`
	// contains filtered or unexported fields
}

An IPv4 CIDR to whitelist. Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputWhitelistRuleCidr

func (InputWhitelistRuleCidr) GoString

func (s InputWhitelistRuleCidr) GoString() string

GoString returns the string representation

func (InputWhitelistRuleCidr) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (InputWhitelistRuleCidr) String

func (s InputWhitelistRuleCidr) String() string

String returns the string representation

type KeyProviderSettings

type KeyProviderSettings struct {
	StaticKeySettings *StaticKeySettings `locationName:"staticKeySettings" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/KeyProviderSettings

func (KeyProviderSettings) GoString

func (s KeyProviderSettings) GoString() string

GoString returns the string representation

func (KeyProviderSettings) MarshalFields

func (s KeyProviderSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (KeyProviderSettings) String

func (s KeyProviderSettings) String() string

String returns the string representation

type ListChannelsInput

type ListChannelsInput struct {
	MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"`

	NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListChannelsRequest

func (ListChannelsInput) GoString

func (s ListChannelsInput) GoString() string

GoString returns the string representation

func (ListChannelsInput) MarshalFields

func (s ListChannelsInput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (ListChannelsInput) String

func (s ListChannelsInput) String() string

String returns the string representation

func (*ListChannelsInput) Validate

func (s *ListChannelsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListChannelsOutput

type ListChannelsOutput struct {
	Channels []ChannelSummary `locationName:"channels" type:"list"`

	NextToken *string `locationName:"nextToken" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListChannelsResponse

func (ListChannelsOutput) GoString

func (s ListChannelsOutput) GoString() string

GoString returns the string representation

func (ListChannelsOutput) MarshalFields

func (s ListChannelsOutput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (ListChannelsOutput) SDKResponseMetadata

func (s ListChannelsOutput) SDKResponseMetadata() aws.Response

SDKResponseMetdata return sthe response metadata for the API.

func (ListChannelsOutput) String

func (s ListChannelsOutput) String() string

String returns the string representation

type ListChannelsPager

type ListChannelsPager struct {
	aws.Pager
}

ListChannelsPager is used to paginate the request. This can be done by calling Next and CurrentPage.

func (*ListChannelsPager) CurrentPage

func (p *ListChannelsPager) CurrentPage() *ListChannelsOutput

type ListChannelsRequest

type ListChannelsRequest struct {
	*aws.Request
	Input *ListChannelsInput
	Copy  func(*ListChannelsInput) ListChannelsRequest
}

ListChannelsRequest is a API request type for the ListChannels API operation.

func (*ListChannelsRequest) Paginate

func (p *ListChannelsRequest) Paginate(opts ...aws.Option) ListChannelsPager

Paginate pages iterates over the pages of a ListChannelsRequest operation, calling the Next method for each page. Using the paginators Next method will depict whether or not there are more pages.

Note: This operation can generate multiple requests to a service.

   // Example iterating over at most 3 pages of a ListChannels operation.
		req := client.ListChannelsRequest(input)
		p := req.Paginate()
		for p.Next() {
			page := p.CurrentPage()
		}

		if err := p.Err(); err != nil {
			return err
		}

func (ListChannelsRequest) Send

Send marshals and sends the ListChannels API request.

type ListInputSecurityGroupsInput

type ListInputSecurityGroupsInput struct {
	MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"`

	NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputSecurityGroupsRequest

func (ListInputSecurityGroupsInput) GoString

func (s ListInputSecurityGroupsInput) GoString() string

GoString returns the string representation

func (ListInputSecurityGroupsInput) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (ListInputSecurityGroupsInput) String

String returns the string representation

func (*ListInputSecurityGroupsInput) Validate

func (s *ListInputSecurityGroupsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListInputSecurityGroupsOutput

type ListInputSecurityGroupsOutput struct {
	InputSecurityGroups []InputSecurityGroup `locationName:"inputSecurityGroups" type:"list"`

	NextToken *string `locationName:"nextToken" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputSecurityGroupsResponse

func (ListInputSecurityGroupsOutput) GoString

GoString returns the string representation

func (ListInputSecurityGroupsOutput) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (ListInputSecurityGroupsOutput) SDKResponseMetadata

func (s ListInputSecurityGroupsOutput) SDKResponseMetadata() aws.Response

SDKResponseMetdata return sthe response metadata for the API.

func (ListInputSecurityGroupsOutput) String

String returns the string representation

type ListInputSecurityGroupsPager

type ListInputSecurityGroupsPager struct {
	aws.Pager
}

ListInputSecurityGroupsPager is used to paginate the request. This can be done by calling Next and CurrentPage.

func (*ListInputSecurityGroupsPager) CurrentPage

type ListInputSecurityGroupsRequest

type ListInputSecurityGroupsRequest struct {
	*aws.Request
	Input *ListInputSecurityGroupsInput
	Copy  func(*ListInputSecurityGroupsInput) ListInputSecurityGroupsRequest
}

ListInputSecurityGroupsRequest is a API request type for the ListInputSecurityGroups API operation.

func (*ListInputSecurityGroupsRequest) Paginate

Paginate pages iterates over the pages of a ListInputSecurityGroupsRequest operation, calling the Next method for each page. Using the paginators Next method will depict whether or not there are more pages.

Note: This operation can generate multiple requests to a service.

   // Example iterating over at most 3 pages of a ListInputSecurityGroups operation.
		req := client.ListInputSecurityGroupsRequest(input)
		p := req.Paginate()
		for p.Next() {
			page := p.CurrentPage()
		}

		if err := p.Err(); err != nil {
			return err
		}

func (ListInputSecurityGroupsRequest) Send

Send marshals and sends the ListInputSecurityGroups API request.

type ListInputsInput

type ListInputsInput struct {
	MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"`

	NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputsRequest

func (ListInputsInput) GoString

func (s ListInputsInput) GoString() string

GoString returns the string representation

func (ListInputsInput) MarshalFields

func (s ListInputsInput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (ListInputsInput) String

func (s ListInputsInput) String() string

String returns the string representation

func (*ListInputsInput) Validate

func (s *ListInputsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListInputsOutput

type ListInputsOutput struct {
	Inputs []Input `locationName:"inputs" type:"list"`

	NextToken *string `locationName:"nextToken" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputsResponse

func (ListInputsOutput) GoString

func (s ListInputsOutput) GoString() string

GoString returns the string representation

func (ListInputsOutput) MarshalFields

func (s ListInputsOutput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (ListInputsOutput) SDKResponseMetadata

func (s ListInputsOutput) SDKResponseMetadata() aws.Response

SDKResponseMetdata return sthe response metadata for the API.

func (ListInputsOutput) String

func (s ListInputsOutput) String() string

String returns the string representation

type ListInputsPager

type ListInputsPager struct {
	aws.Pager
}

ListInputsPager is used to paginate the request. This can be done by calling Next and CurrentPage.

func (*ListInputsPager) CurrentPage

func (p *ListInputsPager) CurrentPage() *ListInputsOutput

type ListInputsRequest

type ListInputsRequest struct {
	*aws.Request
	Input *ListInputsInput
	Copy  func(*ListInputsInput) ListInputsRequest
}

ListInputsRequest is a API request type for the ListInputs API operation.

func (*ListInputsRequest) Paginate

func (p *ListInputsRequest) Paginate(opts ...aws.Option) ListInputsPager

Paginate pages iterates over the pages of a ListInputsRequest operation, calling the Next method for each page. Using the paginators Next method will depict whether or not there are more pages.

Note: This operation can generate multiple requests to a service.

   // Example iterating over at most 3 pages of a ListInputs operation.
		req := client.ListInputsRequest(input)
		p := req.Paginate()
		for p.Next() {
			page := p.CurrentPage()
		}

		if err := p.Err(); err != nil {
			return err
		}

func (ListInputsRequest) Send

Send marshals and sends the ListInputs API request.

type M2tsAbsentInputAudioBehavior

type M2tsAbsentInputAudioBehavior string
const (
	M2tsAbsentInputAudioBehaviorDrop          M2tsAbsentInputAudioBehavior = "DROP"
	M2tsAbsentInputAudioBehaviorEncodeSilence M2tsAbsentInputAudioBehavior = "ENCODE_SILENCE"
)

Enum values for M2tsAbsentInputAudioBehavior

func (M2tsAbsentInputAudioBehavior) MarshalValue

func (enum M2tsAbsentInputAudioBehavior) MarshalValue() (string, error)

func (M2tsAbsentInputAudioBehavior) MarshalValueBuf

func (enum M2tsAbsentInputAudioBehavior) MarshalValueBuf(b []byte) ([]byte, error)

type M2tsArib

type M2tsArib string
const (
	M2tsAribDisabled M2tsArib = "DISABLED"
	M2tsAribEnabled  M2tsArib = "ENABLED"
)

Enum values for M2tsArib

func (M2tsArib) MarshalValue

func (enum M2tsArib) MarshalValue() (string, error)

func (M2tsArib) MarshalValueBuf

func (enum M2tsArib) MarshalValueBuf(b []byte) ([]byte, error)

type M2tsAribCaptionsPidControl

type M2tsAribCaptionsPidControl string
const (
	M2tsAribCaptionsPidControlAuto          M2tsAribCaptionsPidControl = "AUTO"
	M2tsAribCaptionsPidControlUseConfigured M2tsAribCaptionsPidControl = "USE_CONFIGURED"
)

Enum values for M2tsAribCaptionsPidControl

func (M2tsAribCaptionsPidControl) MarshalValue

func (enum M2tsAribCaptionsPidControl) MarshalValue() (string, error)

func (M2tsAribCaptionsPidControl) MarshalValueBuf

func (enum M2tsAribCaptionsPidControl) MarshalValueBuf(b []byte) ([]byte, error)

type M2tsAudioBufferModel

type M2tsAudioBufferModel string
const (
	M2tsAudioBufferModelAtsc M2tsAudioBufferModel = "ATSC"
	M2tsAudioBufferModelDvb  M2tsAudioBufferModel = "DVB"
)

Enum values for M2tsAudioBufferModel

func (M2tsAudioBufferModel) MarshalValue

func (enum M2tsAudioBufferModel) MarshalValue() (string, error)

func (M2tsAudioBufferModel) MarshalValueBuf

func (enum M2tsAudioBufferModel) MarshalValueBuf(b []byte) ([]byte, error)

type M2tsAudioInterval

type M2tsAudioInterval string
const (
	M2tsAudioIntervalVideoAndFixedIntervals M2tsAudioInterval = "VIDEO_AND_FIXED_INTERVALS"
	M2tsAudioIntervalVideoInterval          M2tsAudioInterval = "VIDEO_INTERVAL"
)

Enum values for M2tsAudioInterval

func (M2tsAudioInterval) MarshalValue

func (enum M2tsAudioInterval) MarshalValue() (string, error)

func (M2tsAudioInterval) MarshalValueBuf

func (enum M2tsAudioInterval) MarshalValueBuf(b []byte) ([]byte, error)

type M2tsAudioStreamType

type M2tsAudioStreamType string
const (
	M2tsAudioStreamTypeAtsc M2tsAudioStreamType = "ATSC"
	M2tsAudioStreamTypeDvb  M2tsAudioStreamType = "DVB"
)

Enum values for M2tsAudioStreamType

func (M2tsAudioStreamType) MarshalValue

func (enum M2tsAudioStreamType) MarshalValue() (string, error)

func (M2tsAudioStreamType) MarshalValueBuf

func (enum M2tsAudioStreamType) MarshalValueBuf(b []byte) ([]byte, error)

type M2tsBufferModel

type M2tsBufferModel string
const (
	M2tsBufferModelMultiplex M2tsBufferModel = "MULTIPLEX"
	M2tsBufferModelNone      M2tsBufferModel = "NONE"
)

Enum values for M2tsBufferModel

func (M2tsBufferModel) MarshalValue

func (enum M2tsBufferModel) MarshalValue() (string, error)

func (M2tsBufferModel) MarshalValueBuf

func (enum M2tsBufferModel) MarshalValueBuf(b []byte) ([]byte, error)

type M2tsCcDescriptor

type M2tsCcDescriptor string
const (
	M2tsCcDescriptorDisabled M2tsCcDescriptor = "DISABLED"
	M2tsCcDescriptorEnabled  M2tsCcDescriptor = "ENABLED"
)

Enum values for M2tsCcDescriptor

func (M2tsCcDescriptor) MarshalValue

func (enum M2tsCcDescriptor) MarshalValue() (string, error)

func (M2tsCcDescriptor) MarshalValueBuf

func (enum M2tsCcDescriptor) MarshalValueBuf(b []byte) ([]byte, error)

type M2tsEbifControl

type M2tsEbifControl string
const (
	M2tsEbifControlNone        M2tsEbifControl = "NONE"
	M2tsEbifControlPassthrough M2tsEbifControl = "PASSTHROUGH"
)

Enum values for M2tsEbifControl

func (M2tsEbifControl) MarshalValue

func (enum M2tsEbifControl) MarshalValue() (string, error)

func (M2tsEbifControl) MarshalValueBuf

func (enum M2tsEbifControl) MarshalValueBuf(b []byte) ([]byte, error)

type M2tsEbpPlacement

type M2tsEbpPlacement string
const (
	M2tsEbpPlacementVideoAndAudioPids M2tsEbpPlacement = "VIDEO_AND_AUDIO_PIDS"
	M2tsEbpPlacementVideoPid          M2tsEbpPlacement = "VIDEO_PID"
)

Enum values for M2tsEbpPlacement

func (M2tsEbpPlacement) MarshalValue

func (enum M2tsEbpPlacement) MarshalValue() (string, error)

func (M2tsEbpPlacement) MarshalValueBuf

func (enum M2tsEbpPlacement) MarshalValueBuf(b []byte) ([]byte, error)

type M2tsEsRateInPes

type M2tsEsRateInPes string
const (
	M2tsEsRateInPesExclude M2tsEsRateInPes = "EXCLUDE"
	M2tsEsRateInPesInclude M2tsEsRateInPes = "INCLUDE"
)

Enum values for M2tsEsRateInPes

func (M2tsEsRateInPes) MarshalValue

func (enum M2tsEsRateInPes) MarshalValue() (string, error)

func (M2tsEsRateInPes) MarshalValueBuf

func (enum M2tsEsRateInPes) MarshalValueBuf(b []byte) ([]byte, error)

type M2tsKlv

type M2tsKlv string
const (
	M2tsKlvNone        M2tsKlv = "NONE"
	M2tsKlvPassthrough M2tsKlv = "PASSTHROUGH"
)

Enum values for M2tsKlv

func (M2tsKlv) MarshalValue

func (enum M2tsKlv) MarshalValue() (string, error)

func (M2tsKlv) MarshalValueBuf

func (enum M2tsKlv) MarshalValueBuf(b []byte) ([]byte, error)

type M2tsPcrControl

type M2tsPcrControl string
const (
	M2tsPcrControlConfiguredPcrPeriod M2tsPcrControl = "CONFIGURED_PCR_PERIOD"
	M2tsPcrControlPcrEveryPesPacket   M2tsPcrControl = "PCR_EVERY_PES_PACKET"
)

Enum values for M2tsPcrControl

func (M2tsPcrControl) MarshalValue

func (enum M2tsPcrControl) MarshalValue() (string, error)

func (M2tsPcrControl) MarshalValueBuf

func (enum M2tsPcrControl) MarshalValueBuf(b []byte) ([]byte, error)

type M2tsRateMode

type M2tsRateMode string
const (
	M2tsRateModeCbr M2tsRateMode = "CBR"
	M2tsRateModeVbr M2tsRateMode = "VBR"
)

Enum values for M2tsRateMode

func (M2tsRateMode) MarshalValue

func (enum M2tsRateMode) MarshalValue() (string, error)

func (M2tsRateMode) MarshalValueBuf

func (enum M2tsRateMode) MarshalValueBuf(b []byte) ([]byte, error)

type M2tsScte35Control

type M2tsScte35Control string
const (
	M2tsScte35ControlNone        M2tsScte35Control = "NONE"
	M2tsScte35ControlPassthrough M2tsScte35Control = "PASSTHROUGH"
)

Enum values for M2tsScte35Control

func (M2tsScte35Control) MarshalValue

func (enum M2tsScte35Control) MarshalValue() (string, error)

func (M2tsScte35Control) MarshalValueBuf

func (enum M2tsScte35Control) MarshalValueBuf(b []byte) ([]byte, error)

type M2tsSegmentationMarkers

type M2tsSegmentationMarkers string
const (
	M2tsSegmentationMarkersEbp         M2tsSegmentationMarkers = "EBP"
	M2tsSegmentationMarkersEbpLegacy   M2tsSegmentationMarkers = "EBP_LEGACY"
	M2tsSegmentationMarkersNone        M2tsSegmentationMarkers = "NONE"
	M2tsSegmentationMarkersPsiSegstart M2tsSegmentationMarkers = "PSI_SEGSTART"
	M2tsSegmentationMarkersRaiAdapt    M2tsSegmentationMarkers = "RAI_ADAPT"
	M2tsSegmentationMarkersRaiSegstart M2tsSegmentationMarkers = "RAI_SEGSTART"
)

Enum values for M2tsSegmentationMarkers

func (M2tsSegmentationMarkers) MarshalValue

func (enum M2tsSegmentationMarkers) MarshalValue() (string, error)

func (M2tsSegmentationMarkers) MarshalValueBuf

func (enum M2tsSegmentationMarkers) MarshalValueBuf(b []byte) ([]byte, error)

type M2tsSegmentationStyle

type M2tsSegmentationStyle string
const (
	M2tsSegmentationStyleMaintainCadence M2tsSegmentationStyle = "MAINTAIN_CADENCE"
	M2tsSegmentationStyleResetCadence    M2tsSegmentationStyle = "RESET_CADENCE"
)

Enum values for M2tsSegmentationStyle

func (M2tsSegmentationStyle) MarshalValue

func (enum M2tsSegmentationStyle) MarshalValue() (string, error)

func (M2tsSegmentationStyle) MarshalValueBuf

func (enum M2tsSegmentationStyle) MarshalValueBuf(b []byte) ([]byte, error)

type M2tsSettings

type M2tsSettings struct {

	// When set to drop, output audio streams will be removed from the program if
	// the selected input audio stream is removed from the input. This allows the
	// output audio configuration to dynamically change based on input configuration.
	// If this is set to encodeSilence, all output audio streams will output encoded
	// silence when not connected to an active input stream.
	AbsentInputAudioBehavior M2tsAbsentInputAudioBehavior `locationName:"absentInputAudioBehavior" type:"string" enum:"true"`

	// When set to enabled, uses ARIB-compliant field muxing and removes video descriptor.
	Arib M2tsArib `locationName:"arib" type:"string" enum:"true"`

	// Packet Identifier (PID) for ARIB Captions in the transport stream. Can be
	// entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182
	// (or 0x1ff6).
	AribCaptionsPid *string `locationName:"aribCaptionsPid" type:"string"`

	// If set to auto, pid number used for ARIB Captions will be auto-selected from
	// unused pids. If set to useConfigured, ARIB Captions will be on the configured
	// pid number.
	AribCaptionsPidControl M2tsAribCaptionsPidControl `locationName:"aribCaptionsPidControl" type:"string" enum:"true"`

	// When set to dvb, uses DVB buffer model for Dolby Digital audio. When set
	// to atsc, the ATSC model is used.
	AudioBufferModel M2tsAudioBufferModel `locationName:"audioBufferModel" type:"string" enum:"true"`

	// The number of audio frames to insert for each PES packet.
	AudioFramesPerPes *int64 `locationName:"audioFramesPerPes" type:"integer"`

	// Packet Identifier (PID) of the elementary audio stream(s) in the transport
	// stream. Multiple values are accepted, and can be entered in ranges and/or
	// by comma separation. Can be entered as decimal or hexadecimal values. Each
	// PID specified must be in the range of 32 (or 0x20)..8182 (or 0x1ff6).
	AudioPids *string `locationName:"audioPids" type:"string"`

	// When set to atsc, uses stream type = 0x81 for AC3 and stream type = 0x87
	// for EAC3. When set to dvb, uses stream type = 0x06.
	AudioStreamType M2tsAudioStreamType `locationName:"audioStreamType" type:"string" enum:"true"`

	// The output bitrate of the transport stream in bits per second. Setting to
	// 0 lets the muxer automatically determine the appropriate bitrate.
	Bitrate *int64 `locationName:"bitrate" type:"integer"`

	// If set to multiplex, use multiplex buffer model for accurate interleaving.
	// Setting to bufferModel to none can lead to lower latency, but low-memory
	// devices may not be able to play back the stream without interruptions.
	BufferModel M2tsBufferModel `locationName:"bufferModel" type:"string" enum:"true"`

	// When set to enabled, generates captionServiceDescriptor in PMT.
	CcDescriptor M2tsCcDescriptor `locationName:"ccDescriptor" type:"string" enum:"true"`

	// Inserts DVB Network Information Table (NIT) at the specified table repetition
	// interval.
	DvbNitSettings *DvbNitSettings `locationName:"dvbNitSettings" type:"structure"`

	// Inserts DVB Service Description Table (SDT) at the specified table repetition
	// interval.
	DvbSdtSettings *DvbSdtSettings `locationName:"dvbSdtSettings" type:"structure"`

	// Packet Identifier (PID) for input source DVB Subtitle data to this output.
	// Multiple values are accepted, and can be entered in ranges and/or by comma
	// separation. Can be entered as decimal or hexadecimal values. Each PID specified
	// must be in the range of 32 (or 0x20)..8182 (or 0x1ff6).
	DvbSubPids *string `locationName:"dvbSubPids" type:"string"`

	// Inserts DVB Time and Date Table (TDT) at the specified table repetition interval.
	DvbTdtSettings *DvbTdtSettings `locationName:"dvbTdtSettings" type:"structure"`

	// Packet Identifier (PID) for input source DVB Teletext data to this output.
	// Can be entered as a decimal or hexadecimal value. Valid values are 32 (or
	// 0x20)..8182 (or 0x1ff6).
	DvbTeletextPid *string `locationName:"dvbTeletextPid" type:"string"`

	// If set to passthrough, passes any EBIF data from the input source to this
	// output.
	Ebif M2tsEbifControl `locationName:"ebif" type:"string" enum:"true"`

	// When videoAndFixedIntervals is selected, audio EBP markers will be added
	// to partitions 3 and 4. The interval between these additional markers will
	// be fixed, and will be slightly shorter than the video EBP marker interval.
	// Only available when EBP Cablelabs segmentation markers are selected. Partitions
	// 1 and 2 will always follow the video interval.
	EbpAudioInterval M2tsAudioInterval `locationName:"ebpAudioInterval" type:"string" enum:"true"`

	// When set, enforces that Encoder Boundary Points do not come within the specified
	// time interval of each other by looking ahead at input video. If another EBP
	// is going to come in within the specified time interval, the current EBP is
	// not emitted, and the segment is "stretched" to the next marker. The lookahead
	// value does not add latency to the system. The Live Event must be configured
	// elsewhere to create sufficient latency to make the lookahead accurate.
	EbpLookaheadMs *int64 `locationName:"ebpLookaheadMs" type:"integer"`

	// Controls placement of EBP on Audio PIDs. If set to videoAndAudioPids, EBP
	// markers will be placed on the video PID and all audio PIDs. If set to videoPid,
	// EBP markers will be placed on only the video PID.
	EbpPlacement M2tsEbpPlacement `locationName:"ebpPlacement" type:"string" enum:"true"`

	// This field is unused and deprecated.
	EcmPid *string `locationName:"ecmPid" type:"string"`

	// Include or exclude the ES Rate field in the PES header.
	EsRateInPes M2tsEsRateInPes `locationName:"esRateInPes" type:"string" enum:"true"`

	// Packet Identifier (PID) for input source ETV Platform data to this output.
	// Can be entered as a decimal or hexadecimal value. Valid values are 32 (or
	// 0x20)..8182 (or 0x1ff6).
	EtvPlatformPid *string `locationName:"etvPlatformPid" type:"string"`

	// Packet Identifier (PID) for input source ETV Signal data to this output.
	// Can be entered as a decimal or hexadecimal value. Valid values are 32 (or
	// 0x20)..8182 (or 0x1ff6).
	EtvSignalPid *string `locationName:"etvSignalPid" type:"string"`

	// The length in seconds of each fragment. Only used with EBP markers.
	FragmentTime *float64 `locationName:"fragmentTime" type:"double"`

	// If set to passthrough, passes any KLV data from the input source to this
	// output.
	Klv M2tsKlv `locationName:"klv" type:"string" enum:"true"`

	// Packet Identifier (PID) for input source KLV data to this output. Multiple
	// values are accepted, and can be entered in ranges and/or by comma separation.
	// Can be entered as decimal or hexadecimal values. Each PID specified must
	// be in the range of 32 (or 0x20)..8182 (or 0x1ff6).
	KlvDataPids *string `locationName:"klvDataPids" type:"string"`

	// Value in bits per second of extra null packets to insert into the transport
	// stream. This can be used if a downstream encryption system requires periodic
	// null packets.
	NullPacketBitrate *float64 `locationName:"nullPacketBitrate" type:"double"`

	// The number of milliseconds between instances of this table in the output
	// transport stream. Valid values are 0, 10..1000.
	PatInterval *int64 `locationName:"patInterval" type:"integer"`

	// When set to pcrEveryPesPacket, a Program Clock Reference value is inserted
	// for every Packetized Elementary Stream (PES) header. This parameter is effective
	// only when the PCR PID is the same as the video or audio elementary stream.
	PcrControl M2tsPcrControl `locationName:"pcrControl" type:"string" enum:"true"`

	// Maximum time in milliseconds between Program Clock Reference (PCRs) inserted
	// into the transport stream.
	PcrPeriod *int64 `locationName:"pcrPeriod" type:"integer"`

	// Packet Identifier (PID) of the Program Clock Reference (PCR) in the transport
	// stream. When no value is given, the encoder will assign the same value as
	// the Video PID. Can be entered as a decimal or hexadecimal value. Valid values
	// are 32 (or 0x20)..8182 (or 0x1ff6).
	PcrPid *string `locationName:"pcrPid" type:"string"`

	// The number of milliseconds between instances of this table in the output
	// transport stream. Valid values are 0, 10..1000.
	PmtInterval *int64 `locationName:"pmtInterval" type:"integer"`

	// Packet Identifier (PID) for the Program Map Table (PMT) in the transport
	// stream. Can be entered as a decimal or hexadecimal value. Valid values are
	// 32 (or 0x20)..8182 (or 0x1ff6).
	PmtPid *string `locationName:"pmtPid" type:"string"`

	// The value of the program number field in the Program Map Table.
	ProgramNum *int64 `locationName:"programNum" type:"integer"`

	// When vbr, does not insert null packets into transport stream to fill specified
	// bitrate. The bitrate setting acts as the maximum bitrate when vbr is set.
	RateMode M2tsRateMode `locationName:"rateMode" type:"string" enum:"true"`

	// Packet Identifier (PID) for input source SCTE-27 data to this output. Multiple
	// values are accepted, and can be entered in ranges and/or by comma separation.
	// Can be entered as decimal or hexadecimal values. Each PID specified must
	// be in the range of 32 (or 0x20)..8182 (or 0x1ff6).
	Scte27Pids *string `locationName:"scte27Pids" type:"string"`

	// Optionally pass SCTE-35 signals from the input source to this output.
	Scte35Control M2tsScte35Control `locationName:"scte35Control" type:"string" enum:"true"`

	// Packet Identifier (PID) of the SCTE-35 stream in the transport stream. Can
	// be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182
	// (or 0x1ff6).
	Scte35Pid *string `locationName:"scte35Pid" type:"string"`

	// Inserts segmentation markers at each segmentationTime period. raiSegstart
	// sets the Random Access Indicator bit in the adaptation field. raiAdapt sets
	// the RAI bit and adds the current timecode in the private data bytes. psiSegstart
	// inserts PAT and PMT tables at the start of segments. ebp adds Encoder Boundary
	// Point information to the adaptation field as per OpenCable specification
	// OC-SP-EBP-I01-130118. ebpLegacy adds Encoder Boundary Point information to
	// the adaptation field using a legacy proprietary format.
	SegmentationMarkers M2tsSegmentationMarkers `locationName:"segmentationMarkers" type:"string" enum:"true"`

	// The segmentation style parameter controls how segmentation markers are inserted
	// into the transport stream. With avails, it is possible that segments may
	// be truncated, which can influence where future segmentation markers are inserted.When
	// a segmentation style of "resetCadence" is selected and a segment is truncated
	// due to an avail, we will reset the segmentation cadence. This means the subsequent
	// segment will have a duration of $segmentationTime seconds.When a segmentation
	// style of "maintainCadence" is selected and a segment is truncated due to
	// an avail, we will not reset the segmentation cadence. This means the subsequent
	// segment will likely be truncated as well. However, all segments after that
	// will have a duration of $segmentationTime seconds. Note that EBP lookahead
	// is a slight exception to this rule.
	SegmentationStyle M2tsSegmentationStyle `locationName:"segmentationStyle" type:"string" enum:"true"`

	// The length in seconds of each segment. Required unless markers is set to
	// None_.
	SegmentationTime *float64 `locationName:"segmentationTime" type:"double"`

	// When set to passthrough, timed metadata will be passed through from input
	// to output.
	TimedMetadataBehavior M2tsTimedMetadataBehavior `locationName:"timedMetadataBehavior" type:"string" enum:"true"`

	// Packet Identifier (PID) of the timed metadata stream in the transport stream.
	// Can be entered as a decimal or hexadecimal value. Valid values are 32 (or
	// 0x20)..8182 (or 0x1ff6).
	TimedMetadataPid *string `locationName:"timedMetadataPid" type:"string"`

	// The value of the transport stream ID field in the Program Map Table.
	TransportStreamId *int64 `locationName:"transportStreamId" type:"integer"`

	// Packet Identifier (PID) of the elementary video stream in the transport stream.
	// Can be entered as a decimal or hexadecimal value. Valid values are 32 (or
	// 0x20)..8182 (or 0x1ff6).
	VideoPid *string `locationName:"videoPid" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/M2tsSettings

func (M2tsSettings) GoString

func (s M2tsSettings) GoString() string

GoString returns the string representation

func (M2tsSettings) MarshalFields

func (s M2tsSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (M2tsSettings) String

func (s M2tsSettings) String() string

String returns the string representation

type M2tsTimedMetadataBehavior

type M2tsTimedMetadataBehavior string
const (
	M2tsTimedMetadataBehaviorNoPassthrough M2tsTimedMetadataBehavior = "NO_PASSTHROUGH"
	M2tsTimedMetadataBehaviorPassthrough   M2tsTimedMetadataBehavior = "PASSTHROUGH"
)

Enum values for M2tsTimedMetadataBehavior

func (M2tsTimedMetadataBehavior) MarshalValue

func (enum M2tsTimedMetadataBehavior) MarshalValue() (string, error)

func (M2tsTimedMetadataBehavior) MarshalValueBuf

func (enum M2tsTimedMetadataBehavior) MarshalValueBuf(b []byte) ([]byte, error)

type M3u8PcrControl

type M3u8PcrControl string
const (
	M3u8PcrControlConfiguredPcrPeriod M3u8PcrControl = "CONFIGURED_PCR_PERIOD"
	M3u8PcrControlPcrEveryPesPacket   M3u8PcrControl = "PCR_EVERY_PES_PACKET"
)

Enum values for M3u8PcrControl

func (M3u8PcrControl) MarshalValue

func (enum M3u8PcrControl) MarshalValue() (string, error)

func (M3u8PcrControl) MarshalValueBuf

func (enum M3u8PcrControl) MarshalValueBuf(b []byte) ([]byte, error)

type M3u8Scte35Behavior

type M3u8Scte35Behavior string
const (
	M3u8Scte35BehaviorNoPassthrough M3u8Scte35Behavior = "NO_PASSTHROUGH"
	M3u8Scte35BehaviorPassthrough   M3u8Scte35Behavior = "PASSTHROUGH"
)

Enum values for M3u8Scte35Behavior

func (M3u8Scte35Behavior) MarshalValue

func (enum M3u8Scte35Behavior) MarshalValue() (string, error)

func (M3u8Scte35Behavior) MarshalValueBuf

func (enum M3u8Scte35Behavior) MarshalValueBuf(b []byte) ([]byte, error)

type M3u8Settings

type M3u8Settings struct {

	// The number of audio frames to insert for each PES packet.
	AudioFramesPerPes *int64 `locationName:"audioFramesPerPes" type:"integer"`

	// Packet Identifier (PID) of the elementary audio stream(s) in the transport
	// stream. Multiple values are accepted, and can be entered in ranges and/or
	// by comma separation. Can be entered as decimal or hexadecimal values.
	AudioPids *string `locationName:"audioPids" type:"string"`

	// This parameter is unused and deprecated.
	EcmPid *string `locationName:"ecmPid" type:"string"`

	// The number of milliseconds between instances of this table in the output
	// transport stream. A value of \"0\" writes out the PMT once per segment file.
	PatInterval *int64 `locationName:"patInterval" type:"integer"`

	// When set to pcrEveryPesPacket, a Program Clock Reference value is inserted
	// for every Packetized Elementary Stream (PES) header. This parameter is effective
	// only when the PCR PID is the same as the video or audio elementary stream.
	PcrControl M3u8PcrControl `locationName:"pcrControl" type:"string" enum:"true"`

	// Maximum time in milliseconds between Program Clock References (PCRs) inserted
	// into the transport stream.
	PcrPeriod *int64 `locationName:"pcrPeriod" type:"integer"`

	// Packet Identifier (PID) of the Program Clock Reference (PCR) in the transport
	// stream. When no value is given, the encoder will assign the same value as
	// the Video PID. Can be entered as a decimal or hexadecimal value.
	PcrPid *string `locationName:"pcrPid" type:"string"`

	// The number of milliseconds between instances of this table in the output
	// transport stream. A value of \"0\" writes out the PMT once per segment file.
	PmtInterval *int64 `locationName:"pmtInterval" type:"integer"`

	// Packet Identifier (PID) for the Program Map Table (PMT) in the transport
	// stream. Can be entered as a decimal or hexadecimal value.
	PmtPid *string `locationName:"pmtPid" type:"string"`

	// The value of the program number field in the Program Map Table.
	ProgramNum *int64 `locationName:"programNum" type:"integer"`

	// If set to passthrough, passes any SCTE-35 signals from the input source to
	// this output.
	Scte35Behavior M3u8Scte35Behavior `locationName:"scte35Behavior" type:"string" enum:"true"`

	// Packet Identifier (PID) of the SCTE-35 stream in the transport stream. Can
	// be entered as a decimal or hexadecimal value.
	Scte35Pid *string `locationName:"scte35Pid" type:"string"`

	// When set to passthrough, timed metadata is passed through from input to output.
	TimedMetadataBehavior M3u8TimedMetadataBehavior `locationName:"timedMetadataBehavior" type:"string" enum:"true"`

	// The value of the transport stream ID field in the Program Map Table.
	TransportStreamId *int64 `locationName:"transportStreamId" type:"integer"`

	// Packet Identifier (PID) of the elementary video stream in the transport stream.
	// Can be entered as a decimal or hexadecimal value.
	VideoPid *string `locationName:"videoPid" type:"string"`
	// contains filtered or unexported fields
}

Settings information for the .m3u8 container Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/M3u8Settings

func (M3u8Settings) GoString

func (s M3u8Settings) GoString() string

GoString returns the string representation

func (M3u8Settings) MarshalFields

func (s M3u8Settings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (M3u8Settings) String

func (s M3u8Settings) String() string

String returns the string representation

type M3u8TimedMetadataBehavior

type M3u8TimedMetadataBehavior string
const (
	M3u8TimedMetadataBehaviorNoPassthrough M3u8TimedMetadataBehavior = "NO_PASSTHROUGH"
	M3u8TimedMetadataBehaviorPassthrough   M3u8TimedMetadataBehavior = "PASSTHROUGH"
)

Enum values for M3u8TimedMetadataBehavior

func (M3u8TimedMetadataBehavior) MarshalValue

func (enum M3u8TimedMetadataBehavior) MarshalValue() (string, error)

func (M3u8TimedMetadataBehavior) MarshalValueBuf

func (enum M3u8TimedMetadataBehavior) MarshalValueBuf(b []byte) ([]byte, error)

type MediaLive

type MediaLive struct {
	*aws.Client
}

MediaLive provides the API operation methods for making requests to AWS Elemental MediaLive. See this package's package overview docs for details on the service.

MediaLive methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.

func New

func New(config aws.Config) *MediaLive

New creates a new instance of the MediaLive client with a config.

Example:

// Create a MediaLive client from just a config.
svc := medialive.New(myConfig)

func (*MediaLive) CreateChannelRequest

func (c *MediaLive) CreateChannelRequest(input *CreateChannelInput) CreateChannelRequest

CreateChannelRequest returns a request value for making API operation for AWS Elemental MediaLive.

Creates a new channel

// Example sending a request using the CreateChannelRequest method.
req := client.CreateChannelRequest(params)
resp, err := req.Send()
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateChannel

func (*MediaLive) CreateInputRequest

func (c *MediaLive) CreateInputRequest(input *CreateInputInput) CreateInputRequest

CreateInputRequest returns a request value for making API operation for AWS Elemental MediaLive.

Create an input

// Example sending a request using the CreateInputRequest method.
req := client.CreateInputRequest(params)
resp, err := req.Send()
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInput

func (*MediaLive) CreateInputSecurityGroupRequest

func (c *MediaLive) CreateInputSecurityGroupRequest(input *CreateInputSecurityGroupInput) CreateInputSecurityGroupRequest

CreateInputSecurityGroupRequest returns a request value for making API operation for AWS Elemental MediaLive.

Creates a Input Security Group

// Example sending a request using the CreateInputSecurityGroupRequest method.
req := client.CreateInputSecurityGroupRequest(params)
resp, err := req.Send()
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInputSecurityGroup

func (*MediaLive) DeleteChannelRequest

func (c *MediaLive) DeleteChannelRequest(input *DeleteChannelInput) DeleteChannelRequest

DeleteChannelRequest returns a request value for making API operation for AWS Elemental MediaLive.

Starts deletion of channel. The associated outputs are also deleted.

// Example sending a request using the DeleteChannelRequest method.
req := client.DeleteChannelRequest(params)
resp, err := req.Send()
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteChannel

func (*MediaLive) DeleteInputRequest

func (c *MediaLive) DeleteInputRequest(input *DeleteInputInput) DeleteInputRequest

DeleteInputRequest returns a request value for making API operation for AWS Elemental MediaLive.

Deletes the input end point

// Example sending a request using the DeleteInputRequest method.
req := client.DeleteInputRequest(params)
resp, err := req.Send()
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteInput

func (*MediaLive) DeleteInputSecurityGroupRequest

func (c *MediaLive) DeleteInputSecurityGroupRequest(input *DeleteInputSecurityGroupInput) DeleteInputSecurityGroupRequest

DeleteInputSecurityGroupRequest returns a request value for making API operation for AWS Elemental MediaLive.

Deletes an Input Security Group

// Example sending a request using the DeleteInputSecurityGroupRequest method.
req := client.DeleteInputSecurityGroupRequest(params)
resp, err := req.Send()
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteInputSecurityGroup

func (*MediaLive) DescribeChannelRequest

func (c *MediaLive) DescribeChannelRequest(input *DescribeChannelInput) DescribeChannelRequest

DescribeChannelRequest returns a request value for making API operation for AWS Elemental MediaLive.

Gets details about a channel

// Example sending a request using the DescribeChannelRequest method.
req := client.DescribeChannelRequest(params)
resp, err := req.Send()
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeChannel

func (*MediaLive) DescribeInputRequest

func (c *MediaLive) DescribeInputRequest(input *DescribeInputInput) DescribeInputRequest

DescribeInputRequest returns a request value for making API operation for AWS Elemental MediaLive.

Produces details about an input

// Example sending a request using the DescribeInputRequest method.
req := client.DescribeInputRequest(params)
resp, err := req.Send()
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInput

func (*MediaLive) DescribeInputSecurityGroupRequest

func (c *MediaLive) DescribeInputSecurityGroupRequest(input *DescribeInputSecurityGroupInput) DescribeInputSecurityGroupRequest

DescribeInputSecurityGroupRequest returns a request value for making API operation for AWS Elemental MediaLive.

Produces a summary of an Input Security Group

// Example sending a request using the DescribeInputSecurityGroupRequest method.
req := client.DescribeInputSecurityGroupRequest(params)
resp, err := req.Send()
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputSecurityGroup

func (*MediaLive) ListChannelsRequest

func (c *MediaLive) ListChannelsRequest(input *ListChannelsInput) ListChannelsRequest

ListChannelsRequest returns a request value for making API operation for AWS Elemental MediaLive.

Produces list of channels that have been created

// Example sending a request using the ListChannelsRequest method.
req := client.ListChannelsRequest(params)
resp, err := req.Send()
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListChannels

func (*MediaLive) ListInputSecurityGroupsRequest

func (c *MediaLive) ListInputSecurityGroupsRequest(input *ListInputSecurityGroupsInput) ListInputSecurityGroupsRequest

ListInputSecurityGroupsRequest returns a request value for making API operation for AWS Elemental MediaLive.

Produces a list of Input Security Groups for an account

// Example sending a request using the ListInputSecurityGroupsRequest method.
req := client.ListInputSecurityGroupsRequest(params)
resp, err := req.Send()
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputSecurityGroups

func (*MediaLive) ListInputsRequest

func (c *MediaLive) ListInputsRequest(input *ListInputsInput) ListInputsRequest

ListInputsRequest returns a request value for making API operation for AWS Elemental MediaLive.

Produces list of inputs that have been created

// Example sending a request using the ListInputsRequest method.
req := client.ListInputsRequest(params)
resp, err := req.Send()
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputs

func (*MediaLive) StartChannelRequest

func (c *MediaLive) StartChannelRequest(input *StartChannelInput) StartChannelRequest

StartChannelRequest returns a request value for making API operation for AWS Elemental MediaLive.

Starts an existing channel

// Example sending a request using the StartChannelRequest method.
req := client.StartChannelRequest(params)
resp, err := req.Send()
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartChannel

func (*MediaLive) StopChannelRequest

func (c *MediaLive) StopChannelRequest(input *StopChannelInput) StopChannelRequest

StopChannelRequest returns a request value for making API operation for AWS Elemental MediaLive.

Stops a running channel

// Example sending a request using the StopChannelRequest method.
req := client.StopChannelRequest(params)
resp, err := req.Send()
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StopChannel

func (*MediaLive) UpdateChannelRequest

func (c *MediaLive) UpdateChannelRequest(input *UpdateChannelInput) UpdateChannelRequest

UpdateChannelRequest returns a request value for making API operation for AWS Elemental MediaLive.

Updates a channel.

// Example sending a request using the UpdateChannelRequest method.
req := client.UpdateChannelRequest(params)
resp, err := req.Send()
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannel

type Mp2CodingMode

type Mp2CodingMode string
const (
	Mp2CodingModeCodingMode10 Mp2CodingMode = "CODING_MODE_1_0"
	Mp2CodingModeCodingMode20 Mp2CodingMode = "CODING_MODE_2_0"
)

Enum values for Mp2CodingMode

func (Mp2CodingMode) MarshalValue

func (enum Mp2CodingMode) MarshalValue() (string, error)

func (Mp2CodingMode) MarshalValueBuf

func (enum Mp2CodingMode) MarshalValueBuf(b []byte) ([]byte, error)

type Mp2Settings

type Mp2Settings struct {

	// Average bitrate in bits/second.
	Bitrate *float64 `locationName:"bitrate" type:"double"`

	// The MPEG2 Audio coding mode. Valid values are codingMode10 (for mono) or
	// codingMode20 (for stereo).
	CodingMode Mp2CodingMode `locationName:"codingMode" type:"string" enum:"true"`

	// Sample rate in Hz.
	SampleRate *float64 `locationName:"sampleRate" type:"double"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Mp2Settings

func (Mp2Settings) GoString

func (s Mp2Settings) GoString() string

GoString returns the string representation

func (Mp2Settings) MarshalFields

func (s Mp2Settings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (Mp2Settings) String

func (s Mp2Settings) String() string

String returns the string representation

type MsSmoothGroupSettings

type MsSmoothGroupSettings struct {

	// The value of the "Acquisition Point Identity" element used in each message
	// placed in the sparse track. Only enabled if sparseTrackType is not "none".
	AcquisitionPointId *string `locationName:"acquisitionPointId" type:"string"`

	// If set to passthrough for an audio-only MS Smooth output, the fragment absolute
	// time will be set to the current timecode. This option does not write timecodes
	// to the audio elementary stream.
	AudioOnlyTimecodeControl SmoothGroupAudioOnlyTimecodeControl `locationName:"audioOnlyTimecodeControl" type:"string" enum:"true"`

	// If set to verifyAuthenticity, verify the https certificate chain to a trusted
	// Certificate Authority (CA). This will cause https outputs to self-signed
	// certificates to fail unless those certificates are manually added to the
	// OS trusted keystore.
	CertificateMode SmoothGroupCertificateMode `locationName:"certificateMode" type:"string" enum:"true"`

	// Number of seconds to wait before retrying connection to the IIS server if
	// the connection is lost. Content will be cached during this time and the cache
	// will be be delivered to the IIS server once the connection is re-established.
	ConnectionRetryInterval *int64 `locationName:"connectionRetryInterval" type:"integer"`

	// Smooth Streaming publish point on an IIS server. Elemental Live acts as a
	// "Push" encoder to IIS.
	Destination *OutputLocationRef `locationName:"destination" type:"structure"`

	// MS Smooth event ID to be sent to the IIS server.Should only be specified
	// if eventIdMode is set to useConfigured.
	EventId *string `locationName:"eventId" type:"string"`

	// Specifies whether or not to send an event ID to the IIS server. If no event
	// ID is sent and the same Live Event is used without changing the publishing
	// point, clients might see cached video from the previous run.Options:- "useConfigured"
	// - use the value provided in eventId- "useTimestamp" - generate and send an
	// event ID based on the current timestamp- "noEventId" - do not send an event
	// ID to the IIS server.
	EventIdMode SmoothGroupEventIdMode `locationName:"eventIdMode" type:"string" enum:"true"`

	// When set to sendEos, send EOS signal to IIS server when stopping the event
	EventStopBehavior SmoothGroupEventStopBehavior `locationName:"eventStopBehavior" type:"string" enum:"true"`

	// Size in seconds of file cache for streaming outputs.
	FilecacheDuration *int64 `locationName:"filecacheDuration" type:"integer"`

	// Length of mp4 fragments to generate (in seconds). Fragment length must be
	// compatible with GOP size and framerate.
	FragmentLength *int64 `locationName:"fragmentLength" type:"integer"`

	// Parameter that control output group behavior on input loss.
	InputLossAction InputLossActionForMsSmoothOut `locationName:"inputLossAction" type:"string" enum:"true"`

	// Number of retry attempts.
	NumRetries *int64 `locationName:"numRetries" type:"integer"`

	// Number of seconds before initiating a restart due to output failure, due
	// to exhausting the numRetries on one segment, or exceeding filecacheDuration.
	RestartDelay *int64 `locationName:"restartDelay" type:"integer"`

	// When set to useInputSegmentation, the output segment or fragment points are
	// set by the RAI markers from the input streams.
	SegmentationMode SmoothGroupSegmentationMode `locationName:"segmentationMode" type:"string" enum:"true"`

	// Outputs that are "output locked" can use this delay. Assign a delay to the
	// output that is "secondary". Do not assign a delay to the "primary" output.
	// The delay means that the primary output will always reach the downstream
	// system before the secondary, which helps ensure that the downstream system
	// always uses the primary output. (If there were no delay, the downstream system
	// might flip-flop between whichever output happens to arrive first.) If the
	// primary fails, the downstream system will switch to the secondary output.
	// When the primary is restarted, the downstream system will switch back to
	// the primary (because once again it is always arriving first)
	SendDelayMs *int64 `locationName:"sendDelayMs" type:"integer"`

	// If set to scte35, use incoming SCTE-35 messages to generate a sparse track
	// in this group of MS-Smooth outputs.
	SparseTrackType SmoothGroupSparseTrackType `locationName:"sparseTrackType" type:"string" enum:"true"`

	// When set to send, send stream manifest so publishing point doesn't start
	// until all streams start.
	StreamManifestBehavior SmoothGroupStreamManifestBehavior `locationName:"streamManifestBehavior" type:"string" enum:"true"`

	// Timestamp offset for the event. Only used if timestampOffsetMode is set to
	// useConfiguredOffset.
	TimestampOffset *string `locationName:"timestampOffset" type:"string"`

	// Type of timestamp date offset to use.- useEventStartDate: Use the date the
	// event was started as the offset- useConfiguredOffset: Use an explicitly configured
	// date as the offset
	TimestampOffsetMode SmoothGroupTimestampOffsetMode `locationName:"timestampOffsetMode" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MsSmoothGroupSettings

func (MsSmoothGroupSettings) GoString

func (s MsSmoothGroupSettings) GoString() string

GoString returns the string representation

func (MsSmoothGroupSettings) MarshalFields

func (s MsSmoothGroupSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (MsSmoothGroupSettings) String

func (s MsSmoothGroupSettings) String() string

String returns the string representation

type MsSmoothOutputSettings

type MsSmoothOutputSettings struct {

	// String concatenated to the end of the destination filename. Required for
	// multiple outputs of the same type.
	NameModifier *string `locationName:"nameModifier" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MsSmoothOutputSettings

func (MsSmoothOutputSettings) GoString

func (s MsSmoothOutputSettings) GoString() string

GoString returns the string representation

func (MsSmoothOutputSettings) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (MsSmoothOutputSettings) String

func (s MsSmoothOutputSettings) String() string

String returns the string representation

type NetworkInputServerValidation

type NetworkInputServerValidation string
const (
	NetworkInputServerValidationCheckCryptographyAndValidateName NetworkInputServerValidation = "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME"
	NetworkInputServerValidationCheckCryptographyOnly            NetworkInputServerValidation = "CHECK_CRYPTOGRAPHY_ONLY"
)

Enum values for NetworkInputServerValidation

func (NetworkInputServerValidation) MarshalValue

func (enum NetworkInputServerValidation) MarshalValue() (string, error)

func (NetworkInputServerValidation) MarshalValueBuf

func (enum NetworkInputServerValidation) MarshalValueBuf(b []byte) ([]byte, error)

type NetworkInputSettings

type NetworkInputSettings struct {

	// Specifies HLS input settings when the uri is for a HLS manifest.
	HlsInputSettings *HlsInputSettings `locationName:"hlsInputSettings" type:"structure"`

	// Check HTTPS server certificates. When set to checkCryptographyOnly, cryptography
	// in the certificate will be checked, but not the server's name. Certain subdomains
	// (notably S3 buckets that use dots in the bucket name) do not strictly match
	// the corresponding certificate's wildcard pattern and would otherwise cause
	// the event to error. This setting is ignored for protocols that do not use
	// https.
	ServerValidation NetworkInputServerValidation `locationName:"serverValidation" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Network source to transcode. Must be accessible to the Elemental Live node that is running the live event through a network connection. Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/NetworkInputSettings

func (NetworkInputSettings) GoString

func (s NetworkInputSettings) GoString() string

GoString returns the string representation

func (NetworkInputSettings) MarshalFields

func (s NetworkInputSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (NetworkInputSettings) String

func (s NetworkInputSettings) String() string

String returns the string representation

type Output

type Output struct {

	// The names of the AudioDescriptions used as audio sources for this output.
	AudioDescriptionNames []string `locationName:"audioDescriptionNames" type:"list"`

	// The names of the CaptionDescriptions used as caption sources for this output.
	CaptionDescriptionNames []string `locationName:"captionDescriptionNames" type:"list"`

	// The name used to identify an output.
	OutputName *string `locationName:"outputName" type:"string"`

	// Output type-specific settings.
	OutputSettings *OutputSettings `locationName:"outputSettings" type:"structure"`

	// The name of the VideoDescription used as the source for this output.
	VideoDescriptionName *string `locationName:"videoDescriptionName" type:"string"`
	// contains filtered or unexported fields
}

Output settings. There can be multiple outputs within a group. Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Output

func (Output) GoString

func (s Output) GoString() string

GoString returns the string representation

func (Output) MarshalFields

func (s Output) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (Output) String

func (s Output) String() string

String returns the string representation

type OutputDestination

type OutputDestination struct {

	// User-specified id. This is used in an output group or an output.
	Id *string `locationName:"id" type:"string"`

	// Destination settings for output; one for each redundant encoder.
	Settings []OutputDestinationSettings `locationName:"settings" type:"list"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/OutputDestination

func (OutputDestination) GoString

func (s OutputDestination) GoString() string

GoString returns the string representation

func (OutputDestination) MarshalFields

func (s OutputDestination) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (OutputDestination) String

func (s OutputDestination) String() string

String returns the string representation

type OutputDestinationSettings

type OutputDestinationSettings struct {

	// key used to extract the password from EC2 Parameter store
	PasswordParam *string `locationName:"passwordParam" type:"string"`

	// A URL specifying a destination
	Url *string `locationName:"url" type:"string"`

	// username for destination
	Username *string `locationName:"username" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/OutputDestinationSettings

func (OutputDestinationSettings) GoString

func (s OutputDestinationSettings) GoString() string

GoString returns the string representation

func (OutputDestinationSettings) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (OutputDestinationSettings) String

func (s OutputDestinationSettings) String() string

String returns the string representation

type OutputGroup

type OutputGroup struct {

	// Custom output group name optionally defined by the user. Only letters, numbers,
	// and the underscore character allowed; only 32 characters allowed.
	Name *string `locationName:"name" type:"string"`

	// Settings associated with the output group.
	OutputGroupSettings *OutputGroupSettings `locationName:"outputGroupSettings" type:"structure"`

	Outputs []Output `locationName:"outputs" type:"list"`
	// contains filtered or unexported fields
}

Output groups for this Live Event. Output groups contain information about where streams should be distributed. Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/OutputGroup

func (OutputGroup) GoString

func (s OutputGroup) GoString() string

GoString returns the string representation

func (OutputGroup) MarshalFields

func (s OutputGroup) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (OutputGroup) String

func (s OutputGroup) String() string

String returns the string representation

type OutputGroupSettings

type OutputGroupSettings struct {
	ArchiveGroupSettings *ArchiveGroupSettings `locationName:"archiveGroupSettings" type:"structure"`

	HlsGroupSettings *HlsGroupSettings `locationName:"hlsGroupSettings" type:"structure"`

	MsSmoothGroupSettings *MsSmoothGroupSettings `locationName:"msSmoothGroupSettings" type:"structure"`

	UdpGroupSettings *UdpGroupSettings `locationName:"udpGroupSettings" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/OutputGroupSettings

func (OutputGroupSettings) GoString

func (s OutputGroupSettings) GoString() string

GoString returns the string representation

func (OutputGroupSettings) MarshalFields

func (s OutputGroupSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (OutputGroupSettings) String

func (s OutputGroupSettings) String() string

String returns the string representation

type OutputLocationRef

type OutputLocationRef struct {
	DestinationRefId *string `locationName:"destinationRefId" type:"string"`
	// contains filtered or unexported fields
}

Reference to an OutputDestination ID defined in the channel Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/OutputLocationRef

func (OutputLocationRef) GoString

func (s OutputLocationRef) GoString() string

GoString returns the string representation

func (OutputLocationRef) MarshalFields

func (s OutputLocationRef) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (OutputLocationRef) String

func (s OutputLocationRef) String() string

String returns the string representation

type OutputSettings

type OutputSettings struct {
	ArchiveOutputSettings *ArchiveOutputSettings `locationName:"archiveOutputSettings" type:"structure"`

	HlsOutputSettings *HlsOutputSettings `locationName:"hlsOutputSettings" type:"structure"`

	MsSmoothOutputSettings *MsSmoothOutputSettings `locationName:"msSmoothOutputSettings" type:"structure"`

	UdpOutputSettings *UdpOutputSettings `locationName:"udpOutputSettings" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/OutputSettings

func (OutputSettings) GoString

func (s OutputSettings) GoString() string

GoString returns the string representation

func (OutputSettings) MarshalFields

func (s OutputSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (OutputSettings) String

func (s OutputSettings) String() string

String returns the string representation

type PassThroughSettings

type PassThroughSettings struct {
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/PassThroughSettings

func (PassThroughSettings) GoString

func (s PassThroughSettings) GoString() string

GoString returns the string representation

func (PassThroughSettings) MarshalFields

func (s PassThroughSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (PassThroughSettings) String

func (s PassThroughSettings) String() string

String returns the string representation

type RemixSettings

type RemixSettings struct {

	// Mapping of input channels to output channels, with appropriate gain adjustments.
	ChannelMappings []AudioChannelMapping `locationName:"channelMappings" type:"list"`

	// Number of input channels to be used.
	ChannelsIn *int64 `locationName:"channelsIn" type:"integer"`

	// Number of output channels to be produced.Valid values: 1, 2, 4, 6, 8
	ChannelsOut *int64 `locationName:"channelsOut" type:"integer"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RemixSettings

func (RemixSettings) GoString

func (s RemixSettings) GoString() string

GoString returns the string representation

func (RemixSettings) MarshalFields

func (s RemixSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (RemixSettings) String

func (s RemixSettings) String() string

String returns the string representation

type Scte20Convert608To708

type Scte20Convert608To708 string
const (
	Scte20Convert608To708Disabled  Scte20Convert608To708 = "DISABLED"
	Scte20Convert608To708Upconvert Scte20Convert608To708 = "UPCONVERT"
)

Enum values for Scte20Convert608To708

func (Scte20Convert608To708) MarshalValue

func (enum Scte20Convert608To708) MarshalValue() (string, error)

func (Scte20Convert608To708) MarshalValueBuf

func (enum Scte20Convert608To708) MarshalValueBuf(b []byte) ([]byte, error)

type Scte20PlusEmbeddedDestinationSettings

type Scte20PlusEmbeddedDestinationSettings struct {
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Scte20PlusEmbeddedDestinationSettings

func (Scte20PlusEmbeddedDestinationSettings) GoString

GoString returns the string representation

func (Scte20PlusEmbeddedDestinationSettings) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (Scte20PlusEmbeddedDestinationSettings) String

String returns the string representation

type Scte20SourceSettings

type Scte20SourceSettings struct {

	// If upconvert, 608 data is both passed through via the "608 compatibility
	// bytes" fields of the 708 wrapper as well as translated into 708. 708 data
	// present in the source content will be discarded.
	Convert608To708 Scte20Convert608To708 `locationName:"convert608To708" type:"string" enum:"true"`

	// Specifies the 608/708 channel number within the video track from which to
	// extract captions. Unused for passthrough.
	Source608ChannelNumber *int64 `locationName:"source608ChannelNumber" type:"integer"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Scte20SourceSettings

func (Scte20SourceSettings) GoString

func (s Scte20SourceSettings) GoString() string

GoString returns the string representation

func (Scte20SourceSettings) MarshalFields

func (s Scte20SourceSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (Scte20SourceSettings) String

func (s Scte20SourceSettings) String() string

String returns the string representation

type Scte27DestinationSettings

type Scte27DestinationSettings struct {
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Scte27DestinationSettings

func (Scte27DestinationSettings) GoString

func (s Scte27DestinationSettings) GoString() string

GoString returns the string representation

func (Scte27DestinationSettings) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (Scte27DestinationSettings) String

func (s Scte27DestinationSettings) String() string

String returns the string representation

type Scte27SourceSettings

type Scte27SourceSettings struct {

	// The pid field is used in conjunction with the caption selector languageCode
	// field as follows: - Specify PID and Language: Extracts captions from that
	// PID; the language is "informational". - Specify PID and omit Language: Extracts
	// the specified PID. - Omit PID and specify Language: Extracts the specified
	// language, whichever PID that happens to be. - Omit PID and omit Language:
	// Valid only if source is DVB-Sub that is being passed through; all languages
	// will be passed through.
	Pid *int64 `locationName:"pid" type:"integer"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Scte27SourceSettings

func (Scte27SourceSettings) GoString

func (s Scte27SourceSettings) GoString() string

GoString returns the string representation

func (Scte27SourceSettings) MarshalFields

func (s Scte27SourceSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (Scte27SourceSettings) String

func (s Scte27SourceSettings) String() string

String returns the string representation

type Scte35AposNoRegionalBlackoutBehavior

type Scte35AposNoRegionalBlackoutBehavior string
const (
	Scte35AposNoRegionalBlackoutBehaviorFollow Scte35AposNoRegionalBlackoutBehavior = "FOLLOW"
	Scte35AposNoRegionalBlackoutBehaviorIgnore Scte35AposNoRegionalBlackoutBehavior = "IGNORE"
)

Enum values for Scte35AposNoRegionalBlackoutBehavior

func (Scte35AposNoRegionalBlackoutBehavior) MarshalValue

func (enum Scte35AposNoRegionalBlackoutBehavior) MarshalValue() (string, error)

func (Scte35AposNoRegionalBlackoutBehavior) MarshalValueBuf

func (enum Scte35AposNoRegionalBlackoutBehavior) MarshalValueBuf(b []byte) ([]byte, error)

type Scte35AposWebDeliveryAllowedBehavior

type Scte35AposWebDeliveryAllowedBehavior string
const (
	Scte35AposWebDeliveryAllowedBehaviorFollow Scte35AposWebDeliveryAllowedBehavior = "FOLLOW"
	Scte35AposWebDeliveryAllowedBehaviorIgnore Scte35AposWebDeliveryAllowedBehavior = "IGNORE"
)

Enum values for Scte35AposWebDeliveryAllowedBehavior

func (Scte35AposWebDeliveryAllowedBehavior) MarshalValue

func (enum Scte35AposWebDeliveryAllowedBehavior) MarshalValue() (string, error)

func (Scte35AposWebDeliveryAllowedBehavior) MarshalValueBuf

func (enum Scte35AposWebDeliveryAllowedBehavior) MarshalValueBuf(b []byte) ([]byte, error)

type Scte35SpliceInsert

type Scte35SpliceInsert struct {

	// When specified, this offset (in milliseconds) is added to the input Ad Avail
	// PTS time. This only applies to embedded SCTE 104/35 messages and does not
	// apply to OOB messages.
	AdAvailOffset *int64 `locationName:"adAvailOffset" type:"integer"`

	// When set to ignore, Segment Descriptors with noRegionalBlackoutFlag set to
	// 0 will no longer trigger blackouts or Ad Avail slates
	NoRegionalBlackoutFlag Scte35SpliceInsertNoRegionalBlackoutBehavior `locationName:"noRegionalBlackoutFlag" type:"string" enum:"true"`

	// When set to ignore, Segment Descriptors with webDeliveryAllowedFlag set to
	// 0 will no longer trigger blackouts or Ad Avail slates
	WebDeliveryAllowedFlag Scte35SpliceInsertWebDeliveryAllowedBehavior `locationName:"webDeliveryAllowedFlag" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Scte35SpliceInsert

func (Scte35SpliceInsert) GoString

func (s Scte35SpliceInsert) GoString() string

GoString returns the string representation

func (Scte35SpliceInsert) MarshalFields

func (s Scte35SpliceInsert) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (Scte35SpliceInsert) String

func (s Scte35SpliceInsert) String() string

String returns the string representation

type Scte35SpliceInsertNoRegionalBlackoutBehavior

type Scte35SpliceInsertNoRegionalBlackoutBehavior string
const (
	Scte35SpliceInsertNoRegionalBlackoutBehaviorFollow Scte35SpliceInsertNoRegionalBlackoutBehavior = "FOLLOW"
	Scte35SpliceInsertNoRegionalBlackoutBehaviorIgnore Scte35SpliceInsertNoRegionalBlackoutBehavior = "IGNORE"
)

Enum values for Scte35SpliceInsertNoRegionalBlackoutBehavior

func (Scte35SpliceInsertNoRegionalBlackoutBehavior) MarshalValue

func (Scte35SpliceInsertNoRegionalBlackoutBehavior) MarshalValueBuf

func (enum Scte35SpliceInsertNoRegionalBlackoutBehavior) MarshalValueBuf(b []byte) ([]byte, error)

type Scte35SpliceInsertWebDeliveryAllowedBehavior

type Scte35SpliceInsertWebDeliveryAllowedBehavior string
const (
	Scte35SpliceInsertWebDeliveryAllowedBehaviorFollow Scte35SpliceInsertWebDeliveryAllowedBehavior = "FOLLOW"
	Scte35SpliceInsertWebDeliveryAllowedBehaviorIgnore Scte35SpliceInsertWebDeliveryAllowedBehavior = "IGNORE"
)

Enum values for Scte35SpliceInsertWebDeliveryAllowedBehavior

func (Scte35SpliceInsertWebDeliveryAllowedBehavior) MarshalValue

func (Scte35SpliceInsertWebDeliveryAllowedBehavior) MarshalValueBuf

func (enum Scte35SpliceInsertWebDeliveryAllowedBehavior) MarshalValueBuf(b []byte) ([]byte, error)

type Scte35TimeSignalApos

type Scte35TimeSignalApos struct {

	// When specified, this offset (in milliseconds) is added to the input Ad Avail
	// PTS time. This only applies to embedded SCTE 104/35 messages and does not
	// apply to OOB messages.
	AdAvailOffset *int64 `locationName:"adAvailOffset" type:"integer"`

	// When set to ignore, Segment Descriptors with noRegionalBlackoutFlag set to
	// 0 will no longer trigger blackouts or Ad Avail slates
	NoRegionalBlackoutFlag Scte35AposNoRegionalBlackoutBehavior `locationName:"noRegionalBlackoutFlag" type:"string" enum:"true"`

	// When set to ignore, Segment Descriptors with webDeliveryAllowedFlag set to
	// 0 will no longer trigger blackouts or Ad Avail slates
	WebDeliveryAllowedFlag Scte35AposWebDeliveryAllowedBehavior `locationName:"webDeliveryAllowedFlag" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Scte35TimeSignalApos

func (Scte35TimeSignalApos) GoString

func (s Scte35TimeSignalApos) GoString() string

GoString returns the string representation

func (Scte35TimeSignalApos) MarshalFields

func (s Scte35TimeSignalApos) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (Scte35TimeSignalApos) String

func (s Scte35TimeSignalApos) String() string

String returns the string representation

type SmoothGroupAudioOnlyTimecodeControl

type SmoothGroupAudioOnlyTimecodeControl string
const (
	SmoothGroupAudioOnlyTimecodeControlPassthrough        SmoothGroupAudioOnlyTimecodeControl = "PASSTHROUGH"
	SmoothGroupAudioOnlyTimecodeControlUseConfiguredClock SmoothGroupAudioOnlyTimecodeControl = "USE_CONFIGURED_CLOCK"
)

Enum values for SmoothGroupAudioOnlyTimecodeControl

func (SmoothGroupAudioOnlyTimecodeControl) MarshalValue

func (enum SmoothGroupAudioOnlyTimecodeControl) MarshalValue() (string, error)

func (SmoothGroupAudioOnlyTimecodeControl) MarshalValueBuf

func (enum SmoothGroupAudioOnlyTimecodeControl) MarshalValueBuf(b []byte) ([]byte, error)

type SmoothGroupCertificateMode

type SmoothGroupCertificateMode string
const (
	SmoothGroupCertificateModeSelfSigned         SmoothGroupCertificateMode = "SELF_SIGNED"
	SmoothGroupCertificateModeVerifyAuthenticity SmoothGroupCertificateMode = "VERIFY_AUTHENTICITY"
)

Enum values for SmoothGroupCertificateMode

func (SmoothGroupCertificateMode) MarshalValue

func (enum SmoothGroupCertificateMode) MarshalValue() (string, error)

func (SmoothGroupCertificateMode) MarshalValueBuf

func (enum SmoothGroupCertificateMode) MarshalValueBuf(b []byte) ([]byte, error)

type SmoothGroupEventIdMode

type SmoothGroupEventIdMode string
const (
	SmoothGroupEventIdModeNoEventId     SmoothGroupEventIdMode = "NO_EVENT_ID"
	SmoothGroupEventIdModeUseConfigured SmoothGroupEventIdMode = "USE_CONFIGURED"
	SmoothGroupEventIdModeUseTimestamp  SmoothGroupEventIdMode = "USE_TIMESTAMP"
)

Enum values for SmoothGroupEventIdMode

func (SmoothGroupEventIdMode) MarshalValue

func (enum SmoothGroupEventIdMode) MarshalValue() (string, error)

func (SmoothGroupEventIdMode) MarshalValueBuf

func (enum SmoothGroupEventIdMode) MarshalValueBuf(b []byte) ([]byte, error)

type SmoothGroupEventStopBehavior

type SmoothGroupEventStopBehavior string
const (
	SmoothGroupEventStopBehaviorNone    SmoothGroupEventStopBehavior = "NONE"
	SmoothGroupEventStopBehaviorSendEos SmoothGroupEventStopBehavior = "SEND_EOS"
)

Enum values for SmoothGroupEventStopBehavior

func (SmoothGroupEventStopBehavior) MarshalValue

func (enum SmoothGroupEventStopBehavior) MarshalValue() (string, error)

func (SmoothGroupEventStopBehavior) MarshalValueBuf

func (enum SmoothGroupEventStopBehavior) MarshalValueBuf(b []byte) ([]byte, error)

type SmoothGroupSegmentationMode

type SmoothGroupSegmentationMode string
const (
	SmoothGroupSegmentationModeUseInputSegmentation SmoothGroupSegmentationMode = "USE_INPUT_SEGMENTATION"
	SmoothGroupSegmentationModeUseSegmentDuration   SmoothGroupSegmentationMode = "USE_SEGMENT_DURATION"
)

Enum values for SmoothGroupSegmentationMode

func (SmoothGroupSegmentationMode) MarshalValue

func (enum SmoothGroupSegmentationMode) MarshalValue() (string, error)

func (SmoothGroupSegmentationMode) MarshalValueBuf

func (enum SmoothGroupSegmentationMode) MarshalValueBuf(b []byte) ([]byte, error)

type SmoothGroupSparseTrackType

type SmoothGroupSparseTrackType string
const (
	SmoothGroupSparseTrackTypeNone   SmoothGroupSparseTrackType = "NONE"
	SmoothGroupSparseTrackTypeScte35 SmoothGroupSparseTrackType = "SCTE_35"
)

Enum values for SmoothGroupSparseTrackType

func (SmoothGroupSparseTrackType) MarshalValue

func (enum SmoothGroupSparseTrackType) MarshalValue() (string, error)

func (SmoothGroupSparseTrackType) MarshalValueBuf

func (enum SmoothGroupSparseTrackType) MarshalValueBuf(b []byte) ([]byte, error)

type SmoothGroupStreamManifestBehavior

type SmoothGroupStreamManifestBehavior string
const (
	SmoothGroupStreamManifestBehaviorDoNotSend SmoothGroupStreamManifestBehavior = "DO_NOT_SEND"
	SmoothGroupStreamManifestBehaviorSend      SmoothGroupStreamManifestBehavior = "SEND"
)

Enum values for SmoothGroupStreamManifestBehavior

func (SmoothGroupStreamManifestBehavior) MarshalValue

func (enum SmoothGroupStreamManifestBehavior) MarshalValue() (string, error)

func (SmoothGroupStreamManifestBehavior) MarshalValueBuf

func (enum SmoothGroupStreamManifestBehavior) MarshalValueBuf(b []byte) ([]byte, error)

type SmoothGroupTimestampOffsetMode

type SmoothGroupTimestampOffsetMode string
const (
	SmoothGroupTimestampOffsetModeUseConfiguredOffset SmoothGroupTimestampOffsetMode = "USE_CONFIGURED_OFFSET"
	SmoothGroupTimestampOffsetModeUseEventStartDate   SmoothGroupTimestampOffsetMode = "USE_EVENT_START_DATE"
)

Enum values for SmoothGroupTimestampOffsetMode

func (SmoothGroupTimestampOffsetMode) MarshalValue

func (enum SmoothGroupTimestampOffsetMode) MarshalValue() (string, error)

func (SmoothGroupTimestampOffsetMode) MarshalValueBuf

func (enum SmoothGroupTimestampOffsetMode) MarshalValueBuf(b []byte) ([]byte, error)

type SmpteTtDestinationSettings

type SmpteTtDestinationSettings struct {
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SmpteTtDestinationSettings

func (SmpteTtDestinationSettings) GoString

func (s SmpteTtDestinationSettings) GoString() string

GoString returns the string representation

func (SmpteTtDestinationSettings) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (SmpteTtDestinationSettings) String

String returns the string representation

type StandardHlsSettings

type StandardHlsSettings struct {

	// List all the audio groups that are used with the video output stream. Input
	// all the audio GROUP-IDs that are associated to the video, separate by ','.
	AudioRenditionSets *string `locationName:"audioRenditionSets" type:"string"`

	// Settings information for the .m3u8 container
	M3u8Settings *M3u8Settings `locationName:"m3u8Settings" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StandardHlsSettings

func (StandardHlsSettings) GoString

func (s StandardHlsSettings) GoString() string

GoString returns the string representation

func (StandardHlsSettings) MarshalFields

func (s StandardHlsSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (StandardHlsSettings) String

func (s StandardHlsSettings) String() string

String returns the string representation

type StartChannelInput

type StartChannelInput struct {

	// ChannelId is a required field
	ChannelId *string `location:"uri" locationName:"channelId" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartChannelRequest

func (StartChannelInput) GoString

func (s StartChannelInput) GoString() string

GoString returns the string representation

func (StartChannelInput) MarshalFields

func (s StartChannelInput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (StartChannelInput) String

func (s StartChannelInput) String() string

String returns the string representation

func (*StartChannelInput) Validate

func (s *StartChannelInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StartChannelOutput

type StartChannelOutput struct {
	Arn *string `locationName:"arn" type:"string"`

	Destinations []OutputDestination `locationName:"destinations" type:"list"`

	EgressEndpoints []ChannelEgressEndpoint `locationName:"egressEndpoints" type:"list"`

	EncoderSettings *EncoderSettings `locationName:"encoderSettings" type:"structure"`

	Id *string `locationName:"id" type:"string"`

	InputAttachments []InputAttachment `locationName:"inputAttachments" type:"list"`

	InputSpecification *InputSpecification `locationName:"inputSpecification" type:"structure"`

	Name *string `locationName:"name" type:"string"`

	PipelinesRunningCount *int64 `locationName:"pipelinesRunningCount" type:"integer"`

	RoleArn *string `locationName:"roleArn" type:"string"`

	State ChannelState `locationName:"state" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartChannelResponse

func (StartChannelOutput) GoString

func (s StartChannelOutput) GoString() string

GoString returns the string representation

func (StartChannelOutput) MarshalFields

func (s StartChannelOutput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (StartChannelOutput) SDKResponseMetadata

func (s StartChannelOutput) SDKResponseMetadata() aws.Response

SDKResponseMetdata return sthe response metadata for the API.

func (StartChannelOutput) String

func (s StartChannelOutput) String() string

String returns the string representation

type StartChannelRequest

type StartChannelRequest struct {
	*aws.Request
	Input *StartChannelInput
	Copy  func(*StartChannelInput) StartChannelRequest
}

StartChannelRequest is a API request type for the StartChannel API operation.

func (StartChannelRequest) Send

Send marshals and sends the StartChannel API request.

type StaticKeySettings

type StaticKeySettings struct {

	// The URL of the license server used for protecting content.
	KeyProviderServer *InputLocation `locationName:"keyProviderServer" type:"structure"`

	// Static key value as a 32 character hexadecimal string.
	StaticKeyValue *string `locationName:"staticKeyValue" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StaticKeySettings

func (StaticKeySettings) GoString

func (s StaticKeySettings) GoString() string

GoString returns the string representation

func (StaticKeySettings) MarshalFields

func (s StaticKeySettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (StaticKeySettings) String

func (s StaticKeySettings) String() string

String returns the string representation

type StopChannelInput

type StopChannelInput struct {

	// ChannelId is a required field
	ChannelId *string `location:"uri" locationName:"channelId" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StopChannelRequest

func (StopChannelInput) GoString

func (s StopChannelInput) GoString() string

GoString returns the string representation

func (StopChannelInput) MarshalFields

func (s StopChannelInput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (StopChannelInput) String

func (s StopChannelInput) String() string

String returns the string representation

func (*StopChannelInput) Validate

func (s *StopChannelInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StopChannelOutput

type StopChannelOutput struct {
	Arn *string `locationName:"arn" type:"string"`

	Destinations []OutputDestination `locationName:"destinations" type:"list"`

	EgressEndpoints []ChannelEgressEndpoint `locationName:"egressEndpoints" type:"list"`

	EncoderSettings *EncoderSettings `locationName:"encoderSettings" type:"structure"`

	Id *string `locationName:"id" type:"string"`

	InputAttachments []InputAttachment `locationName:"inputAttachments" type:"list"`

	InputSpecification *InputSpecification `locationName:"inputSpecification" type:"structure"`

	Name *string `locationName:"name" type:"string"`

	PipelinesRunningCount *int64 `locationName:"pipelinesRunningCount" type:"integer"`

	RoleArn *string `locationName:"roleArn" type:"string"`

	State ChannelState `locationName:"state" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StopChannelResponse

func (StopChannelOutput) GoString

func (s StopChannelOutput) GoString() string

GoString returns the string representation

func (StopChannelOutput) MarshalFields

func (s StopChannelOutput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (StopChannelOutput) SDKResponseMetadata

func (s StopChannelOutput) SDKResponseMetadata() aws.Response

SDKResponseMetdata return sthe response metadata for the API.

func (StopChannelOutput) String

func (s StopChannelOutput) String() string

String returns the string representation

type StopChannelRequest

type StopChannelRequest struct {
	*aws.Request
	Input *StopChannelInput
	Copy  func(*StopChannelInput) StopChannelRequest
}

StopChannelRequest is a API request type for the StopChannel API operation.

func (StopChannelRequest) Send

Send marshals and sends the StopChannel API request.

type TeletextDestinationSettings

type TeletextDestinationSettings struct {
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TeletextDestinationSettings

func (TeletextDestinationSettings) GoString

func (s TeletextDestinationSettings) GoString() string

GoString returns the string representation

func (TeletextDestinationSettings) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (TeletextDestinationSettings) String

String returns the string representation

type TeletextSourceSettings

type TeletextSourceSettings struct {

	// Specifies the teletext page number within the data stream from which to extract
	// captions. Range of 0x100 (256) to 0x8FF (2303). Unused for passthrough. Should
	// be specified as a hexadecimal string with no "0x" prefix.
	PageNumber *string `locationName:"pageNumber" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TeletextSourceSettings

func (TeletextSourceSettings) GoString

func (s TeletextSourceSettings) GoString() string

GoString returns the string representation

func (TeletextSourceSettings) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (TeletextSourceSettings) String

func (s TeletextSourceSettings) String() string

String returns the string representation

type TimecodeConfig

type TimecodeConfig struct {

	// Identifies the source for the timecode that will be associated with the events
	// outputs.-Embedded (embedded): Initialize the output timecode with timecode
	// from the the source. If no embedded timecode is detected in the source, the
	// system falls back to using "Start at 0" (zerobased).-System Clock (systemclock):
	// Use the UTC time.-Start at 0 (zerobased): The time of the first frame of
	// the event will be 00:00:00:00.
	Source TimecodeConfigSource `locationName:"source" type:"string" enum:"true"`

	// Threshold in frames beyond which output timecode is resynchronized to the
	// input timecode. Discrepancies below this threshold are permitted to avoid
	// unnecessary discontinuities in the output timecode. No timecode sync when
	// this is not specified.
	SyncThreshold *int64 `locationName:"syncThreshold" type:"integer"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TimecodeConfig

func (TimecodeConfig) GoString

func (s TimecodeConfig) GoString() string

GoString returns the string representation

func (TimecodeConfig) MarshalFields

func (s TimecodeConfig) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (TimecodeConfig) String

func (s TimecodeConfig) String() string

String returns the string representation

type TimecodeConfigSource

type TimecodeConfigSource string
const (
	TimecodeConfigSourceEmbedded    TimecodeConfigSource = "EMBEDDED"
	TimecodeConfigSourceSystemclock TimecodeConfigSource = "SYSTEMCLOCK"
	TimecodeConfigSourceZerobased   TimecodeConfigSource = "ZEROBASED"
)

Enum values for TimecodeConfigSource

func (TimecodeConfigSource) MarshalValue

func (enum TimecodeConfigSource) MarshalValue() (string, error)

func (TimecodeConfigSource) MarshalValueBuf

func (enum TimecodeConfigSource) MarshalValueBuf(b []byte) ([]byte, error)

type TtmlDestinationSettings

type TtmlDestinationSettings struct {

	// When set to passthrough, passes through style and position information from
	// a TTML-like input source (TTML, SMPTE-TT, CFF-TT) to the CFF-TT output or
	// TTML output.
	StyleControl TtmlDestinationStyleControl `locationName:"styleControl" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TtmlDestinationSettings

func (TtmlDestinationSettings) GoString

func (s TtmlDestinationSettings) GoString() string

GoString returns the string representation

func (TtmlDestinationSettings) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (TtmlDestinationSettings) String

func (s TtmlDestinationSettings) String() string

String returns the string representation

type TtmlDestinationStyleControl

type TtmlDestinationStyleControl string
const (
	TtmlDestinationStyleControlPassthrough   TtmlDestinationStyleControl = "PASSTHROUGH"
	TtmlDestinationStyleControlUseConfigured TtmlDestinationStyleControl = "USE_CONFIGURED"
)

Enum values for TtmlDestinationStyleControl

func (TtmlDestinationStyleControl) MarshalValue

func (enum TtmlDestinationStyleControl) MarshalValue() (string, error)

func (TtmlDestinationStyleControl) MarshalValueBuf

func (enum TtmlDestinationStyleControl) MarshalValueBuf(b []byte) ([]byte, error)

type UdpContainerSettings

type UdpContainerSettings struct {
	M2tsSettings *M2tsSettings `locationName:"m2tsSettings" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UdpContainerSettings

func (UdpContainerSettings) GoString

func (s UdpContainerSettings) GoString() string

GoString returns the string representation

func (UdpContainerSettings) MarshalFields

func (s UdpContainerSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (UdpContainerSettings) String

func (s UdpContainerSettings) String() string

String returns the string representation

type UdpGroupSettings

type UdpGroupSettings struct {

	// Specifies behavior of last resort when input video is lost, and no more backup
	// inputs are available. When dropTs is selected the entire transport stream
	// will stop being emitted. When dropProgram is selected the program can be
	// dropped from the transport stream (and replaced with null packets to meet
	// the TS bitrate requirement). Or, when emitProgram is chosen the transport
	// stream will continue to be produced normally with repeat frames, black frames,
	// or slate frames substituted for the absent input video.
	InputLossAction InputLossActionForUdpOut `locationName:"inputLossAction" type:"string" enum:"true"`

	// Indicates ID3 frame that has the timecode.
	TimedMetadataId3Frame UdpTimedMetadataId3Frame `locationName:"timedMetadataId3Frame" type:"string" enum:"true"`

	// Timed Metadata interval in seconds.
	TimedMetadataId3Period *int64 `locationName:"timedMetadataId3Period" type:"integer"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UdpGroupSettings

func (UdpGroupSettings) GoString

func (s UdpGroupSettings) GoString() string

GoString returns the string representation

func (UdpGroupSettings) MarshalFields

func (s UdpGroupSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (UdpGroupSettings) String

func (s UdpGroupSettings) String() string

String returns the string representation

type UdpOutputSettings

type UdpOutputSettings struct {

	// UDP output buffering in milliseconds. Larger values increase latency through
	// the transcoder but simultaneously assist the transcoder in maintaining a
	// constant, low-jitter UDP/RTP output while accommodating clock recovery, input
	// switching, input disruptions, picture reordering, etc.
	BufferMsec *int64 `locationName:"bufferMsec" type:"integer"`

	ContainerSettings *UdpContainerSettings `locationName:"containerSettings" type:"structure"`

	// Destination address and port number for RTP or UDP packets. Can be unicast
	// or multicast RTP or UDP (eg. rtp://239.10.10.10:5001 or udp://10.100.100.100:5002).
	Destination *OutputLocationRef `locationName:"destination" type:"structure"`

	// Settings for enabling and adjusting Forward Error Correction on UDP outputs.
	FecOutputSettings *FecOutputSettings `locationName:"fecOutputSettings" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UdpOutputSettings

func (UdpOutputSettings) GoString

func (s UdpOutputSettings) GoString() string

GoString returns the string representation

func (UdpOutputSettings) MarshalFields

func (s UdpOutputSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (UdpOutputSettings) String

func (s UdpOutputSettings) String() string

String returns the string representation

type UdpTimedMetadataId3Frame

type UdpTimedMetadataId3Frame string
const (
	UdpTimedMetadataId3FrameNone UdpTimedMetadataId3Frame = "NONE"
	UdpTimedMetadataId3FramePriv UdpTimedMetadataId3Frame = "PRIV"
	UdpTimedMetadataId3FrameTdrl UdpTimedMetadataId3Frame = "TDRL"
)

Enum values for UdpTimedMetadataId3Frame

func (UdpTimedMetadataId3Frame) MarshalValue

func (enum UdpTimedMetadataId3Frame) MarshalValue() (string, error)

func (UdpTimedMetadataId3Frame) MarshalValueBuf

func (enum UdpTimedMetadataId3Frame) MarshalValueBuf(b []byte) ([]byte, error)

type UpdateChannelInput

type UpdateChannelInput struct {

	// ChannelId is a required field
	ChannelId *string `location:"uri" locationName:"channelId" type:"string" required:"true"`

	Destinations []OutputDestination `locationName:"destinations" type:"list"`

	EncoderSettings *EncoderSettings `locationName:"encoderSettings" type:"structure"`

	InputSpecification *InputSpecification `locationName:"inputSpecification" type:"structure"`

	Name *string `locationName:"name" type:"string"`

	RoleArn *string `locationName:"roleArn" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannelRequest

func (UpdateChannelInput) GoString

func (s UpdateChannelInput) GoString() string

GoString returns the string representation

func (UpdateChannelInput) MarshalFields

func (s UpdateChannelInput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (UpdateChannelInput) String

func (s UpdateChannelInput) String() string

String returns the string representation

func (*UpdateChannelInput) Validate

func (s *UpdateChannelInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdateChannelOutput

type UpdateChannelOutput struct {
	Channel *Channel `locationName:"channel" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannelResponse

func (UpdateChannelOutput) GoString

func (s UpdateChannelOutput) GoString() string

GoString returns the string representation

func (UpdateChannelOutput) MarshalFields

func (s UpdateChannelOutput) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (UpdateChannelOutput) SDKResponseMetadata

func (s UpdateChannelOutput) SDKResponseMetadata() aws.Response

SDKResponseMetdata return sthe response metadata for the API.

func (UpdateChannelOutput) String

func (s UpdateChannelOutput) String() string

String returns the string representation

type UpdateChannelRequest

type UpdateChannelRequest struct {
	*aws.Request
	Input *UpdateChannelInput
	Copy  func(*UpdateChannelInput) UpdateChannelRequest
}

UpdateChannelRequest is a API request type for the UpdateChannel API operation.

func (UpdateChannelRequest) Send

Send marshals and sends the UpdateChannel API request.

type ValidationError

type ValidationError struct {
	ElementPath *string `locationName:"elementPath" type:"string"`

	ErrorMessage *string `locationName:"errorMessage" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ValidationError

func (ValidationError) GoString

func (s ValidationError) GoString() string

GoString returns the string representation

func (ValidationError) MarshalFields

func (s ValidationError) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (ValidationError) String

func (s ValidationError) String() string

String returns the string representation

type VideoCodecSettings

type VideoCodecSettings struct {
	H264Settings *H264Settings `locationName:"h264Settings" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/VideoCodecSettings

func (VideoCodecSettings) GoString

func (s VideoCodecSettings) GoString() string

GoString returns the string representation

func (VideoCodecSettings) MarshalFields

func (s VideoCodecSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (VideoCodecSettings) String

func (s VideoCodecSettings) String() string

String returns the string representation

type VideoDescription

type VideoDescription struct {

	// Video codec settings.
	CodecSettings *VideoCodecSettings `locationName:"codecSettings" type:"structure"`

	// Output video height (in pixels). Leave blank to use source video height.
	// If left blank, width must also be unspecified.
	Height *int64 `locationName:"height" type:"integer"`

	// The name of this VideoDescription. Outputs will use this name to uniquely
	// identify this Description. Description names should be unique within this
	// Live Event.
	Name *string `locationName:"name" type:"string"`

	// Indicates how to respond to the AFD values in the input stream. Setting to
	// "respond" causes input video to be clipped, depending on AFD value, input
	// display aspect ratio and output display aspect ratio.
	RespondToAfd VideoDescriptionRespondToAfd `locationName:"respondToAfd" type:"string" enum:"true"`

	// When set to "stretchToOutput", automatically configures the output position
	// to stretch the video to the specified output resolution. This option will
	// override any position value.
	ScalingBehavior VideoDescriptionScalingBehavior `locationName:"scalingBehavior" type:"string" enum:"true"`

	// Changes the width of the anti-alias filter kernel used for scaling. Only
	// applies if scaling is being performed and antiAlias is set to true. 0 is
	// the softest setting, 100 the sharpest, and 50 recommended for most content.
	Sharpness *int64 `locationName:"sharpness" type:"integer"`

	// Output video width (in pixels). Leave out to use source video width. If left
	// out, height must also be left out. Display aspect ratio is always preserved
	// by letterboxing or pillarboxing when necessary.
	Width *int64 `locationName:"width" type:"integer"`
	// contains filtered or unexported fields
}

Video settings for this stream. Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/VideoDescription

func (VideoDescription) GoString

func (s VideoDescription) GoString() string

GoString returns the string representation

func (VideoDescription) MarshalFields

func (s VideoDescription) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (VideoDescription) String

func (s VideoDescription) String() string

String returns the string representation

type VideoDescriptionRespondToAfd

type VideoDescriptionRespondToAfd string
const (
	VideoDescriptionRespondToAfdNone        VideoDescriptionRespondToAfd = "NONE"
	VideoDescriptionRespondToAfdPassthrough VideoDescriptionRespondToAfd = "PASSTHROUGH"
	VideoDescriptionRespondToAfdRespond     VideoDescriptionRespondToAfd = "RESPOND"
)

Enum values for VideoDescriptionRespondToAfd

func (VideoDescriptionRespondToAfd) MarshalValue

func (enum VideoDescriptionRespondToAfd) MarshalValue() (string, error)

func (VideoDescriptionRespondToAfd) MarshalValueBuf

func (enum VideoDescriptionRespondToAfd) MarshalValueBuf(b []byte) ([]byte, error)

type VideoDescriptionScalingBehavior

type VideoDescriptionScalingBehavior string
const (
	VideoDescriptionScalingBehaviorDefault         VideoDescriptionScalingBehavior = "DEFAULT"
	VideoDescriptionScalingBehaviorStretchToOutput VideoDescriptionScalingBehavior = "STRETCH_TO_OUTPUT"
)

Enum values for VideoDescriptionScalingBehavior

func (VideoDescriptionScalingBehavior) MarshalValue

func (enum VideoDescriptionScalingBehavior) MarshalValue() (string, error)

func (VideoDescriptionScalingBehavior) MarshalValueBuf

func (enum VideoDescriptionScalingBehavior) MarshalValueBuf(b []byte) ([]byte, error)

type VideoSelector

type VideoSelector struct {

	// Specifies the colorspace of an input. This setting works in tandem with colorSpaceConversion
	// to determine if any conversion will be performed.
	ColorSpace VideoSelectorColorSpace `locationName:"colorSpace" type:"string" enum:"true"`

	// Applies only if colorSpace is a value other than follow. This field controls
	// how the value in the colorSpace field will be used. fallback means that when
	// the input does include color space data, that data will be used, but when
	// the input has no color space data, the value in colorSpace will be used.
	// Choose fallback if your input is sometimes missing color space data, but
	// when it does have color space data, that data is correct. force means to
	// always use the value in colorSpace. Choose force if your input usually has
	// no color space data or might have unreliable color space data.
	ColorSpaceUsage VideoSelectorColorSpaceUsage `locationName:"colorSpaceUsage" type:"string" enum:"true"`

	// The video selector settings.
	SelectorSettings *VideoSelectorSettings `locationName:"selectorSettings" type:"structure"`
	// contains filtered or unexported fields
}

Specifies a particular video stream within an input source. An input may have only a single video selector. Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/VideoSelector

func (VideoSelector) GoString

func (s VideoSelector) GoString() string

GoString returns the string representation

func (VideoSelector) MarshalFields

func (s VideoSelector) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (VideoSelector) String

func (s VideoSelector) String() string

String returns the string representation

type VideoSelectorColorSpace

type VideoSelectorColorSpace string
const (
	VideoSelectorColorSpaceFollow VideoSelectorColorSpace = "FOLLOW"
	VideoSelectorColorSpaceRec601 VideoSelectorColorSpace = "REC_601"
	VideoSelectorColorSpaceRec709 VideoSelectorColorSpace = "REC_709"
)

Enum values for VideoSelectorColorSpace

func (VideoSelectorColorSpace) MarshalValue

func (enum VideoSelectorColorSpace) MarshalValue() (string, error)

func (VideoSelectorColorSpace) MarshalValueBuf

func (enum VideoSelectorColorSpace) MarshalValueBuf(b []byte) ([]byte, error)

type VideoSelectorColorSpaceUsage

type VideoSelectorColorSpaceUsage string
const (
	VideoSelectorColorSpaceUsageFallback VideoSelectorColorSpaceUsage = "FALLBACK"
	VideoSelectorColorSpaceUsageForce    VideoSelectorColorSpaceUsage = "FORCE"
)

Enum values for VideoSelectorColorSpaceUsage

func (VideoSelectorColorSpaceUsage) MarshalValue

func (enum VideoSelectorColorSpaceUsage) MarshalValue() (string, error)

func (VideoSelectorColorSpaceUsage) MarshalValueBuf

func (enum VideoSelectorColorSpaceUsage) MarshalValueBuf(b []byte) ([]byte, error)

type VideoSelectorPid

type VideoSelectorPid struct {

	// Selects a specific PID from within a video source.
	Pid *int64 `locationName:"pid" type:"integer"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/VideoSelectorPid

func (VideoSelectorPid) GoString

func (s VideoSelectorPid) GoString() string

GoString returns the string representation

func (VideoSelectorPid) MarshalFields

func (s VideoSelectorPid) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (VideoSelectorPid) String

func (s VideoSelectorPid) String() string

String returns the string representation

type VideoSelectorProgramId

type VideoSelectorProgramId struct {

	// Selects a specific program from within a multi-program transport stream.
	// If the program doesn't exist, the first program within the transport stream
	// will be selected by default.
	ProgramId *int64 `locationName:"programId" type:"integer"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/VideoSelectorProgramId

func (VideoSelectorProgramId) GoString

func (s VideoSelectorProgramId) GoString() string

GoString returns the string representation

func (VideoSelectorProgramId) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (VideoSelectorProgramId) String

func (s VideoSelectorProgramId) String() string

String returns the string representation

type VideoSelectorSettings

type VideoSelectorSettings struct {
	VideoSelectorPid *VideoSelectorPid `locationName:"videoSelectorPid" type:"structure"`

	VideoSelectorProgramId *VideoSelectorProgramId `locationName:"videoSelectorProgramId" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/VideoSelectorSettings

func (VideoSelectorSettings) GoString

func (s VideoSelectorSettings) GoString() string

GoString returns the string representation

func (VideoSelectorSettings) MarshalFields

func (s VideoSelectorSettings) MarshalFields(e protocol.FieldEncoder) error

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (VideoSelectorSettings) String

func (s VideoSelectorSettings) String() string

String returns the string representation

type WebvttDestinationSettings

type WebvttDestinationSettings struct {
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/WebvttDestinationSettings

func (WebvttDestinationSettings) GoString

func (s WebvttDestinationSettings) GoString() string

GoString returns the string representation

func (WebvttDestinationSettings) MarshalFields

MarshalFields encodes the AWS API shape using the passed in protocol encoder.

func (WebvttDestinationSettings) String

func (s WebvttDestinationSettings) String() string

String returns the string representation

Directories

Path Synopsis
Package medialiveiface provides an interface to enable mocking the AWS Elemental MediaLive service client for testing your code.
Package medialiveiface provides an interface to enable mocking the AWS Elemental MediaLive service client for testing your code.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL