Class: AWSCDK::IVS::CfnRecordingConfiguration::S3DestinationConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::IVS::CfnRecordingConfiguration::S3DestinationConfigurationProperty
- 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
-
#bucket_name ⇒ String
readonly
Location (S3 bucket name) where recorded videos will be stored.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(bucket_name:) ⇒ S3DestinationConfigurationProperty
constructor
A new instance of S3DestinationConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(bucket_name:) ⇒ S3DestinationConfigurationProperty
Returns a new instance of S3DestinationConfigurationProperty.
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_name ⇒ String (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_properties ⇒ Object
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_jsii ⇒ Object
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 |