Class: Aws::IAM::Types::DeleteRolePermissionsBoundaryRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::DeleteRolePermissionsBoundaryRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Note:
When making an API call, you may pass DeleteRolePermissionsBoundaryRequest data as a hash:
{
role_name: "roleNameType", # required
}
Instance Attribute Summary collapse
-
#role_name ⇒ String
The name (friendly name, not ARN) of the IAM role from which you want to remove the permissions boundary.
Instance Attribute Details
#role_name ⇒ String
The name (friendly name, not ARN) of the IAM role from which you want to remove the permissions boundary.
1897 1898 1899 1900 |
# File 'lib/aws-sdk-iam/types.rb', line 1897 class DeleteRolePermissionsBoundaryRequest < Struct.new( :role_name) include Aws::Structure end |