Class: Aws::IoT::Types::DeleteRoleAliasRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::DeleteRoleAliasRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass DeleteRoleAliasRequest data as a hash:
{
role_alias: "RoleAlias", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#role_alias ⇒ String
The role alias to delete.
Instance Attribute Details
#role_alias ⇒ String
The role alias to delete.
6115 6116 6117 6118 6119 |
# File 'lib/aws-sdk-iot/types.rb', line 6115 class DeleteRoleAliasRequest < Struct.new( :role_alias) SENSITIVE = [] include Aws::Structure end |