Class: AWSCDK::IVS::CfnRecordingConfiguration::S3DestinationConfigurationProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
ivs/cfn_recording_configuration.rb

Overview

The S3DestinationConfiguration property type describes an S3 location where recorded videos will be stored.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(bucket_name:) ⇒ S3DestinationConfigurationProperty

Returns a new instance of S3DestinationConfigurationProperty.

Parameters:

  • bucket_name (String)

    Location (S3 bucket name) where recorded videos will be stored.



684
685
686
687
# File 'ivs/cfn_recording_configuration.rb', line 684

def initialize(bucket_name:)
  @bucket_name = bucket_name
  Jsii::Type.check_type(@bucket_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "bucketName")
end

Instance Attribute Details

#bucket_nameString (readonly)

Location (S3 bucket name) where recorded videos will be stored.



693
694
695
# File 'ivs/cfn_recording_configuration.rb', line 693

def bucket_name
  @bucket_name
end

Class Method Details

.jsii_propertiesObject



695
696
697
698
699
# File 'ivs/cfn_recording_configuration.rb', line 695

def self.jsii_properties
  {
    :bucket_name => "bucketName",
  }
end

Instance Method Details

#to_jsiiObject



701
702
703
704
705
706
707
# File 'ivs/cfn_recording_configuration.rb', line 701

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