Class: Aws::PaymentCryptography::Types::Alias
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptography::Types::Alias
- Defined in:
- gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb
Overview
Contains information about an alias.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#alias_name ⇒ String
A friendly name that you can use to refer to a key.
-
#key_arn ⇒ String
The
KeyARN
of the key associated with the alias.
Instance Attribute Details
#alias_name ⇒ String
A friendly name that you can use to refer to a key. The value must
begin with alias/
.
Do not include confidential or sensitive information in this field. This field may be displayed in plaintext in CloudTrail logs and other output.
43 44 45 46 47 48 |
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 43 class Alias < Struct.new( :alias_name, :key_arn) SENSITIVE = [] include Aws::Structure end |