Class: Aws::KMS::Types::AliasListEntry

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

Overview

Contains information about an alias.

Instance Attribute Summary collapse

Instance Attribute Details

#alias_arnString

String that contains the key ARN.

Returns:

  • (String)


27
28
29
30
31
32
# File 'lib/aws-sdk-kms/types.rb', line 27

class AliasListEntry < Struct.new(
  :alias_name,
  :alias_arn,
  :target_key_id)
  include Aws::Structure
end

#alias_nameString

String that contains the alias.

Returns:

  • (String)


27
28
29
30
31
32
# File 'lib/aws-sdk-kms/types.rb', line 27

class AliasListEntry < Struct.new(
  :alias_name,
  :alias_arn,
  :target_key_id)
  include Aws::Structure
end

#target_key_idString

String that contains the key identifier referred to by the alias.

Returns:

  • (String)


27
28
29
30
31
32
# File 'lib/aws-sdk-kms/types.rb', line 27

class AliasListEntry < Struct.new(
  :alias_name,
  :alias_arn,
  :target_key_id)
  include Aws::Structure
end