Class: AWSCDK::Interfaces::AWSCleanrooms::IdNamespaceAssociationReference

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

Overview

A reference to a IdNamespaceAssociation resource.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id_namespace_association_arn:, id_namespace_association_identifier:, membership_identifier:) ⇒ IdNamespaceAssociationReference

Returns a new instance of IdNamespaceAssociationReference.

Parameters:

  • id_namespace_association_arn (String)

    The ARN of the IdNamespaceAssociation resource.

  • id_namespace_association_identifier (String)

    The IdNamespaceAssociationIdentifier of the IdNamespaceAssociation resource.

  • membership_identifier (String)

    The MembershipIdentifier of the IdNamespaceAssociation resource.



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

def initialize(id_namespace_association_arn:, id_namespace_association_identifier:, membership_identifier:)
  @id_namespace_association_arn = id_namespace_association_arn
  Jsii::Type.check_type(@id_namespace_association_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "idNamespaceAssociationArn")
  @id_namespace_association_identifier = id_namespace_association_identifier
  Jsii::Type.check_type(@id_namespace_association_identifier, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "idNamespaceAssociationIdentifier")
  @membership_identifier = membership_identifier
  Jsii::Type.check_type(@membership_identifier, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "membershipIdentifier")
end

Instance Attribute Details

#id_namespace_association_arnString (readonly)

The ARN of the IdNamespaceAssociation resource.

Returns:

  • (String)


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

def id_namespace_association_arn
  @id_namespace_association_arn
end

#id_namespace_association_identifierString (readonly)

The IdNamespaceAssociationIdentifier of the IdNamespaceAssociation resource.

Returns:

  • (String)


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

def id_namespace_association_identifier
  @id_namespace_association_identifier
end

#membership_identifierString (readonly)

The MembershipIdentifier of the IdNamespaceAssociation resource.

Returns:

  • (String)


30
31
32
# File 'interfaces/aws_cleanrooms/id_namespace_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/id_namespace_association_reference.rb', line 32

def self.jsii_properties
  {
    :id_namespace_association_arn => "idNamespaceAssociationArn",
    :id_namespace_association_identifier => "idNamespaceAssociationIdentifier",
    :membership_identifier => "membershipIdentifier",
  }
end

Instance Method Details

#to_jsiiObject



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

def to_jsii
  result = {}
  result.merge!({
    "idNamespaceAssociationArn" => @id_namespace_association_arn,
    "idNamespaceAssociationIdentifier" => @id_namespace_association_identifier,
    "membershipIdentifier" => @membership_identifier,
  })
  result.compact
end