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.
6984 6985 6986 6987 6988 |
# File 'lib/aws-sdk-iam/types.rb', line 6984 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.
6984 6985 6986 6987 6988 |
# File 'lib/aws-sdk-iam/types.rb', line 6984 class PutUserPermissionsBoundaryRequest < Struct.new( :user_name, :permissions_boundary) include Aws::Structure end |