Class: Aws::IAM::Types::PutUserPermissionsBoundaryRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::PutUserPermissionsBoundaryRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Note:
When making an API call, you may pass PutUserPermissionsBoundaryRequest data as a hash:
{
user_name: "userNameType", # required
permissions_boundary: "arnType", # required
}
Instance Attribute Summary collapse
-
#permissions_boundary ⇒ String
The ARN of the policy that is used to set the permissions boundary for the user.
-
#user_name ⇒ String
The name (friendly name, not ARN) of the IAM user for which you want to set the permissions boundary.
Instance Attribute Details
#permissions_boundary ⇒ String
The ARN of the policy that is used to set the permissions boundary for the user.
7539 7540 7541 7542 7543 |
# File 'lib/aws-sdk-iam/types.rb', line 7539 class PutUserPermissionsBoundaryRequest < Struct.new( :user_name, :permissions_boundary) include Aws::Structure end |
#user_name ⇒ String
The name (friendly name, not ARN) of the IAM user for which you want to set the permissions boundary.
7539 7540 7541 7542 7543 |
# File 'lib/aws-sdk-iam/types.rb', line 7539 class PutUserPermissionsBoundaryRequest < Struct.new( :user_name, :permissions_boundary) include Aws::Structure end |