Class: Aws::IAM::Types::DeleteAccountAliasRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::DeleteAccountAliasRequest
- Defined in:
- gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
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 (through 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.
1852 1853 1854 1855 1856 |
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 1852 class DeleteAccountAliasRequest < Struct.new( :account_alias) SENSITIVE = [] include Aws::Structure end |