Class: AWSCDK::Interfaces::AWSCleanrooms::IdNamespaceAssociationReference
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Interfaces::AWSCleanrooms::IdNamespaceAssociationReference
- Defined in:
- interfaces/aws_cleanrooms/id_namespace_association_reference.rb
Overview
A reference to a IdNamespaceAssociation resource.
Instance Attribute Summary collapse
-
#id_namespace_association_arn ⇒ String
readonly
The ARN of the IdNamespaceAssociation resource.
-
#id_namespace_association_identifier ⇒ String
readonly
The IdNamespaceAssociationIdentifier of the IdNamespaceAssociation resource.
-
#membership_identifier ⇒ String
readonly
The MembershipIdentifier of the IdNamespaceAssociation resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(id_namespace_association_arn:, id_namespace_association_identifier:, membership_identifier:) ⇒ IdNamespaceAssociationReference
constructor
A new instance of IdNamespaceAssociationReference.
- #to_jsii ⇒ Object
Constructor Details
#initialize(id_namespace_association_arn:, id_namespace_association_identifier:, membership_identifier:) ⇒ IdNamespaceAssociationReference
Returns a new instance of IdNamespaceAssociationReference.
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_arn ⇒ String (readonly)
The ARN of the IdNamespaceAssociation resource.
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_identifier ⇒ String (readonly)
The IdNamespaceAssociationIdentifier of the IdNamespaceAssociation resource.
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_identifier ⇒ String (readonly)
The MembershipIdentifier of the IdNamespaceAssociation resource.
30 31 32 |
# File 'interfaces/aws_cleanrooms/id_namespace_association_reference.rb', line 30 def membership_identifier @membership_identifier end |
Class Method Details
.jsii_properties ⇒ Object
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_jsii ⇒ Object
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 |