Class: AWSCDK::Interfaces::AWSPaymentcryptography::AliasReference
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Interfaces::AWSPaymentcryptography::AliasReference
- Defined in:
- interfaces/aws_paymentcryptography/alias_reference.rb
Overview
A reference to a Alias resource.
Instance Attribute Summary collapse
-
#alias_name ⇒ String
readonly
The AliasName of the Alias resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(alias_name:) ⇒ AliasReference
constructor
A new instance of AliasReference.
- #to_jsii ⇒ Object
Constructor Details
#initialize(alias_name:) ⇒ AliasReference
Returns a new instance of AliasReference.
8 9 10 11 |
# File 'interfaces/aws_paymentcryptography/alias_reference.rb', line 8 def initialize(alias_name:) @alias_name = alias_name Jsii::Type.check_type(@alias_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "aliasName") end |
Instance Attribute Details
#alias_name ⇒ String (readonly)
The AliasName of the Alias resource.
16 17 18 |
# File 'interfaces/aws_paymentcryptography/alias_reference.rb', line 16 def alias_name @alias_name end |
Class Method Details
.jsii_properties ⇒ Object
18 19 20 21 22 |
# File 'interfaces/aws_paymentcryptography/alias_reference.rb', line 18 def self.jsii_properties { :alias_name => "aliasName", } end |
Instance Method Details
#to_jsii ⇒ Object
24 25 26 27 28 29 30 |
# File 'interfaces/aws_paymentcryptography/alias_reference.rb', line 24 def to_jsii result = {} result.merge!({ "aliasName" => @alias_name, }) result.compact end |