Class: AWSCDK::MediaLive::CfnChannel::DvbTdtSettingsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::MediaLive::CfnChannel::DvbTdtSettingsProperty
- Defined in:
- media_live/cfn_channel.rb
Overview
The DVB Time and Date Table (TDT).
The parent of this entity is M2tsSettings.
Instance Attribute Summary collapse
-
#rep_interval ⇒ Numeric?
readonly
The number of milliseconds between instances of this table in the output transport stream.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(rep_interval: nil) ⇒ DvbTdtSettingsProperty
constructor
A new instance of DvbTdtSettingsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(rep_interval: nil) ⇒ DvbTdtSettingsProperty
Returns a new instance of DvbTdtSettingsProperty.
4665 4666 4667 4668 |
# File 'media_live/cfn_channel.rb', line 4665 def initialize(rep_interval: nil) @rep_interval = rep_interval Jsii::Type.check_type(@rep_interval, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJudW1iZXIifQ==")), "repInterval") unless @rep_interval.nil? end |
Instance Attribute Details
#rep_interval ⇒ Numeric? (readonly)
The number of milliseconds between instances of this table in the output transport stream.
4674 4675 4676 |
# File 'media_live/cfn_channel.rb', line 4674 def rep_interval @rep_interval end |
Class Method Details
.jsii_properties ⇒ Object
4676 4677 4678 4679 4680 |
# File 'media_live/cfn_channel.rb', line 4676 def self.jsii_properties { :rep_interval => "repInterval", } end |
Instance Method Details
#to_jsii ⇒ Object
4682 4683 4684 4685 4686 4687 4688 |
# File 'media_live/cfn_channel.rb', line 4682 def to_jsii result = {} result.merge!({ "repInterval" => @rep_interval, }) result.compact end |