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