Class: Aws::PaymentCryptography::Types::Alias
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptography::Types::Alias
- Includes:
- Structure
- Defined in:
- 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.
94 95 96 97 98 99 |
# File 'lib/aws-sdk-paymentcryptography/types.rb', line 94 class Alias < Struct.new( :alias_name, :key_arn) SENSITIVE = [] include Aws::Structure end |