Class: Aws::IAM::Types::PutUserPermissionsBoundaryRequest

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#permissions_boundaryString

The ARN of the policy that is used to set the permissions boundary for the user.

Returns:

  • (String)


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_nameString

The name (friendly name, not ARN) of the IAM user for which you want to set the permissions boundary.

Returns:

  • (String)


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