Class: AWSCDK::MediaLive::CfnChannel::FrameCaptureOutputSettingsProperty

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

Overview

The frame capture output settings.

The parent of this entity is OutputSettings.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name_modifier: nil) ⇒ FrameCaptureOutputSettingsProperty

Returns a new instance of FrameCaptureOutputSettingsProperty.

Parameters:

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

    Required if the output group contains more than one output.



5893
5894
5895
5896
# File 'media_live/cfn_channel.rb', line 5893

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

Instance Attribute Details

#name_modifierString? (readonly)

Required if the output group contains more than one output.

This modifier forms part of the output file name.



5904
5905
5906
# File 'media_live/cfn_channel.rb', line 5904

def name_modifier
  @name_modifier
end

Class Method Details

.jsii_propertiesObject



5906
5907
5908
5909
5910
# File 'media_live/cfn_channel.rb', line 5906

def self.jsii_properties
  {
    :name_modifier => "nameModifier",
  }
end

Instance Method Details

#to_jsiiObject



5912
5913
5914
5915
5916
5917
5918
# File 'media_live/cfn_channel.rb', line 5912

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