Class: Aws::IAM::Types::AttachedPermissionsBoundary
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::AttachedPermissionsBoundary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Contains information about an attached permissions boundary.
An attached permissions boundary is a managed policy that has been attached to a user or role to set the permissions boundary.
For more information about permissions boundaries, see [Permissions Boundaries for IAM Identities ][1] in the *IAM User Guide*.
[1]: docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html
Instance Attribute Summary collapse
-
#permissions_boundary_arn ⇒ String
The ARN of the policy used to set the permissions boundary for the user or role.
-
#permissions_boundary_type ⇒ String
The permissions boundary usage type that indicates what type of IAM resource is used as the permissions boundary for an entity.
Instance Attribute Details
#permissions_boundary_arn ⇒ String
The ARN of the policy used to set the permissions boundary for the user or role.
411 412 413 414 415 |
# File 'lib/aws-sdk-iam/types.rb', line 411 class AttachedPermissionsBoundary < Struct.new( :permissions_boundary_type, :permissions_boundary_arn) include Aws::Structure end |
#permissions_boundary_type ⇒ String
The permissions boundary usage type that indicates what type of IAM resource is used as the permissions boundary for an entity. This data type can only have a value of ‘Policy`.
411 412 413 414 415 |
# File 'lib/aws-sdk-iam/types.rb', line 411 class AttachedPermissionsBoundary < Struct.new( :permissions_boundary_type, :permissions_boundary_arn) include Aws::Structure end |