Class: AWSCDK::Interfaces::AWSCleanrooms::ConfiguredTableAssociationReference

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
interfaces/aws_cleanrooms/configured_table_association_reference.rb

Overview

A reference to a ConfiguredTableAssociation resource.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(configured_table_association_arn:, configured_table_association_identifier:, membership_identifier:) ⇒ ConfiguredTableAssociationReference

Returns a new instance of ConfiguredTableAssociationReference.

Parameters:

  • configured_table_association_arn (String)

    The ARN of the ConfiguredTableAssociation resource.

  • configured_table_association_identifier (String)

    The ConfiguredTableAssociationIdentifier of the ConfiguredTableAssociation resource.

  • membership_identifier (String)

    The MembershipIdentifier of the ConfiguredTableAssociation resource.



10
11
12
13
14
15
16
17
# File 'interfaces/aws_cleanrooms/configured_table_association_reference.rb', line 10

def initialize(configured_table_association_arn:, configured_table_association_identifier:, membership_identifier:)
  @configured_table_association_arn = configured_table_association_arn
  Jsii::Type.check_type(@configured_table_association_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "configuredTableAssociationArn")
  @configured_table_association_identifier = configured_table_association_identifier
  Jsii::Type.check_type(@configured_table_association_identifier, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "configuredTableAssociationIdentifier")
  @membership_identifier = membership_identifier
  Jsii::Type.check_type(@membership_identifier, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "membershipIdentifier")
end

Instance Attribute Details

#configured_table_association_arnString (readonly)

The ARN of the ConfiguredTableAssociation resource.

Returns:

  • (String)


22
23
24
# File 'interfaces/aws_cleanrooms/configured_table_association_reference.rb', line 22

def configured_table_association_arn
  @configured_table_association_arn
end

#configured_table_association_identifierString (readonly)

The ConfiguredTableAssociationIdentifier of the ConfiguredTableAssociation resource.

Returns:

  • (String)


26
27
28
# File 'interfaces/aws_cleanrooms/configured_table_association_reference.rb', line 26

def configured_table_association_identifier
  @configured_table_association_identifier
end

#membership_identifierString (readonly)

The MembershipIdentifier of the ConfiguredTableAssociation resource.

Returns:

  • (String)


30
31
32
# File 'interfaces/aws_cleanrooms/configured_table_association_reference.rb', line 30

def membership_identifier
  @membership_identifier
end

Class Method Details

.jsii_propertiesObject



32
33
34
35
36
37
38
# File 'interfaces/aws_cleanrooms/configured_table_association_reference.rb', line 32

def self.jsii_properties
  {
    :configured_table_association_arn => "configuredTableAssociationArn",
    :configured_table_association_identifier => "configuredTableAssociationIdentifier",
    :membership_identifier => "membershipIdentifier",
  }
end

Instance Method Details

#to_jsiiObject



40
41
42
43
44
45
46
47
48
# File 'interfaces/aws_cleanrooms/configured_table_association_reference.rb', line 40

def to_jsii
  result = {}
  result.merge!({
    "configuredTableAssociationArn" => @configured_table_association_arn,
    "configuredTableAssociationIdentifier" => @configured_table_association_identifier,
    "membershipIdentifier" => @membership_identifier,
  })
  result.compact
end