Class: Aws::KMS::Types::DeleteAliasRequest

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

Overview

Note:

When making an API call, you may pass DeleteAliasRequest data as a hash:

{
  alias_name: "AliasNameType", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#alias_nameString

The alias to be deleted. The name must start with the word “alias” followed by a forward slash (alias/). Aliases that begin with “alias/aws” are reserved.

Returns:

  • (String)


710
711
712
713
# File 'lib/aws-sdk-kms/types.rb', line 710

class DeleteAliasRequest < Struct.new(
  :alias_name)
  include Aws::Structure
end