Class: Aws::IAM::Types::DeleteAccountAliasRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::DeleteAccountAliasRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Note:
When making an API call, you may pass DeleteAccountAliasRequest data as a hash:
{
account_alias: "accountAliasType", # required
}
Instance Attribute Summary collapse
-
#account_alias ⇒ String
The name of the account alias to delete.
Instance Attribute Details
#account_alias ⇒ String
The name of the account alias to delete.
This parameter allows (per its [regex pattern]) a string of characters consisting of lowercase letters, digits, and dashes. You cannot start or finish with a dash, nor can you have two dashes in a row.
1662 1663 1664 1665 |
# File 'lib/aws-sdk-iam/types.rb', line 1662 class DeleteAccountAliasRequest < Struct.new( :account_alias) include Aws::Structure end |