Class: AWSCDK::MediaLive::CfnChannel::AudioDolbyEDecodeProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
media_live/cfn_channel.rb

Overview

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(program_selection: nil) ⇒ AudioDolbyEDecodeProperty

Returns a new instance of AudioDolbyEDecodeProperty.

Parameters:

  • program_selection (String, nil) (defaults to: nil)


1697
1698
1699
1700
# File 'media_live/cfn_channel.rb', line 1697

def initialize(program_selection: nil)
  @program_selection = program_selection
  Jsii::Type.check_type(@program_selection, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "programSelection") unless @program_selection.nil?
end

Instance Attribute Details

#program_selectionString? (readonly)



1704
1705
1706
# File 'media_live/cfn_channel.rb', line 1704

def program_selection
  @program_selection
end

Class Method Details

.jsii_propertiesObject



1706
1707
1708
1709
1710
# File 'media_live/cfn_channel.rb', line 1706

def self.jsii_properties
  {
    :program_selection => "programSelection",
  }
end

Instance Method Details

#to_jsiiObject



1712
1713
1714
1715
1716
1717
1718
# File 'media_live/cfn_channel.rb', line 1712

def to_jsii
  result = {}
  result.merge!({
    "programSelection" => @program_selection,
  })
  result.compact
end