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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#permissions_boundaryString

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

A permissions boundary policy defines the maximum permissions that identity-based policies can grant to an entity, but does not grant permissions. Permissions boundaries do not define the maximum permissions that a resource-based policy can grant to an entity. To learn more, see Permissions boundaries for IAM entities in the IAM User Guide.

For more information about policy types, see Policy types in the IAM User Guide.

Returns:

  • (String)


8348
8349
8350
8351
8352
8353
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 8348

class PutUserPermissionsBoundaryRequest < Struct.new(
  :user_name,
  :permissions_boundary)
  SENSITIVE = []
  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)


8348
8349
8350
8351
8352
8353
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 8348

class PutUserPermissionsBoundaryRequest < Struct.new(
  :user_name,
  :permissions_boundary)
  SENSITIVE = []
  include Aws::Structure
end