Class: AWSCDK::MediaLive::CfnChannel::AudioDolbyEDecodeProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::MediaLive::CfnChannel::AudioDolbyEDecodeProperty
- Defined in:
- media_live/cfn_channel.rb
Overview
Instance Attribute Summary collapse
- #program_selection ⇒ String? readonly
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(program_selection: nil) ⇒ AudioDolbyEDecodeProperty
constructor
A new instance of AudioDolbyEDecodeProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(program_selection: nil) ⇒ AudioDolbyEDecodeProperty
Returns a new instance of AudioDolbyEDecodeProperty.
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_selection ⇒ String? (readonly)
1704 1705 1706 |
# File 'media_live/cfn_channel.rb', line 1704 def program_selection @program_selection end |
Class Method Details
.jsii_properties ⇒ Object
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_jsii ⇒ Object
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 |