Class: Aws::PaymentCryptography::Types::CreateAliasInput

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

Overview

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. An alias must begin with alias/ followed by a name, for example alias/ExampleAlias. It can contain only alphanumeric characters, forward slashes (/), underscores (_), and dashes (-).

Don't include personal, confidential or sensitive information in this field. This field may be displayed in plaintext in CloudTrail logs and other output.

Returns:

  • (String)


80
81
82
83
84
85
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 80

class CreateAliasInput < Struct.new(
  :alias_name,
  :key_arn)
  SENSITIVE = []
  include Aws::Structure
end

#key_arnString

The KeyARN of the key to associate with the alias.

Returns:

  • (String)


80
81
82
83
84
85
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 80

class CreateAliasInput < Struct.new(
  :alias_name,
  :key_arn)
  SENSITIVE = []
  include Aws::Structure
end