Class: Aws::IAM::Types::AttachedPermissionsBoundary

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#permissions_boundary_arnString

The ARN of the policy used to set the permissions boundary for the user or role.

Returns:

  • (String)


470
471
472
473
474
475
# File 'lib/aws-sdk-iam/types.rb', line 470

class AttachedPermissionsBoundary < Struct.new(
  :permissions_boundary_type,
  :permissions_boundary_arn)
  SENSITIVE = []
  include Aws::Structure
end

#permissions_boundary_typeString

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`.

Returns:

  • (String)


470
471
472
473
474
475
# File 'lib/aws-sdk-iam/types.rb', line 470

class AttachedPermissionsBoundary < Struct.new(
  :permissions_boundary_type,
  :permissions_boundary_arn)
  SENSITIVE = []
  include Aws::Structure
end