Class: AWSCDK::S3Tables::CfnTableBucket::ReplicationDestinationProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
s3_tables/cfn_table_bucket.rb

Overview

A replication destination.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(destination_table_bucket_arn:) ⇒ ReplicationDestinationProperty

Returns a new instance of ReplicationDestinationProperty.

Parameters:

  • destination_table_bucket_arn (String)

    The ARN of the destination table bucket.



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_arnString (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_propertiesObject



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_jsiiObject



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