Class: Aws::PaymentCryptography::Types::Alias

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-paymentcryptography/types.rb

Overview

Contains information about an alias.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#alias_nameString

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.

Returns:

  • (String)


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

#key_arnString

The ‘KeyARN` of the key associated with the alias.

Returns:

  • (String)


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