Class: Aws::IAM::Types::PutUserPermissionsBoundaryRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::IAM::Types::PutUserPermissionsBoundaryRequest
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #permissions_boundary  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ARN of the managed 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 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 ][2] in the *IAM User Guide*.
[1]: docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html [2]: docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#access_policy-types
| 8576 8577 8578 8579 8580 8581 | # File 'lib/aws-sdk-iam/types.rb', line 8576 class PutUserPermissionsBoundaryRequest < Struct.new( :user_name, :permissions_boundary) SENSITIVE = [] 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.
| 8576 8577 8578 8579 8580 8581 | # File 'lib/aws-sdk-iam/types.rb', line 8576 class PutUserPermissionsBoundaryRequest < Struct.new( :user_name, :permissions_boundary) SENSITIVE = [] include Aws::Structure end |