AttachedPermissionsBoundary

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.

APIs.ioEngineeringPlatform

Properties

Name Type Description
PermissionsBoundaryType object
PermissionsBoundaryArn object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-attachedpermissionsboundary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AttachedPermissionsBoundary",
  "title": "AttachedPermissionsBoundary",
  "type": "object",
  "properties": {
    "PermissionsBoundaryType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PermissionsBoundaryAttachmentType"
        },
        {
          "description": " 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 <code>Policy</code>."
        }
      ]
    },
    "PermissionsBoundaryArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/arnType"
        },
        {
          "description": " The ARN of the policy used to set the permissions boundary for the user or role."
        }
      ]
    }
  },
  "description": "<p>Contains information about an attached permissions boundary.</p> <p>An attached permissions boundary is a managed policy that has been attached to a user or role to set the permissions boundary.</p> <p>For more information about permissions boundaries, see <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html\">Permissions boundaries for IAM identities </a> in the <i>IAM User Guide</i>.</p>"
}