Class: Aws::IAM::Types::AttachedPermissionsBoundary
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::AttachedPermissionsBoundary
- Defined in:
- gems/aws-sdk-iam/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 in the IAM User Guide.
Constant Summary collapse
- SENSITIVE =
[]
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.
482 483 484 485 486 487 |
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 482 class AttachedPermissionsBoundary < Struct.new( :permissions_boundary_type, :permissions_boundary_arn) SENSITIVE = [] 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
.
482 483 484 485 486 487 |
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 482 class AttachedPermissionsBoundary < Struct.new( :permissions_boundary_type, :permissions_boundary_arn) SENSITIVE = [] include Aws::Structure end |