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

Inherits:
Struct
  • Object
show all
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

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)


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

#key_arnString

The KeyARN of the key associated with the alias.

Returns:

  • (String)


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