Class: AWSCDK::S3Tables::CfnTableBucket::ReplicationDestinationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::S3Tables::CfnTableBucket::ReplicationDestinationProperty
- Defined in:
- s3_tables/cfn_table_bucket.rb
Overview
A replication destination.
Instance Attribute Summary collapse
-
#destination_table_bucket_arn ⇒ String
readonly
The ARN of the destination table bucket.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(destination_table_bucket_arn:) ⇒ ReplicationDestinationProperty
constructor
A new instance of ReplicationDestinationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(destination_table_bucket_arn:) ⇒ ReplicationDestinationProperty
Returns a new instance of ReplicationDestinationProperty.
733 734 735 736 |
# File 's3_tables/cfn_table_bucket.rb', line 733 def initialize(destination_table_bucket_arn:) @destination_table_bucket_arn = destination_table_bucket_arn Jsii::Type.check_type(@destination_table_bucket_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "destinationTableBucketArn") end |
Instance Attribute Details
#destination_table_bucket_arn ⇒ String (readonly)
The ARN of the destination table bucket.
742 743 744 |
# File 's3_tables/cfn_table_bucket.rb', line 742 def destination_table_bucket_arn @destination_table_bucket_arn end |
Class Method Details
.jsii_properties ⇒ Object
744 745 746 747 748 |
# File 's3_tables/cfn_table_bucket.rb', line 744 def self.jsii_properties { :destination_table_bucket_arn => "destinationTableBucketArn", } end |
Instance Method Details
#to_jsii ⇒ Object
750 751 752 753 754 755 756 |
# File 's3_tables/cfn_table_bucket.rb', line 750 def to_jsii result = {} result.merge!({ "destinationTableBucketArn" => @destination_table_bucket_arn, }) result.compact end |