id
int32
0
167k
repo
stringlengths
5
54
path
stringlengths
4
155
func_name
stringlengths
1
118
original_string
stringlengths
52
85.5k
language
stringclasses
1 value
code
stringlengths
52
85.5k
code_tokens
sequencelengths
21
1.41k
docstring
stringlengths
6
2.61k
docstring_tokens
sequencelengths
3
215
sha
stringlengths
40
40
url
stringlengths
85
252
1,900
aws/aws-sdk-go
aws/crr/cache.go
Add
func (c *EndpointCache) Add(endpoint Endpoint) { // de-dups multiple adds of an endpoint with a pre-existing key if iface, ok := c.endpoints.Load(endpoint.Key); ok { e := iface.(Endpoint) if e.Len() > 0 { return } } c.endpoints.Store(endpoint.Key, endpoint) size := atomic.AddInt64(&c.size, 1) if size > 0 && size > c.endpointLimit { c.deleteRandomKey() } }
go
func (c *EndpointCache) Add(endpoint Endpoint) { // de-dups multiple adds of an endpoint with a pre-existing key if iface, ok := c.endpoints.Load(endpoint.Key); ok { e := iface.(Endpoint) if e.Len() > 0 { return } } c.endpoints.Store(endpoint.Key, endpoint) size := atomic.AddInt64(&c.size, 1) if size > 0 && size > c.endpointLimit { c.deleteRandomKey() } }
[ "func", "(", "c", "*", "EndpointCache", ")", "Add", "(", "endpoint", "Endpoint", ")", "{", "// de-dups multiple adds of an endpoint with a pre-existing key", "if", "iface", ",", "ok", ":=", "c", ".", "endpoints", ".", "Load", "(", "endpoint", ".", "Key", ")", ";", "ok", "{", "e", ":=", "iface", ".", "(", "Endpoint", ")", "\n", "if", "e", ".", "Len", "(", ")", ">", "0", "{", "return", "\n", "}", "\n", "}", "\n", "c", ".", "endpoints", ".", "Store", "(", "endpoint", ".", "Key", ",", "endpoint", ")", "\n\n", "size", ":=", "atomic", ".", "AddInt64", "(", "&", "c", ".", "size", ",", "1", ")", "\n", "if", "size", ">", "0", "&&", "size", ">", "c", ".", "endpointLimit", "{", "c", ".", "deleteRandomKey", "(", ")", "\n", "}", "\n", "}" ]
// Add is a concurrent safe operation that will allow new endpoints to be added // to the cache. If the cache is full, the number of endpoints equal endpointLimit, // then this will remove the oldest entry before adding the new endpoint.
[ "Add", "is", "a", "concurrent", "safe", "operation", "that", "will", "allow", "new", "endpoints", "to", "be", "added", "to", "the", "cache", ".", "If", "the", "cache", "is", "full", "the", "number", "of", "endpoints", "equal", "endpointLimit", "then", "this", "will", "remove", "the", "oldest", "entry", "before", "adding", "the", "new", "endpoint", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/aws/crr/cache.go#L76-L90
1,901
aws/aws-sdk-go
aws/crr/cache.go
deleteRandomKey
func (c *EndpointCache) deleteRandomKey() bool { atomic.AddInt64(&c.size, -1) found := false c.endpoints.Range(func(key, value interface{}) bool { found = true c.endpoints.Delete(key) return false }) return found }
go
func (c *EndpointCache) deleteRandomKey() bool { atomic.AddInt64(&c.size, -1) found := false c.endpoints.Range(func(key, value interface{}) bool { found = true c.endpoints.Delete(key) return false }) return found }
[ "func", "(", "c", "*", "EndpointCache", ")", "deleteRandomKey", "(", ")", "bool", "{", "atomic", ".", "AddInt64", "(", "&", "c", ".", "size", ",", "-", "1", ")", "\n", "found", ":=", "false", "\n\n", "c", ".", "endpoints", ".", "Range", "(", "func", "(", "key", ",", "value", "interface", "{", "}", ")", "bool", "{", "found", "=", "true", "\n", "c", ".", "endpoints", ".", "Delete", "(", "key", ")", "\n\n", "return", "false", "\n", "}", ")", "\n\n", "return", "found", "\n", "}" ]
// deleteRandomKey will delete a random key from the cache. If // no key was deleted false will be returned.
[ "deleteRandomKey", "will", "delete", "a", "random", "key", "from", "the", "cache", ".", "If", "no", "key", "was", "deleted", "false", "will", "be", "returned", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/aws/crr/cache.go#L94-L106
1,902
aws/aws-sdk-go
aws/crr/cache.go
discover
func (c *EndpointCache) discover(d Discoverer, endpointKey string) (Endpoint, error) { endpoint, err := d.Discover() if err != nil { return Endpoint{}, err } endpoint.Key = endpointKey c.Add(endpoint) return endpoint, nil }
go
func (c *EndpointCache) discover(d Discoverer, endpointKey string) (Endpoint, error) { endpoint, err := d.Discover() if err != nil { return Endpoint{}, err } endpoint.Key = endpointKey c.Add(endpoint) return endpoint, nil }
[ "func", "(", "c", "*", "EndpointCache", ")", "discover", "(", "d", "Discoverer", ",", "endpointKey", "string", ")", "(", "Endpoint", ",", "error", ")", "{", "endpoint", ",", "err", ":=", "d", ".", "Discover", "(", ")", "\n", "if", "err", "!=", "nil", "{", "return", "Endpoint", "{", "}", ",", "err", "\n", "}", "\n\n", "endpoint", ".", "Key", "=", "endpointKey", "\n", "c", ".", "Add", "(", "endpoint", ")", "\n\n", "return", "endpoint", ",", "nil", "\n", "}" ]
// discover will get and store and endpoint using the Discoverer.
[ "discover", "will", "get", "and", "store", "and", "endpoint", "using", "the", "Discoverer", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/aws/crr/cache.go#L109-L119
1,903
aws/aws-sdk-go
service/eks/waiters.go
WaitUntilClusterActive
func (c *EKS) WaitUntilClusterActive(input *DescribeClusterInput) error { return c.WaitUntilClusterActiveWithContext(aws.BackgroundContext(), input) }
go
func (c *EKS) WaitUntilClusterActive(input *DescribeClusterInput) error { return c.WaitUntilClusterActiveWithContext(aws.BackgroundContext(), input) }
[ "func", "(", "c", "*", "EKS", ")", "WaitUntilClusterActive", "(", "input", "*", "DescribeClusterInput", ")", "error", "{", "return", "c", ".", "WaitUntilClusterActiveWithContext", "(", "aws", ".", "BackgroundContext", "(", ")", ",", "input", ")", "\n", "}" ]
// WaitUntilClusterActive uses the Amazon EKS API operation // DescribeCluster to wait for a condition to be met before returning. // If the condition is not met within the max attempt window, an error will // be returned.
[ "WaitUntilClusterActive", "uses", "the", "Amazon", "EKS", "API", "operation", "DescribeCluster", "to", "wait", "for", "a", "condition", "to", "be", "met", "before", "returning", ".", "If", "the", "condition", "is", "not", "met", "within", "the", "max", "attempt", "window", "an", "error", "will", "be", "returned", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/eks/waiters.go#L16-L18
1,904
aws/aws-sdk-go
service/eks/waiters.go
WaitUntilClusterDeleted
func (c *EKS) WaitUntilClusterDeleted(input *DescribeClusterInput) error { return c.WaitUntilClusterDeletedWithContext(aws.BackgroundContext(), input) }
go
func (c *EKS) WaitUntilClusterDeleted(input *DescribeClusterInput) error { return c.WaitUntilClusterDeletedWithContext(aws.BackgroundContext(), input) }
[ "func", "(", "c", "*", "EKS", ")", "WaitUntilClusterDeleted", "(", "input", "*", "DescribeClusterInput", ")", "error", "{", "return", "c", ".", "WaitUntilClusterDeletedWithContext", "(", "aws", ".", "BackgroundContext", "(", ")", ",", "input", ")", "\n", "}" ]
// WaitUntilClusterDeleted uses the Amazon EKS API operation // DescribeCluster to wait for a condition to be met before returning. // If the condition is not met within the max attempt window, an error will // be returned.
[ "WaitUntilClusterDeleted", "uses", "the", "Amazon", "EKS", "API", "operation", "DescribeCluster", "to", "wait", "for", "a", "condition", "to", "be", "met", "before", "returning", ".", "If", "the", "condition", "is", "not", "met", "within", "the", "max", "attempt", "window", "an", "error", "will", "be", "returned", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/eks/waiters.go#L72-L74
1,905
aws/aws-sdk-go
service/mediaconvert/api.go
SetAudioDescriptionBroadcasterMix
func (s *AacSettings) SetAudioDescriptionBroadcasterMix(v string) *AacSettings { s.AudioDescriptionBroadcasterMix = &v return s }
go
func (s *AacSettings) SetAudioDescriptionBroadcasterMix(v string) *AacSettings { s.AudioDescriptionBroadcasterMix = &v return s }
[ "func", "(", "s", "*", "AacSettings", ")", "SetAudioDescriptionBroadcasterMix", "(", "v", "string", ")", "*", "AacSettings", "{", "s", ".", "AudioDescriptionBroadcasterMix", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetAudioDescriptionBroadcasterMix sets the AudioDescriptionBroadcasterMix field's value.
[ "SetAudioDescriptionBroadcasterMix", "sets", "the", "AudioDescriptionBroadcasterMix", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L2608-L2611
1,906
aws/aws-sdk-go
service/mediaconvert/api.go
SetRawFormat
func (s *AacSettings) SetRawFormat(v string) *AacSettings { s.RawFormat = &v return s }
go
func (s *AacSettings) SetRawFormat(v string) *AacSettings { s.RawFormat = &v return s }
[ "func", "(", "s", "*", "AacSettings", ")", "SetRawFormat", "(", "v", "string", ")", "*", "AacSettings", "{", "s", ".", "RawFormat", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetRawFormat sets the RawFormat field's value.
[ "SetRawFormat", "sets", "the", "RawFormat", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L2638-L2641
1,907
aws/aws-sdk-go
service/mediaconvert/api.go
SetSpecification
func (s *AacSettings) SetSpecification(v string) *AacSettings { s.Specification = &v return s }
go
func (s *AacSettings) SetSpecification(v string) *AacSettings { s.Specification = &v return s }
[ "func", "(", "s", "*", "AacSettings", ")", "SetSpecification", "(", "v", "string", ")", "*", "AacSettings", "{", "s", ".", "Specification", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetSpecification sets the Specification field's value.
[ "SetSpecification", "sets", "the", "Specification", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L2650-L2653
1,908
aws/aws-sdk-go
service/mediaconvert/api.go
SetVbrQuality
func (s *AacSettings) SetVbrQuality(v string) *AacSettings { s.VbrQuality = &v return s }
go
func (s *AacSettings) SetVbrQuality(v string) *AacSettings { s.VbrQuality = &v return s }
[ "func", "(", "s", "*", "AacSettings", ")", "SetVbrQuality", "(", "v", "string", ")", "*", "AacSettings", "{", "s", ".", "VbrQuality", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetVbrQuality sets the VbrQuality field's value.
[ "SetVbrQuality", "sets", "the", "VbrQuality", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L2656-L2659
1,909
aws/aws-sdk-go
service/mediaconvert/api.go
SetDynamicRangeCompressionProfile
func (s *Ac3Settings) SetDynamicRangeCompressionProfile(v string) *Ac3Settings { s.DynamicRangeCompressionProfile = &v return s }
go
func (s *Ac3Settings) SetDynamicRangeCompressionProfile(v string) *Ac3Settings { s.DynamicRangeCompressionProfile = &v return s }
[ "func", "(", "s", "*", "Ac3Settings", ")", "SetDynamicRangeCompressionProfile", "(", "v", "string", ")", "*", "Ac3Settings", "{", "s", ".", "DynamicRangeCompressionProfile", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetDynamicRangeCompressionProfile sets the DynamicRangeCompressionProfile field's value.
[ "SetDynamicRangeCompressionProfile", "sets", "the", "DynamicRangeCompressionProfile", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L2751-L2754
1,910
aws/aws-sdk-go
service/mediaconvert/api.go
SetSourceAncillaryChannelNumber
func (s *AncillarySourceSettings) SetSourceAncillaryChannelNumber(v int64) *AncillarySourceSettings { s.SourceAncillaryChannelNumber = &v return s }
go
func (s *AncillarySourceSettings) SetSourceAncillaryChannelNumber(v int64) *AncillarySourceSettings { s.SourceAncillaryChannelNumber = &v return s }
[ "func", "(", "s", "*", "AncillarySourceSettings", ")", "SetSourceAncillaryChannelNumber", "(", "v", "int64", ")", "*", "AncillarySourceSettings", "{", "s", ".", "SourceAncillaryChannelNumber", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetSourceAncillaryChannelNumber sets the SourceAncillaryChannelNumber field's value.
[ "SetSourceAncillaryChannelNumber", "sets", "the", "SourceAncillaryChannelNumber", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L2912-L2915
1,911
aws/aws-sdk-go
service/mediaconvert/api.go
SetAacSettings
func (s *AudioCodecSettings) SetAacSettings(v *AacSettings) *AudioCodecSettings { s.AacSettings = v return s }
go
func (s *AudioCodecSettings) SetAacSettings(v *AacSettings) *AudioCodecSettings { s.AacSettings = v return s }
[ "func", "(", "s", "*", "AudioCodecSettings", ")", "SetAacSettings", "(", "v", "*", "AacSettings", ")", "*", "AudioCodecSettings", "{", "s", ".", "AacSettings", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetAacSettings sets the AacSettings field's value.
[ "SetAacSettings", "sets", "the", "AacSettings", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3067-L3070
1,912
aws/aws-sdk-go
service/mediaconvert/api.go
SetAc3Settings
func (s *AudioCodecSettings) SetAc3Settings(v *Ac3Settings) *AudioCodecSettings { s.Ac3Settings = v return s }
go
func (s *AudioCodecSettings) SetAc3Settings(v *Ac3Settings) *AudioCodecSettings { s.Ac3Settings = v return s }
[ "func", "(", "s", "*", "AudioCodecSettings", ")", "SetAc3Settings", "(", "v", "*", "Ac3Settings", ")", "*", "AudioCodecSettings", "{", "s", ".", "Ac3Settings", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetAc3Settings sets the Ac3Settings field's value.
[ "SetAc3Settings", "sets", "the", "Ac3Settings", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3073-L3076
1,913
aws/aws-sdk-go
service/mediaconvert/api.go
SetAiffSettings
func (s *AudioCodecSettings) SetAiffSettings(v *AiffSettings) *AudioCodecSettings { s.AiffSettings = v return s }
go
func (s *AudioCodecSettings) SetAiffSettings(v *AiffSettings) *AudioCodecSettings { s.AiffSettings = v return s }
[ "func", "(", "s", "*", "AudioCodecSettings", ")", "SetAiffSettings", "(", "v", "*", "AiffSettings", ")", "*", "AudioCodecSettings", "{", "s", ".", "AiffSettings", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetAiffSettings sets the AiffSettings field's value.
[ "SetAiffSettings", "sets", "the", "AiffSettings", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3079-L3082
1,914
aws/aws-sdk-go
service/mediaconvert/api.go
SetEac3Settings
func (s *AudioCodecSettings) SetEac3Settings(v *Eac3Settings) *AudioCodecSettings { s.Eac3Settings = v return s }
go
func (s *AudioCodecSettings) SetEac3Settings(v *Eac3Settings) *AudioCodecSettings { s.Eac3Settings = v return s }
[ "func", "(", "s", "*", "AudioCodecSettings", ")", "SetEac3Settings", "(", "v", "*", "Eac3Settings", ")", "*", "AudioCodecSettings", "{", "s", ".", "Eac3Settings", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetEac3Settings sets the Eac3Settings field's value.
[ "SetEac3Settings", "sets", "the", "Eac3Settings", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3091-L3094
1,915
aws/aws-sdk-go
service/mediaconvert/api.go
SetMp2Settings
func (s *AudioCodecSettings) SetMp2Settings(v *Mp2Settings) *AudioCodecSettings { s.Mp2Settings = v return s }
go
func (s *AudioCodecSettings) SetMp2Settings(v *Mp2Settings) *AudioCodecSettings { s.Mp2Settings = v return s }
[ "func", "(", "s", "*", "AudioCodecSettings", ")", "SetMp2Settings", "(", "v", "*", "Mp2Settings", ")", "*", "AudioCodecSettings", "{", "s", ".", "Mp2Settings", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetMp2Settings sets the Mp2Settings field's value.
[ "SetMp2Settings", "sets", "the", "Mp2Settings", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3097-L3100
1,916
aws/aws-sdk-go
service/mediaconvert/api.go
SetWavSettings
func (s *AudioCodecSettings) SetWavSettings(v *WavSettings) *AudioCodecSettings { s.WavSettings = v return s }
go
func (s *AudioCodecSettings) SetWavSettings(v *WavSettings) *AudioCodecSettings { s.WavSettings = v return s }
[ "func", "(", "s", "*", "AudioCodecSettings", ")", "SetWavSettings", "(", "v", "*", "WavSettings", ")", "*", "AudioCodecSettings", "{", "s", ".", "WavSettings", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetWavSettings sets the WavSettings field's value.
[ "SetWavSettings", "sets", "the", "WavSettings", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3103-L3106
1,917
aws/aws-sdk-go
service/mediaconvert/api.go
SetAudioNormalizationSettings
func (s *AudioDescription) SetAudioNormalizationSettings(v *AudioNormalizationSettings) *AudioDescription { s.AudioNormalizationSettings = v return s }
go
func (s *AudioDescription) SetAudioNormalizationSettings(v *AudioNormalizationSettings) *AudioDescription { s.AudioNormalizationSettings = v return s }
[ "func", "(", "s", "*", "AudioDescription", ")", "SetAudioNormalizationSettings", "(", "v", "*", "AudioNormalizationSettings", ")", "*", "AudioDescription", "{", "s", ".", "AudioNormalizationSettings", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetAudioNormalizationSettings sets the AudioNormalizationSettings field's value.
[ "SetAudioNormalizationSettings", "sets", "the", "AudioNormalizationSettings", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3215-L3218
1,918
aws/aws-sdk-go
service/mediaconvert/api.go
SetAudioSourceName
func (s *AudioDescription) SetAudioSourceName(v string) *AudioDescription { s.AudioSourceName = &v return s }
go
func (s *AudioDescription) SetAudioSourceName(v string) *AudioDescription { s.AudioSourceName = &v return s }
[ "func", "(", "s", "*", "AudioDescription", ")", "SetAudioSourceName", "(", "v", "string", ")", "*", "AudioDescription", "{", "s", ".", "AudioSourceName", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetAudioSourceName sets the AudioSourceName field's value.
[ "SetAudioSourceName", "sets", "the", "AudioSourceName", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3221-L3224
1,919
aws/aws-sdk-go
service/mediaconvert/api.go
SetAudioTypeControl
func (s *AudioDescription) SetAudioTypeControl(v string) *AudioDescription { s.AudioTypeControl = &v return s }
go
func (s *AudioDescription) SetAudioTypeControl(v string) *AudioDescription { s.AudioTypeControl = &v return s }
[ "func", "(", "s", "*", "AudioDescription", ")", "SetAudioTypeControl", "(", "v", "string", ")", "*", "AudioDescription", "{", "s", ".", "AudioTypeControl", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetAudioTypeControl sets the AudioTypeControl field's value.
[ "SetAudioTypeControl", "sets", "the", "AudioTypeControl", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3233-L3236
1,920
aws/aws-sdk-go
service/mediaconvert/api.go
SetLanguageCodeControl
func (s *AudioDescription) SetLanguageCodeControl(v string) *AudioDescription { s.LanguageCodeControl = &v return s }
go
func (s *AudioDescription) SetLanguageCodeControl(v string) *AudioDescription { s.LanguageCodeControl = &v return s }
[ "func", "(", "s", "*", "AudioDescription", ")", "SetLanguageCodeControl", "(", "v", "string", ")", "*", "AudioDescription", "{", "s", ".", "LanguageCodeControl", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetLanguageCodeControl sets the LanguageCodeControl field's value.
[ "SetLanguageCodeControl", "sets", "the", "LanguageCodeControl", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3257-L3260
1,921
aws/aws-sdk-go
service/mediaconvert/api.go
SetAlgorithmControl
func (s *AudioNormalizationSettings) SetAlgorithmControl(v string) *AudioNormalizationSettings { s.AlgorithmControl = &v return s }
go
func (s *AudioNormalizationSettings) SetAlgorithmControl(v string) *AudioNormalizationSettings { s.AlgorithmControl = &v return s }
[ "func", "(", "s", "*", "AudioNormalizationSettings", ")", "SetAlgorithmControl", "(", "v", "string", ")", "*", "AudioNormalizationSettings", "{", "s", ".", "AlgorithmControl", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetAlgorithmControl sets the AlgorithmControl field's value.
[ "SetAlgorithmControl", "sets", "the", "AlgorithmControl", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3335-L3338
1,922
aws/aws-sdk-go
service/mediaconvert/api.go
SetCorrectionGateLevel
func (s *AudioNormalizationSettings) SetCorrectionGateLevel(v int64) *AudioNormalizationSettings { s.CorrectionGateLevel = &v return s }
go
func (s *AudioNormalizationSettings) SetCorrectionGateLevel(v int64) *AudioNormalizationSettings { s.CorrectionGateLevel = &v return s }
[ "func", "(", "s", "*", "AudioNormalizationSettings", ")", "SetCorrectionGateLevel", "(", "v", "int64", ")", "*", "AudioNormalizationSettings", "{", "s", ".", "CorrectionGateLevel", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetCorrectionGateLevel sets the CorrectionGateLevel field's value.
[ "SetCorrectionGateLevel", "sets", "the", "CorrectionGateLevel", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3341-L3344
1,923
aws/aws-sdk-go
service/mediaconvert/api.go
SetLoudnessLogging
func (s *AudioNormalizationSettings) SetLoudnessLogging(v string) *AudioNormalizationSettings { s.LoudnessLogging = &v return s }
go
func (s *AudioNormalizationSettings) SetLoudnessLogging(v string) *AudioNormalizationSettings { s.LoudnessLogging = &v return s }
[ "func", "(", "s", "*", "AudioNormalizationSettings", ")", "SetLoudnessLogging", "(", "v", "string", ")", "*", "AudioNormalizationSettings", "{", "s", ".", "LoudnessLogging", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetLoudnessLogging sets the LoudnessLogging field's value.
[ "SetLoudnessLogging", "sets", "the", "LoudnessLogging", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3347-L3350
1,924
aws/aws-sdk-go
service/mediaconvert/api.go
SetPeakCalculation
func (s *AudioNormalizationSettings) SetPeakCalculation(v string) *AudioNormalizationSettings { s.PeakCalculation = &v return s }
go
func (s *AudioNormalizationSettings) SetPeakCalculation(v string) *AudioNormalizationSettings { s.PeakCalculation = &v return s }
[ "func", "(", "s", "*", "AudioNormalizationSettings", ")", "SetPeakCalculation", "(", "v", "string", ")", "*", "AudioNormalizationSettings", "{", "s", ".", "PeakCalculation", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetPeakCalculation sets the PeakCalculation field's value.
[ "SetPeakCalculation", "sets", "the", "PeakCalculation", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3353-L3356
1,925
aws/aws-sdk-go
service/mediaconvert/api.go
SetTargetLkfs
func (s *AudioNormalizationSettings) SetTargetLkfs(v float64) *AudioNormalizationSettings { s.TargetLkfs = &v return s }
go
func (s *AudioNormalizationSettings) SetTargetLkfs(v float64) *AudioNormalizationSettings { s.TargetLkfs = &v return s }
[ "func", "(", "s", "*", "AudioNormalizationSettings", ")", "SetTargetLkfs", "(", "v", "float64", ")", "*", "AudioNormalizationSettings", "{", "s", ".", "TargetLkfs", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetTargetLkfs sets the TargetLkfs field's value.
[ "SetTargetLkfs", "sets", "the", "TargetLkfs", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3359-L3362
1,926
aws/aws-sdk-go
service/mediaconvert/api.go
SetDefaultSelection
func (s *AudioSelector) SetDefaultSelection(v string) *AudioSelector { s.DefaultSelection = &v return s }
go
func (s *AudioSelector) SetDefaultSelection(v string) *AudioSelector { s.DefaultSelection = &v return s }
[ "func", "(", "s", "*", "AudioSelector", ")", "SetDefaultSelection", "(", "v", "string", ")", "*", "AudioSelector", "{", "s", ".", "DefaultSelection", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetDefaultSelection sets the DefaultSelection field's value.
[ "SetDefaultSelection", "sets", "the", "DefaultSelection", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3457-L3460
1,927
aws/aws-sdk-go
service/mediaconvert/api.go
SetExternalAudioFileInput
func (s *AudioSelector) SetExternalAudioFileInput(v string) *AudioSelector { s.ExternalAudioFileInput = &v return s }
go
func (s *AudioSelector) SetExternalAudioFileInput(v string) *AudioSelector { s.ExternalAudioFileInput = &v return s }
[ "func", "(", "s", "*", "AudioSelector", ")", "SetExternalAudioFileInput", "(", "v", "string", ")", "*", "AudioSelector", "{", "s", ".", "ExternalAudioFileInput", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetExternalAudioFileInput sets the ExternalAudioFileInput field's value.
[ "SetExternalAudioFileInput", "sets", "the", "ExternalAudioFileInput", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3463-L3466
1,928
aws/aws-sdk-go
service/mediaconvert/api.go
SetPids
func (s *AudioSelector) SetPids(v []*int64) *AudioSelector { s.Pids = v return s }
go
func (s *AudioSelector) SetPids(v []*int64) *AudioSelector { s.Pids = v return s }
[ "func", "(", "s", "*", "AudioSelector", ")", "SetPids", "(", "v", "[", "]", "*", "int64", ")", "*", "AudioSelector", "{", "s", ".", "Pids", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetPids sets the Pids field's value.
[ "SetPids", "sets", "the", "Pids", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3481-L3484
1,929
aws/aws-sdk-go
service/mediaconvert/api.go
SetProgramSelection
func (s *AudioSelector) SetProgramSelection(v int64) *AudioSelector { s.ProgramSelection = &v return s }
go
func (s *AudioSelector) SetProgramSelection(v int64) *AudioSelector { s.ProgramSelection = &v return s }
[ "func", "(", "s", "*", "AudioSelector", ")", "SetProgramSelection", "(", "v", "int64", ")", "*", "AudioSelector", "{", "s", ".", "ProgramSelection", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetProgramSelection sets the ProgramSelection field's value.
[ "SetProgramSelection", "sets", "the", "ProgramSelection", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3487-L3490
1,930
aws/aws-sdk-go
service/mediaconvert/api.go
SetSelectorType
func (s *AudioSelector) SetSelectorType(v string) *AudioSelector { s.SelectorType = &v return s }
go
func (s *AudioSelector) SetSelectorType(v string) *AudioSelector { s.SelectorType = &v return s }
[ "func", "(", "s", "*", "AudioSelector", ")", "SetSelectorType", "(", "v", "string", ")", "*", "AudioSelector", "{", "s", ".", "SelectorType", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetSelectorType sets the SelectorType field's value.
[ "SetSelectorType", "sets", "the", "SelectorType", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3499-L3502
1,931
aws/aws-sdk-go
service/mediaconvert/api.go
SetTracks
func (s *AudioSelector) SetTracks(v []*int64) *AudioSelector { s.Tracks = v return s }
go
func (s *AudioSelector) SetTracks(v []*int64) *AudioSelector { s.Tracks = v return s }
[ "func", "(", "s", "*", "AudioSelector", ")", "SetTracks", "(", "v", "[", "]", "*", "int64", ")", "*", "AudioSelector", "{", "s", ".", "Tracks", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetTracks sets the Tracks field's value.
[ "SetTracks", "sets", "the", "Tracks", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3505-L3508
1,932
aws/aws-sdk-go
service/mediaconvert/api.go
SetAudioSelectorNames
func (s *AudioSelectorGroup) SetAudioSelectorNames(v []*string) *AudioSelectorGroup { s.AudioSelectorNames = v return s }
go
func (s *AudioSelectorGroup) SetAudioSelectorNames(v []*string) *AudioSelectorGroup { s.AudioSelectorNames = v return s }
[ "func", "(", "s", "*", "AudioSelectorGroup", ")", "SetAudioSelectorNames", "(", "v", "[", "]", "*", "string", ")", "*", "AudioSelectorGroup", "{", "s", ".", "AudioSelectorNames", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetAudioSelectorNames sets the AudioSelectorNames field's value.
[ "SetAudioSelectorNames", "sets", "the", "AudioSelectorNames", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3532-L3535
1,933
aws/aws-sdk-go
service/mediaconvert/api.go
SetCaptionSelectorName
func (s *CaptionDescription) SetCaptionSelectorName(v string) *CaptionDescription { s.CaptionSelectorName = &v return s }
go
func (s *CaptionDescription) SetCaptionSelectorName(v string) *CaptionDescription { s.CaptionSelectorName = &v return s }
[ "func", "(", "s", "*", "CaptionDescription", ")", "SetCaptionSelectorName", "(", "v", "string", ")", "*", "CaptionDescription", "{", "s", ".", "CaptionSelectorName", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetCaptionSelectorName sets the CaptionSelectorName field's value.
[ "SetCaptionSelectorName", "sets", "the", "CaptionSelectorName", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L3935-L3938
1,934
aws/aws-sdk-go
service/mediaconvert/api.go
SetBurninDestinationSettings
func (s *CaptionDestinationSettings) SetBurninDestinationSettings(v *BurninDestinationSettings) *CaptionDestinationSettings { s.BurninDestinationSettings = v return s }
go
func (s *CaptionDestinationSettings) SetBurninDestinationSettings(v *BurninDestinationSettings) *CaptionDestinationSettings { s.BurninDestinationSettings = v return s }
[ "func", "(", "s", "*", "CaptionDestinationSettings", ")", "SetBurninDestinationSettings", "(", "v", "*", "BurninDestinationSettings", ")", "*", "CaptionDestinationSettings", "{", "s", ".", "BurninDestinationSettings", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetBurninDestinationSettings sets the BurninDestinationSettings field's value.
[ "SetBurninDestinationSettings", "sets", "the", "BurninDestinationSettings", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L4120-L4123
1,935
aws/aws-sdk-go
service/mediaconvert/api.go
SetDestinationType
func (s *CaptionDestinationSettings) SetDestinationType(v string) *CaptionDestinationSettings { s.DestinationType = &v return s }
go
func (s *CaptionDestinationSettings) SetDestinationType(v string) *CaptionDestinationSettings { s.DestinationType = &v return s }
[ "func", "(", "s", "*", "CaptionDestinationSettings", ")", "SetDestinationType", "(", "v", "string", ")", "*", "CaptionDestinationSettings", "{", "s", ".", "DestinationType", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetDestinationType sets the DestinationType field's value.
[ "SetDestinationType", "sets", "the", "DestinationType", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L4126-L4129
1,936
aws/aws-sdk-go
service/mediaconvert/api.go
SetDvbSubDestinationSettings
func (s *CaptionDestinationSettings) SetDvbSubDestinationSettings(v *DvbSubDestinationSettings) *CaptionDestinationSettings { s.DvbSubDestinationSettings = v return s }
go
func (s *CaptionDestinationSettings) SetDvbSubDestinationSettings(v *DvbSubDestinationSettings) *CaptionDestinationSettings { s.DvbSubDestinationSettings = v return s }
[ "func", "(", "s", "*", "CaptionDestinationSettings", ")", "SetDvbSubDestinationSettings", "(", "v", "*", "DvbSubDestinationSettings", ")", "*", "CaptionDestinationSettings", "{", "s", ".", "DvbSubDestinationSettings", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetDvbSubDestinationSettings sets the DvbSubDestinationSettings field's value.
[ "SetDvbSubDestinationSettings", "sets", "the", "DvbSubDestinationSettings", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L4132-L4135
1,937
aws/aws-sdk-go
service/mediaconvert/api.go
SetEmbeddedDestinationSettings
func (s *CaptionDestinationSettings) SetEmbeddedDestinationSettings(v *EmbeddedDestinationSettings) *CaptionDestinationSettings { s.EmbeddedDestinationSettings = v return s }
go
func (s *CaptionDestinationSettings) SetEmbeddedDestinationSettings(v *EmbeddedDestinationSettings) *CaptionDestinationSettings { s.EmbeddedDestinationSettings = v return s }
[ "func", "(", "s", "*", "CaptionDestinationSettings", ")", "SetEmbeddedDestinationSettings", "(", "v", "*", "EmbeddedDestinationSettings", ")", "*", "CaptionDestinationSettings", "{", "s", ".", "EmbeddedDestinationSettings", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetEmbeddedDestinationSettings sets the EmbeddedDestinationSettings field's value.
[ "SetEmbeddedDestinationSettings", "sets", "the", "EmbeddedDestinationSettings", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L4138-L4141
1,938
aws/aws-sdk-go
service/mediaconvert/api.go
SetSccDestinationSettings
func (s *CaptionDestinationSettings) SetSccDestinationSettings(v *SccDestinationSettings) *CaptionDestinationSettings { s.SccDestinationSettings = v return s }
go
func (s *CaptionDestinationSettings) SetSccDestinationSettings(v *SccDestinationSettings) *CaptionDestinationSettings { s.SccDestinationSettings = v return s }
[ "func", "(", "s", "*", "CaptionDestinationSettings", ")", "SetSccDestinationSettings", "(", "v", "*", "SccDestinationSettings", ")", "*", "CaptionDestinationSettings", "{", "s", ".", "SccDestinationSettings", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetSccDestinationSettings sets the SccDestinationSettings field's value.
[ "SetSccDestinationSettings", "sets", "the", "SccDestinationSettings", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L4144-L4147
1,939
aws/aws-sdk-go
service/mediaconvert/api.go
SetTeletextDestinationSettings
func (s *CaptionDestinationSettings) SetTeletextDestinationSettings(v *TeletextDestinationSettings) *CaptionDestinationSettings { s.TeletextDestinationSettings = v return s }
go
func (s *CaptionDestinationSettings) SetTeletextDestinationSettings(v *TeletextDestinationSettings) *CaptionDestinationSettings { s.TeletextDestinationSettings = v return s }
[ "func", "(", "s", "*", "CaptionDestinationSettings", ")", "SetTeletextDestinationSettings", "(", "v", "*", "TeletextDestinationSettings", ")", "*", "CaptionDestinationSettings", "{", "s", ".", "TeletextDestinationSettings", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetTeletextDestinationSettings sets the TeletextDestinationSettings field's value.
[ "SetTeletextDestinationSettings", "sets", "the", "TeletextDestinationSettings", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L4150-L4153
1,940
aws/aws-sdk-go
service/mediaconvert/api.go
SetTtmlDestinationSettings
func (s *CaptionDestinationSettings) SetTtmlDestinationSettings(v *TtmlDestinationSettings) *CaptionDestinationSettings { s.TtmlDestinationSettings = v return s }
go
func (s *CaptionDestinationSettings) SetTtmlDestinationSettings(v *TtmlDestinationSettings) *CaptionDestinationSettings { s.TtmlDestinationSettings = v return s }
[ "func", "(", "s", "*", "CaptionDestinationSettings", ")", "SetTtmlDestinationSettings", "(", "v", "*", "TtmlDestinationSettings", ")", "*", "CaptionDestinationSettings", "{", "s", ".", "TtmlDestinationSettings", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetTtmlDestinationSettings sets the TtmlDestinationSettings field's value.
[ "SetTtmlDestinationSettings", "sets", "the", "TtmlDestinationSettings", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L4156-L4159
1,941
aws/aws-sdk-go
service/mediaconvert/api.go
SetSourceSettings
func (s *CaptionSelector) SetSourceSettings(v *CaptionSourceSettings) *CaptionSelector { s.SourceSettings = v return s }
go
func (s *CaptionSelector) SetSourceSettings(v *CaptionSourceSettings) *CaptionSelector { s.SourceSettings = v return s }
[ "func", "(", "s", "*", "CaptionSelector", ")", "SetSourceSettings", "(", "v", "*", "CaptionSourceSettings", ")", "*", "CaptionSelector", "{", "s", ".", "SourceSettings", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetSourceSettings sets the SourceSettings field's value.
[ "SetSourceSettings", "sets", "the", "SourceSettings", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L4228-L4231
1,942
aws/aws-sdk-go
service/mediaconvert/api.go
SetAncillarySourceSettings
func (s *CaptionSourceSettings) SetAncillarySourceSettings(v *AncillarySourceSettings) *CaptionSourceSettings { s.AncillarySourceSettings = v return s }
go
func (s *CaptionSourceSettings) SetAncillarySourceSettings(v *AncillarySourceSettings) *CaptionSourceSettings { s.AncillarySourceSettings = v return s }
[ "func", "(", "s", "*", "CaptionSourceSettings", ")", "SetAncillarySourceSettings", "(", "v", "*", "AncillarySourceSettings", ")", "*", "CaptionSourceSettings", "{", "s", ".", "AncillarySourceSettings", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetAncillarySourceSettings sets the AncillarySourceSettings field's value.
[ "SetAncillarySourceSettings", "sets", "the", "AncillarySourceSettings", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L4313-L4316
1,943
aws/aws-sdk-go
service/mediaconvert/api.go
SetFileSourceSettings
func (s *CaptionSourceSettings) SetFileSourceSettings(v *FileSourceSettings) *CaptionSourceSettings { s.FileSourceSettings = v return s }
go
func (s *CaptionSourceSettings) SetFileSourceSettings(v *FileSourceSettings) *CaptionSourceSettings { s.FileSourceSettings = v return s }
[ "func", "(", "s", "*", "CaptionSourceSettings", ")", "SetFileSourceSettings", "(", "v", "*", "FileSourceSettings", ")", "*", "CaptionSourceSettings", "{", "s", ".", "FileSourceSettings", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetFileSourceSettings sets the FileSourceSettings field's value.
[ "SetFileSourceSettings", "sets", "the", "FileSourceSettings", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L4331-L4334
1,944
aws/aws-sdk-go
service/mediaconvert/api.go
SetTrackSourceSettings
func (s *CaptionSourceSettings) SetTrackSourceSettings(v *TrackSourceSettings) *CaptionSourceSettings { s.TrackSourceSettings = v return s }
go
func (s *CaptionSourceSettings) SetTrackSourceSettings(v *TrackSourceSettings) *CaptionSourceSettings { s.TrackSourceSettings = v return s }
[ "func", "(", "s", "*", "CaptionSourceSettings", ")", "SetTrackSourceSettings", "(", "v", "*", "TrackSourceSettings", ")", "*", "CaptionSourceSettings", "{", "s", ".", "TrackSourceSettings", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetTrackSourceSettings sets the TrackSourceSettings field's value.
[ "SetTrackSourceSettings", "sets", "the", "TrackSourceSettings", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L4349-L4352
1,945
aws/aws-sdk-go
service/mediaconvert/api.go
SetOutputChannels
func (s *ChannelMapping) SetOutputChannels(v []*OutputChannelMapping) *ChannelMapping { s.OutputChannels = v return s }
go
func (s *ChannelMapping) SetOutputChannels(v []*OutputChannelMapping) *ChannelMapping { s.OutputChannels = v return s }
[ "func", "(", "s", "*", "ChannelMapping", ")", "SetOutputChannels", "(", "v", "[", "]", "*", "OutputChannelMapping", ")", "*", "ChannelMapping", "{", "s", ".", "OutputChannels", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetOutputChannels sets the OutputChannels field's value.
[ "SetOutputChannels", "sets", "the", "OutputChannels", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L4376-L4379
1,946
aws/aws-sdk-go
service/mediaconvert/api.go
SetWriteDashManifest
func (s *CmafGroupSettings) SetWriteDashManifest(v string) *CmafGroupSettings { s.WriteDashManifest = &v return s }
go
func (s *CmafGroupSettings) SetWriteDashManifest(v string) *CmafGroupSettings { s.WriteDashManifest = &v return s }
[ "func", "(", "s", "*", "CmafGroupSettings", ")", "SetWriteDashManifest", "(", "v", "string", ")", "*", "CmafGroupSettings", "{", "s", ".", "WriteDashManifest", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetWriteDashManifest sets the WriteDashManifest field's value.
[ "SetWriteDashManifest", "sets", "the", "WriteDashManifest", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L4666-L4669
1,947
aws/aws-sdk-go
service/mediaconvert/api.go
SetWriteHlsManifest
func (s *CmafGroupSettings) SetWriteHlsManifest(v string) *CmafGroupSettings { s.WriteHlsManifest = &v return s }
go
func (s *CmafGroupSettings) SetWriteHlsManifest(v string) *CmafGroupSettings { s.WriteHlsManifest = &v return s }
[ "func", "(", "s", "*", "CmafGroupSettings", ")", "SetWriteHlsManifest", "(", "v", "string", ")", "*", "CmafGroupSettings", "{", "s", ".", "WriteHlsManifest", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetWriteHlsManifest sets the WriteHlsManifest field's value.
[ "SetWriteHlsManifest", "sets", "the", "WriteHlsManifest", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L4672-L4675
1,948
aws/aws-sdk-go
service/mediaconvert/api.go
SetColorSpaceConversion
func (s *ColorCorrector) SetColorSpaceConversion(v string) *ColorCorrector { s.ColorSpaceConversion = &v return s }
go
func (s *ColorCorrector) SetColorSpaceConversion(v string) *ColorCorrector { s.ColorSpaceConversion = &v return s }
[ "func", "(", "s", "*", "ColorCorrector", ")", "SetColorSpaceConversion", "(", "v", "string", ")", "*", "ColorCorrector", "{", "s", ".", "ColorSpaceConversion", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetColorSpaceConversion sets the ColorSpaceConversion field's value.
[ "SetColorSpaceConversion", "sets", "the", "ColorSpaceConversion", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L4744-L4747
1,949
aws/aws-sdk-go
service/mediaconvert/api.go
SetContrast
func (s *ColorCorrector) SetContrast(v int64) *ColorCorrector { s.Contrast = &v return s }
go
func (s *ColorCorrector) SetContrast(v int64) *ColorCorrector { s.Contrast = &v return s }
[ "func", "(", "s", "*", "ColorCorrector", ")", "SetContrast", "(", "v", "int64", ")", "*", "ColorCorrector", "{", "s", ".", "Contrast", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetContrast sets the Contrast field's value.
[ "SetContrast", "sets", "the", "Contrast", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L4750-L4753
1,950
aws/aws-sdk-go
service/mediaconvert/api.go
SetHue
func (s *ColorCorrector) SetHue(v int64) *ColorCorrector { s.Hue = &v return s }
go
func (s *ColorCorrector) SetHue(v int64) *ColorCorrector { s.Hue = &v return s }
[ "func", "(", "s", "*", "ColorCorrector", ")", "SetHue", "(", "v", "int64", ")", "*", "ColorCorrector", "{", "s", ".", "Hue", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetHue sets the Hue field's value.
[ "SetHue", "sets", "the", "Hue", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L4762-L4765
1,951
aws/aws-sdk-go
service/mediaconvert/api.go
SetSaturation
func (s *ColorCorrector) SetSaturation(v int64) *ColorCorrector { s.Saturation = &v return s }
go
func (s *ColorCorrector) SetSaturation(v int64) *ColorCorrector { s.Saturation = &v return s }
[ "func", "(", "s", "*", "ColorCorrector", ")", "SetSaturation", "(", "v", "int64", ")", "*", "ColorCorrector", "{", "s", ".", "Saturation", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetSaturation sets the Saturation field's value.
[ "SetSaturation", "sets", "the", "Saturation", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L4768-L4771
1,952
aws/aws-sdk-go
service/mediaconvert/api.go
SetF4vSettings
func (s *ContainerSettings) SetF4vSettings(v *F4vSettings) *ContainerSettings { s.F4vSettings = v return s }
go
func (s *ContainerSettings) SetF4vSettings(v *F4vSettings) *ContainerSettings { s.F4vSettings = v return s }
[ "func", "(", "s", "*", "ContainerSettings", ")", "SetF4vSettings", "(", "v", "*", "F4vSettings", ")", "*", "ContainerSettings", "{", "s", ".", "F4vSettings", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetF4vSettings sets the F4vSettings field's value.
[ "SetF4vSettings", "sets", "the", "F4vSettings", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L4843-L4846
1,953
aws/aws-sdk-go
service/mediaconvert/api.go
SetMovSettings
func (s *ContainerSettings) SetMovSettings(v *MovSettings) *ContainerSettings { s.MovSettings = v return s }
go
func (s *ContainerSettings) SetMovSettings(v *MovSettings) *ContainerSettings { s.MovSettings = v return s }
[ "func", "(", "s", "*", "ContainerSettings", ")", "SetMovSettings", "(", "v", "*", "MovSettings", ")", "*", "ContainerSettings", "{", "s", ".", "MovSettings", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetMovSettings sets the MovSettings field's value.
[ "SetMovSettings", "sets", "the", "MovSettings", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L4861-L4864
1,954
aws/aws-sdk-go
service/mediaconvert/api.go
SetMp4Settings
func (s *ContainerSettings) SetMp4Settings(v *Mp4Settings) *ContainerSettings { s.Mp4Settings = v return s }
go
func (s *ContainerSettings) SetMp4Settings(v *Mp4Settings) *ContainerSettings { s.Mp4Settings = v return s }
[ "func", "(", "s", "*", "ContainerSettings", ")", "SetMp4Settings", "(", "v", "*", "Mp4Settings", ")", "*", "ContainerSettings", "{", "s", ".", "Mp4Settings", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetMp4Settings sets the Mp4Settings field's value.
[ "SetMp4Settings", "sets", "the", "Mp4Settings", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L4867-L4870
1,955
aws/aws-sdk-go
service/mediaconvert/api.go
SetHbbtvCompliance
func (s *DashIsoGroupSettings) SetHbbtvCompliance(v string) *DashIsoGroupSettings { s.HbbtvCompliance = &v return s }
go
func (s *DashIsoGroupSettings) SetHbbtvCompliance(v string) *DashIsoGroupSettings { s.HbbtvCompliance = &v return s }
[ "func", "(", "s", "*", "DashIsoGroupSettings", ")", "SetHbbtvCompliance", "(", "v", "string", ")", "*", "DashIsoGroupSettings", "{", "s", ".", "HbbtvCompliance", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetHbbtvCompliance sets the HbbtvCompliance field's value.
[ "SetHbbtvCompliance", "sets", "the", "HbbtvCompliance", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L5560-L5563
1,956
aws/aws-sdk-go
service/mediaconvert/api.go
SetWriteSegmentTimelineInRepresentation
func (s *DashIsoGroupSettings) SetWriteSegmentTimelineInRepresentation(v string) *DashIsoGroupSettings { s.WriteSegmentTimelineInRepresentation = &v return s }
go
func (s *DashIsoGroupSettings) SetWriteSegmentTimelineInRepresentation(v string) *DashIsoGroupSettings { s.WriteSegmentTimelineInRepresentation = &v return s }
[ "func", "(", "s", "*", "DashIsoGroupSettings", ")", "SetWriteSegmentTimelineInRepresentation", "(", "v", "string", ")", "*", "DashIsoGroupSettings", "{", "s", ".", "WriteSegmentTimelineInRepresentation", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetWriteSegmentTimelineInRepresentation sets the WriteSegmentTimelineInRepresentation field's value.
[ "SetWriteSegmentTimelineInRepresentation", "sets", "the", "WriteSegmentTimelineInRepresentation", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L5584-L5587
1,957
aws/aws-sdk-go
service/mediaconvert/api.go
SetNetworkName
func (s *DvbNitSettings) SetNetworkName(v string) *DvbNitSettings { s.NetworkName = &v return s }
go
func (s *DvbNitSettings) SetNetworkName(v string) *DvbNitSettings { s.NetworkName = &v return s }
[ "func", "(", "s", "*", "DvbNitSettings", ")", "SetNetworkName", "(", "v", "string", ")", "*", "DvbNitSettings", "{", "s", ".", "NetworkName", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetNetworkName sets the NetworkName field's value.
[ "SetNetworkName", "sets", "the", "NetworkName", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6036-L6039
1,958
aws/aws-sdk-go
service/mediaconvert/api.go
SetNitInterval
func (s *DvbNitSettings) SetNitInterval(v int64) *DvbNitSettings { s.NitInterval = &v return s }
go
func (s *DvbNitSettings) SetNitInterval(v int64) *DvbNitSettings { s.NitInterval = &v return s }
[ "func", "(", "s", "*", "DvbNitSettings", ")", "SetNitInterval", "(", "v", "int64", ")", "*", "DvbNitSettings", "{", "s", ".", "NitInterval", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetNitInterval sets the NitInterval field's value.
[ "SetNitInterval", "sets", "the", "NitInterval", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6042-L6045
1,959
aws/aws-sdk-go
service/mediaconvert/api.go
SetOutputSdt
func (s *DvbSdtSettings) SetOutputSdt(v string) *DvbSdtSettings { s.OutputSdt = &v return s }
go
func (s *DvbSdtSettings) SetOutputSdt(v string) *DvbSdtSettings { s.OutputSdt = &v return s }
[ "func", "(", "s", "*", "DvbSdtSettings", ")", "SetOutputSdt", "(", "v", "string", ")", "*", "DvbSdtSettings", "{", "s", ".", "OutputSdt", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetOutputSdt sets the OutputSdt field's value.
[ "SetOutputSdt", "sets", "the", "OutputSdt", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6103-L6106
1,960
aws/aws-sdk-go
service/mediaconvert/api.go
SetSdtInterval
func (s *DvbSdtSettings) SetSdtInterval(v int64) *DvbSdtSettings { s.SdtInterval = &v return s }
go
func (s *DvbSdtSettings) SetSdtInterval(v int64) *DvbSdtSettings { s.SdtInterval = &v return s }
[ "func", "(", "s", "*", "DvbSdtSettings", ")", "SetSdtInterval", "(", "v", "int64", ")", "*", "DvbSdtSettings", "{", "s", ".", "SdtInterval", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetSdtInterval sets the SdtInterval field's value.
[ "SetSdtInterval", "sets", "the", "SdtInterval", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6109-L6112
1,961
aws/aws-sdk-go
service/mediaconvert/api.go
SetServiceProviderName
func (s *DvbSdtSettings) SetServiceProviderName(v string) *DvbSdtSettings { s.ServiceProviderName = &v return s }
go
func (s *DvbSdtSettings) SetServiceProviderName(v string) *DvbSdtSettings { s.ServiceProviderName = &v return s }
[ "func", "(", "s", "*", "DvbSdtSettings", ")", "SetServiceProviderName", "(", "v", "string", ")", "*", "DvbSdtSettings", "{", "s", ".", "ServiceProviderName", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetServiceProviderName sets the ServiceProviderName field's value.
[ "SetServiceProviderName", "sets", "the", "ServiceProviderName", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6121-L6124
1,962
aws/aws-sdk-go
service/mediaconvert/api.go
SetTdtInterval
func (s *DvbTdtSettings) SetTdtInterval(v int64) *DvbTdtSettings { s.TdtInterval = &v return s }
go
func (s *DvbTdtSettings) SetTdtInterval(v int64) *DvbTdtSettings { s.TdtInterval = &v return s }
[ "func", "(", "s", "*", "DvbTdtSettings", ")", "SetTdtInterval", "(", "v", "int64", ")", "*", "DvbTdtSettings", "{", "s", ".", "TdtInterval", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetTdtInterval sets the TdtInterval field's value.
[ "SetTdtInterval", "sets", "the", "TdtInterval", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6434-L6437
1,963
aws/aws-sdk-go
service/mediaconvert/api.go
SetAttenuationControl
func (s *Eac3Settings) SetAttenuationControl(v string) *Eac3Settings { s.AttenuationControl = &v return s }
go
func (s *Eac3Settings) SetAttenuationControl(v string) *Eac3Settings { s.AttenuationControl = &v return s }
[ "func", "(", "s", "*", "Eac3Settings", ")", "SetAttenuationControl", "(", "v", "string", ")", "*", "Eac3Settings", "{", "s", ".", "AttenuationControl", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetAttenuationControl sets the AttenuationControl field's value.
[ "SetAttenuationControl", "sets", "the", "AttenuationControl", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6556-L6559
1,964
aws/aws-sdk-go
service/mediaconvert/api.go
SetDcFilter
func (s *Eac3Settings) SetDcFilter(v string) *Eac3Settings { s.DcFilter = &v return s }
go
func (s *Eac3Settings) SetDcFilter(v string) *Eac3Settings { s.DcFilter = &v return s }
[ "func", "(", "s", "*", "Eac3Settings", ")", "SetDcFilter", "(", "v", "string", ")", "*", "Eac3Settings", "{", "s", ".", "DcFilter", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetDcFilter sets the DcFilter field's value.
[ "SetDcFilter", "sets", "the", "DcFilter", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6580-L6583
1,965
aws/aws-sdk-go
service/mediaconvert/api.go
SetDynamicRangeCompressionLine
func (s *Eac3Settings) SetDynamicRangeCompressionLine(v string) *Eac3Settings { s.DynamicRangeCompressionLine = &v return s }
go
func (s *Eac3Settings) SetDynamicRangeCompressionLine(v string) *Eac3Settings { s.DynamicRangeCompressionLine = &v return s }
[ "func", "(", "s", "*", "Eac3Settings", ")", "SetDynamicRangeCompressionLine", "(", "v", "string", ")", "*", "Eac3Settings", "{", "s", ".", "DynamicRangeCompressionLine", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetDynamicRangeCompressionLine sets the DynamicRangeCompressionLine field's value.
[ "SetDynamicRangeCompressionLine", "sets", "the", "DynamicRangeCompressionLine", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6592-L6595
1,966
aws/aws-sdk-go
service/mediaconvert/api.go
SetDynamicRangeCompressionRf
func (s *Eac3Settings) SetDynamicRangeCompressionRf(v string) *Eac3Settings { s.DynamicRangeCompressionRf = &v return s }
go
func (s *Eac3Settings) SetDynamicRangeCompressionRf(v string) *Eac3Settings { s.DynamicRangeCompressionRf = &v return s }
[ "func", "(", "s", "*", "Eac3Settings", ")", "SetDynamicRangeCompressionRf", "(", "v", "string", ")", "*", "Eac3Settings", "{", "s", ".", "DynamicRangeCompressionRf", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetDynamicRangeCompressionRf sets the DynamicRangeCompressionRf field's value.
[ "SetDynamicRangeCompressionRf", "sets", "the", "DynamicRangeCompressionRf", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6598-L6601
1,967
aws/aws-sdk-go
service/mediaconvert/api.go
SetLfeControl
func (s *Eac3Settings) SetLfeControl(v string) *Eac3Settings { s.LfeControl = &v return s }
go
func (s *Eac3Settings) SetLfeControl(v string) *Eac3Settings { s.LfeControl = &v return s }
[ "func", "(", "s", "*", "Eac3Settings", ")", "SetLfeControl", "(", "v", "string", ")", "*", "Eac3Settings", "{", "s", ".", "LfeControl", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetLfeControl sets the LfeControl field's value.
[ "SetLfeControl", "sets", "the", "LfeControl", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6604-L6607
1,968
aws/aws-sdk-go
service/mediaconvert/api.go
SetLoRoCenterMixLevel
func (s *Eac3Settings) SetLoRoCenterMixLevel(v float64) *Eac3Settings { s.LoRoCenterMixLevel = &v return s }
go
func (s *Eac3Settings) SetLoRoCenterMixLevel(v float64) *Eac3Settings { s.LoRoCenterMixLevel = &v return s }
[ "func", "(", "s", "*", "Eac3Settings", ")", "SetLoRoCenterMixLevel", "(", "v", "float64", ")", "*", "Eac3Settings", "{", "s", ".", "LoRoCenterMixLevel", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetLoRoCenterMixLevel sets the LoRoCenterMixLevel field's value.
[ "SetLoRoCenterMixLevel", "sets", "the", "LoRoCenterMixLevel", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6616-L6619
1,969
aws/aws-sdk-go
service/mediaconvert/api.go
SetLoRoSurroundMixLevel
func (s *Eac3Settings) SetLoRoSurroundMixLevel(v float64) *Eac3Settings { s.LoRoSurroundMixLevel = &v return s }
go
func (s *Eac3Settings) SetLoRoSurroundMixLevel(v float64) *Eac3Settings { s.LoRoSurroundMixLevel = &v return s }
[ "func", "(", "s", "*", "Eac3Settings", ")", "SetLoRoSurroundMixLevel", "(", "v", "float64", ")", "*", "Eac3Settings", "{", "s", ".", "LoRoSurroundMixLevel", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetLoRoSurroundMixLevel sets the LoRoSurroundMixLevel field's value.
[ "SetLoRoSurroundMixLevel", "sets", "the", "LoRoSurroundMixLevel", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6622-L6625
1,970
aws/aws-sdk-go
service/mediaconvert/api.go
SetLtRtCenterMixLevel
func (s *Eac3Settings) SetLtRtCenterMixLevel(v float64) *Eac3Settings { s.LtRtCenterMixLevel = &v return s }
go
func (s *Eac3Settings) SetLtRtCenterMixLevel(v float64) *Eac3Settings { s.LtRtCenterMixLevel = &v return s }
[ "func", "(", "s", "*", "Eac3Settings", ")", "SetLtRtCenterMixLevel", "(", "v", "float64", ")", "*", "Eac3Settings", "{", "s", ".", "LtRtCenterMixLevel", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetLtRtCenterMixLevel sets the LtRtCenterMixLevel field's value.
[ "SetLtRtCenterMixLevel", "sets", "the", "LtRtCenterMixLevel", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6628-L6631
1,971
aws/aws-sdk-go
service/mediaconvert/api.go
SetLtRtSurroundMixLevel
func (s *Eac3Settings) SetLtRtSurroundMixLevel(v float64) *Eac3Settings { s.LtRtSurroundMixLevel = &v return s }
go
func (s *Eac3Settings) SetLtRtSurroundMixLevel(v float64) *Eac3Settings { s.LtRtSurroundMixLevel = &v return s }
[ "func", "(", "s", "*", "Eac3Settings", ")", "SetLtRtSurroundMixLevel", "(", "v", "float64", ")", "*", "Eac3Settings", "{", "s", ".", "LtRtSurroundMixLevel", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetLtRtSurroundMixLevel sets the LtRtSurroundMixLevel field's value.
[ "SetLtRtSurroundMixLevel", "sets", "the", "LtRtSurroundMixLevel", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6634-L6637
1,972
aws/aws-sdk-go
service/mediaconvert/api.go
SetPassthroughControl
func (s *Eac3Settings) SetPassthroughControl(v string) *Eac3Settings { s.PassthroughControl = &v return s }
go
func (s *Eac3Settings) SetPassthroughControl(v string) *Eac3Settings { s.PassthroughControl = &v return s }
[ "func", "(", "s", "*", "Eac3Settings", ")", "SetPassthroughControl", "(", "v", "string", ")", "*", "Eac3Settings", "{", "s", ".", "PassthroughControl", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetPassthroughControl sets the PassthroughControl field's value.
[ "SetPassthroughControl", "sets", "the", "PassthroughControl", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6646-L6649
1,973
aws/aws-sdk-go
service/mediaconvert/api.go
SetPhaseControl
func (s *Eac3Settings) SetPhaseControl(v string) *Eac3Settings { s.PhaseControl = &v return s }
go
func (s *Eac3Settings) SetPhaseControl(v string) *Eac3Settings { s.PhaseControl = &v return s }
[ "func", "(", "s", "*", "Eac3Settings", ")", "SetPhaseControl", "(", "v", "string", ")", "*", "Eac3Settings", "{", "s", ".", "PhaseControl", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetPhaseControl sets the PhaseControl field's value.
[ "SetPhaseControl", "sets", "the", "PhaseControl", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6652-L6655
1,974
aws/aws-sdk-go
service/mediaconvert/api.go
SetStereoDownmix
func (s *Eac3Settings) SetStereoDownmix(v string) *Eac3Settings { s.StereoDownmix = &v return s }
go
func (s *Eac3Settings) SetStereoDownmix(v string) *Eac3Settings { s.StereoDownmix = &v return s }
[ "func", "(", "s", "*", "Eac3Settings", ")", "SetStereoDownmix", "(", "v", "string", ")", "*", "Eac3Settings", "{", "s", ".", "StereoDownmix", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetStereoDownmix sets the StereoDownmix field's value.
[ "SetStereoDownmix", "sets", "the", "StereoDownmix", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6664-L6667
1,975
aws/aws-sdk-go
service/mediaconvert/api.go
SetSurroundExMode
func (s *Eac3Settings) SetSurroundExMode(v string) *Eac3Settings { s.SurroundExMode = &v return s }
go
func (s *Eac3Settings) SetSurroundExMode(v string) *Eac3Settings { s.SurroundExMode = &v return s }
[ "func", "(", "s", "*", "Eac3Settings", ")", "SetSurroundExMode", "(", "v", "string", ")", "*", "Eac3Settings", "{", "s", ".", "SurroundExMode", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetSurroundExMode sets the SurroundExMode field's value.
[ "SetSurroundExMode", "sets", "the", "SurroundExMode", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6670-L6673
1,976
aws/aws-sdk-go
service/mediaconvert/api.go
SetSurroundMode
func (s *Eac3Settings) SetSurroundMode(v string) *Eac3Settings { s.SurroundMode = &v return s }
go
func (s *Eac3Settings) SetSurroundMode(v string) *Eac3Settings { s.SurroundMode = &v return s }
[ "func", "(", "s", "*", "Eac3Settings", ")", "SetSurroundMode", "(", "v", "string", ")", "*", "Eac3Settings", "{", "s", ".", "SurroundMode", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetSurroundMode sets the SurroundMode field's value.
[ "SetSurroundMode", "sets", "the", "SurroundMode", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6676-L6679
1,977
aws/aws-sdk-go
service/mediaconvert/api.go
SetDestination608ChannelNumber
func (s *EmbeddedDestinationSettings) SetDestination608ChannelNumber(v int64) *EmbeddedDestinationSettings { s.Destination608ChannelNumber = &v return s }
go
func (s *EmbeddedDestinationSettings) SetDestination608ChannelNumber(v int64) *EmbeddedDestinationSettings { s.Destination608ChannelNumber = &v return s }
[ "func", "(", "s", "*", "EmbeddedDestinationSettings", ")", "SetDestination608ChannelNumber", "(", "v", "int64", ")", "*", "EmbeddedDestinationSettings", "{", "s", ".", "Destination608ChannelNumber", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetDestination608ChannelNumber sets the Destination608ChannelNumber field's value.
[ "SetDestination608ChannelNumber", "sets", "the", "Destination608ChannelNumber", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6722-L6725
1,978
aws/aws-sdk-go
service/mediaconvert/api.go
SetSource608TrackNumber
func (s *EmbeddedSourceSettings) SetSource608TrackNumber(v int64) *EmbeddedSourceSettings { s.Source608TrackNumber = &v return s }
go
func (s *EmbeddedSourceSettings) SetSource608TrackNumber(v int64) *EmbeddedSourceSettings { s.Source608TrackNumber = &v return s }
[ "func", "(", "s", "*", "EmbeddedSourceSettings", ")", "SetSource608TrackNumber", "(", "v", "int64", ")", "*", "EmbeddedSourceSettings", "{", "s", ".", "Source608TrackNumber", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetSource608TrackNumber sets the Source608TrackNumber field's value.
[ "SetSource608TrackNumber", "sets", "the", "Source608TrackNumber", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6784-L6787
1,979
aws/aws-sdk-go
service/mediaconvert/api.go
SetMccXml
func (s *EsamManifestConfirmConditionNotification) SetMccXml(v string) *EsamManifestConfirmConditionNotification { s.MccXml = &v return s }
go
func (s *EsamManifestConfirmConditionNotification) SetMccXml(v string) *EsamManifestConfirmConditionNotification { s.MccXml = &v return s }
[ "func", "(", "s", "*", "EsamManifestConfirmConditionNotification", ")", "SetMccXml", "(", "v", "string", ")", "*", "EsamManifestConfirmConditionNotification", "{", "s", ".", "MccXml", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetMccXml sets the MccXml field's value.
[ "SetMccXml", "sets", "the", "MccXml", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6835-L6838
1,980
aws/aws-sdk-go
service/mediaconvert/api.go
SetManifestConfirmConditionNotification
func (s *EsamSettings) SetManifestConfirmConditionNotification(v *EsamManifestConfirmConditionNotification) *EsamSettings { s.ManifestConfirmConditionNotification = v return s }
go
func (s *EsamSettings) SetManifestConfirmConditionNotification(v *EsamManifestConfirmConditionNotification) *EsamSettings { s.ManifestConfirmConditionNotification = v return s }
[ "func", "(", "s", "*", "EsamSettings", ")", "SetManifestConfirmConditionNotification", "(", "v", "*", "EsamManifestConfirmConditionNotification", ")", "*", "EsamSettings", "{", "s", ".", "ManifestConfirmConditionNotification", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetManifestConfirmConditionNotification sets the ManifestConfirmConditionNotification field's value.
[ "SetManifestConfirmConditionNotification", "sets", "the", "ManifestConfirmConditionNotification", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6874-L6877
1,981
aws/aws-sdk-go
service/mediaconvert/api.go
SetResponseSignalPreroll
func (s *EsamSettings) SetResponseSignalPreroll(v int64) *EsamSettings { s.ResponseSignalPreroll = &v return s }
go
func (s *EsamSettings) SetResponseSignalPreroll(v int64) *EsamSettings { s.ResponseSignalPreroll = &v return s }
[ "func", "(", "s", "*", "EsamSettings", ")", "SetResponseSignalPreroll", "(", "v", "int64", ")", "*", "EsamSettings", "{", "s", ".", "ResponseSignalPreroll", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetResponseSignalPreroll sets the ResponseSignalPreroll field's value.
[ "SetResponseSignalPreroll", "sets", "the", "ResponseSignalPreroll", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6880-L6883
1,982
aws/aws-sdk-go
service/mediaconvert/api.go
SetSignalProcessingNotification
func (s *EsamSettings) SetSignalProcessingNotification(v *EsamSignalProcessingNotification) *EsamSettings { s.SignalProcessingNotification = v return s }
go
func (s *EsamSettings) SetSignalProcessingNotification(v *EsamSignalProcessingNotification) *EsamSettings { s.SignalProcessingNotification = v return s }
[ "func", "(", "s", "*", "EsamSettings", ")", "SetSignalProcessingNotification", "(", "v", "*", "EsamSignalProcessingNotification", ")", "*", "EsamSettings", "{", "s", ".", "SignalProcessingNotification", "=", "v", "\n", "return", "s", "\n", "}" ]
// SetSignalProcessingNotification sets the SignalProcessingNotification field's value.
[ "SetSignalProcessingNotification", "sets", "the", "SignalProcessingNotification", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6886-L6889
1,983
aws/aws-sdk-go
service/mediaconvert/api.go
SetSccXml
func (s *EsamSignalProcessingNotification) SetSccXml(v string) *EsamSignalProcessingNotification { s.SccXml = &v return s }
go
func (s *EsamSignalProcessingNotification) SetSccXml(v string) *EsamSignalProcessingNotification { s.SccXml = &v return s }
[ "func", "(", "s", "*", "EsamSignalProcessingNotification", ")", "SetSccXml", "(", "v", "string", ")", "*", "EsamSignalProcessingNotification", "{", "s", ".", "SccXml", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetSccXml sets the SccXml field's value.
[ "SetSccXml", "sets", "the", "SccXml", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L6917-L6920
1,984
aws/aws-sdk-go
service/mediaconvert/api.go
SetTimeDelta
func (s *FileSourceSettings) SetTimeDelta(v int64) *FileSourceSettings { s.TimeDelta = &v return s }
go
func (s *FileSourceSettings) SetTimeDelta(v int64) *FileSourceSettings { s.TimeDelta = &v return s }
[ "func", "(", "s", "*", "FileSourceSettings", ")", "SetTimeDelta", "(", "v", "int64", ")", "*", "FileSourceSettings", "{", "s", ".", "TimeDelta", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetTimeDelta sets the TimeDelta field's value.
[ "SetTimeDelta", "sets", "the", "TimeDelta", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L7044-L7047
1,985
aws/aws-sdk-go
service/mediaconvert/api.go
SetMaxCaptures
func (s *FrameCaptureSettings) SetMaxCaptures(v int64) *FrameCaptureSettings { s.MaxCaptures = &v return s }
go
func (s *FrameCaptureSettings) SetMaxCaptures(v int64) *FrameCaptureSettings { s.MaxCaptures = &v return s }
[ "func", "(", "s", "*", "FrameCaptureSettings", ")", "SetMaxCaptures", "(", "v", "int64", ")", "*", "FrameCaptureSettings", "{", "s", ".", "MaxCaptures", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetMaxCaptures sets the MaxCaptures field's value.
[ "SetMaxCaptures", "sets", "the", "MaxCaptures", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L7122-L7125
1,986
aws/aws-sdk-go
service/mediaconvert/api.go
SetEntropyEncoding
func (s *H264Settings) SetEntropyEncoding(v string) *H264Settings { s.EntropyEncoding = &v return s }
go
func (s *H264Settings) SetEntropyEncoding(v string) *H264Settings { s.EntropyEncoding = &v return s }
[ "func", "(", "s", "*", "H264Settings", ")", "SetEntropyEncoding", "(", "v", "string", ")", "*", "H264Settings", "{", "s", ".", "EntropyEncoding", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetEntropyEncoding sets the EntropyEncoding field's value.
[ "SetEntropyEncoding", "sets", "the", "EntropyEncoding", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L7737-L7740
1,987
aws/aws-sdk-go
service/mediaconvert/api.go
SetFieldEncoding
func (s *H264Settings) SetFieldEncoding(v string) *H264Settings { s.FieldEncoding = &v return s }
go
func (s *H264Settings) SetFieldEncoding(v string) *H264Settings { s.FieldEncoding = &v return s }
[ "func", "(", "s", "*", "H264Settings", ")", "SetFieldEncoding", "(", "v", "string", ")", "*", "H264Settings", "{", "s", ".", "FieldEncoding", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetFieldEncoding sets the FieldEncoding field's value.
[ "SetFieldEncoding", "sets", "the", "FieldEncoding", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L7743-L7746
1,988
aws/aws-sdk-go
service/mediaconvert/api.go
SetRepeatPps
func (s *H264Settings) SetRepeatPps(v string) *H264Settings { s.RepeatPps = &v return s }
go
func (s *H264Settings) SetRepeatPps(v string) *H264Settings { s.RepeatPps = &v return s }
[ "func", "(", "s", "*", "H264Settings", ")", "SetRepeatPps", "(", "v", "string", ")", "*", "H264Settings", "{", "s", ".", "RepeatPps", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetRepeatPps sets the RepeatPps field's value.
[ "SetRepeatPps", "sets", "the", "RepeatPps", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L7881-L7884
1,989
aws/aws-sdk-go
service/mediaconvert/api.go
SetAlternateTransferFunctionSei
func (s *H265Settings) SetAlternateTransferFunctionSei(v string) *H265Settings { s.AlternateTransferFunctionSei = &v return s }
go
func (s *H265Settings) SetAlternateTransferFunctionSei(v string) *H265Settings { s.AlternateTransferFunctionSei = &v return s }
[ "func", "(", "s", "*", "H265Settings", ")", "SetAlternateTransferFunctionSei", "(", "v", "string", ")", "*", "H265Settings", "{", "s", ".", "AlternateTransferFunctionSei", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetAlternateTransferFunctionSei sets the AlternateTransferFunctionSei field's value.
[ "SetAlternateTransferFunctionSei", "sets", "the", "AlternateTransferFunctionSei", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L8261-L8264
1,990
aws/aws-sdk-go
service/mediaconvert/api.go
SetSampleAdaptiveOffsetFilterMode
func (s *H265Settings) SetSampleAdaptiveOffsetFilterMode(v string) *H265Settings { s.SampleAdaptiveOffsetFilterMode = &v return s }
go
func (s *H265Settings) SetSampleAdaptiveOffsetFilterMode(v string) *H265Settings { s.SampleAdaptiveOffsetFilterMode = &v return s }
[ "func", "(", "s", "*", "H265Settings", ")", "SetSampleAdaptiveOffsetFilterMode", "(", "v", "string", ")", "*", "H265Settings", "{", "s", ".", "SampleAdaptiveOffsetFilterMode", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetSampleAdaptiveOffsetFilterMode sets the SampleAdaptiveOffsetFilterMode field's value.
[ "SetSampleAdaptiveOffsetFilterMode", "sets", "the", "SampleAdaptiveOffsetFilterMode", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L8423-L8426
1,991
aws/aws-sdk-go
service/mediaconvert/api.go
SetTemporalIds
func (s *H265Settings) SetTemporalIds(v string) *H265Settings { s.TemporalIds = &v return s }
go
func (s *H265Settings) SetTemporalIds(v string) *H265Settings { s.TemporalIds = &v return s }
[ "func", "(", "s", "*", "H265Settings", ")", "SetTemporalIds", "(", "v", "string", ")", "*", "H265Settings", "{", "s", ".", "TemporalIds", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetTemporalIds sets the TemporalIds field's value.
[ "SetTemporalIds", "sets", "the", "TemporalIds", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L8465-L8468
1,992
aws/aws-sdk-go
service/mediaconvert/api.go
SetTiles
func (s *H265Settings) SetTiles(v string) *H265Settings { s.Tiles = &v return s }
go
func (s *H265Settings) SetTiles(v string) *H265Settings { s.Tiles = &v return s }
[ "func", "(", "s", "*", "H265Settings", ")", "SetTiles", "(", "v", "string", ")", "*", "H265Settings", "{", "s", ".", "Tiles", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetTiles sets the Tiles field's value.
[ "SetTiles", "sets", "the", "Tiles", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L8471-L8474
1,993
aws/aws-sdk-go
service/mediaconvert/api.go
SetWriteMp4PackagingType
func (s *H265Settings) SetWriteMp4PackagingType(v string) *H265Settings { s.WriteMp4PackagingType = &v return s }
go
func (s *H265Settings) SetWriteMp4PackagingType(v string) *H265Settings { s.WriteMp4PackagingType = &v return s }
[ "func", "(", "s", "*", "H265Settings", ")", "SetWriteMp4PackagingType", "(", "v", "string", ")", "*", "H265Settings", "{", "s", ".", "WriteMp4PackagingType", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetWriteMp4PackagingType sets the WriteMp4PackagingType field's value.
[ "SetWriteMp4PackagingType", "sets", "the", "WriteMp4PackagingType", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L8483-L8486
1,994
aws/aws-sdk-go
service/mediaconvert/api.go
SetBluePrimaryX
func (s *Hdr10Metadata) SetBluePrimaryX(v int64) *Hdr10Metadata { s.BluePrimaryX = &v return s }
go
func (s *Hdr10Metadata) SetBluePrimaryX(v int64) *Hdr10Metadata { s.BluePrimaryX = &v return s }
[ "func", "(", "s", "*", "Hdr10Metadata", ")", "SetBluePrimaryX", "(", "v", "int64", ")", "*", "Hdr10Metadata", "{", "s", ".", "BluePrimaryX", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetBluePrimaryX sets the BluePrimaryX field's value.
[ "SetBluePrimaryX", "sets", "the", "BluePrimaryX", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L8568-L8571
1,995
aws/aws-sdk-go
service/mediaconvert/api.go
SetBluePrimaryY
func (s *Hdr10Metadata) SetBluePrimaryY(v int64) *Hdr10Metadata { s.BluePrimaryY = &v return s }
go
func (s *Hdr10Metadata) SetBluePrimaryY(v int64) *Hdr10Metadata { s.BluePrimaryY = &v return s }
[ "func", "(", "s", "*", "Hdr10Metadata", ")", "SetBluePrimaryY", "(", "v", "int64", ")", "*", "Hdr10Metadata", "{", "s", ".", "BluePrimaryY", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetBluePrimaryY sets the BluePrimaryY field's value.
[ "SetBluePrimaryY", "sets", "the", "BluePrimaryY", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L8574-L8577
1,996
aws/aws-sdk-go
service/mediaconvert/api.go
SetGreenPrimaryX
func (s *Hdr10Metadata) SetGreenPrimaryX(v int64) *Hdr10Metadata { s.GreenPrimaryX = &v return s }
go
func (s *Hdr10Metadata) SetGreenPrimaryX(v int64) *Hdr10Metadata { s.GreenPrimaryX = &v return s }
[ "func", "(", "s", "*", "Hdr10Metadata", ")", "SetGreenPrimaryX", "(", "v", "int64", ")", "*", "Hdr10Metadata", "{", "s", ".", "GreenPrimaryX", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetGreenPrimaryX sets the GreenPrimaryX field's value.
[ "SetGreenPrimaryX", "sets", "the", "GreenPrimaryX", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L8580-L8583
1,997
aws/aws-sdk-go
service/mediaconvert/api.go
SetGreenPrimaryY
func (s *Hdr10Metadata) SetGreenPrimaryY(v int64) *Hdr10Metadata { s.GreenPrimaryY = &v return s }
go
func (s *Hdr10Metadata) SetGreenPrimaryY(v int64) *Hdr10Metadata { s.GreenPrimaryY = &v return s }
[ "func", "(", "s", "*", "Hdr10Metadata", ")", "SetGreenPrimaryY", "(", "v", "int64", ")", "*", "Hdr10Metadata", "{", "s", ".", "GreenPrimaryY", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetGreenPrimaryY sets the GreenPrimaryY field's value.
[ "SetGreenPrimaryY", "sets", "the", "GreenPrimaryY", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L8586-L8589
1,998
aws/aws-sdk-go
service/mediaconvert/api.go
SetMaxContentLightLevel
func (s *Hdr10Metadata) SetMaxContentLightLevel(v int64) *Hdr10Metadata { s.MaxContentLightLevel = &v return s }
go
func (s *Hdr10Metadata) SetMaxContentLightLevel(v int64) *Hdr10Metadata { s.MaxContentLightLevel = &v return s }
[ "func", "(", "s", "*", "Hdr10Metadata", ")", "SetMaxContentLightLevel", "(", "v", "int64", ")", "*", "Hdr10Metadata", "{", "s", ".", "MaxContentLightLevel", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetMaxContentLightLevel sets the MaxContentLightLevel field's value.
[ "SetMaxContentLightLevel", "sets", "the", "MaxContentLightLevel", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L8592-L8595
1,999
aws/aws-sdk-go
service/mediaconvert/api.go
SetMaxFrameAverageLightLevel
func (s *Hdr10Metadata) SetMaxFrameAverageLightLevel(v int64) *Hdr10Metadata { s.MaxFrameAverageLightLevel = &v return s }
go
func (s *Hdr10Metadata) SetMaxFrameAverageLightLevel(v int64) *Hdr10Metadata { s.MaxFrameAverageLightLevel = &v return s }
[ "func", "(", "s", "*", "Hdr10Metadata", ")", "SetMaxFrameAverageLightLevel", "(", "v", "int64", ")", "*", "Hdr10Metadata", "{", "s", ".", "MaxFrameAverageLightLevel", "=", "&", "v", "\n", "return", "s", "\n", "}" ]
// SetMaxFrameAverageLightLevel sets the MaxFrameAverageLightLevel field's value.
[ "SetMaxFrameAverageLightLevel", "sets", "the", "MaxFrameAverageLightLevel", "field", "s", "value", "." ]
6c4060605190fc6f00d63cd4e5572faa9f07345d
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/mediaconvert/api.go#L8598-L8601