PutUserPermissionsBoundaryRequest

APIs.ioEngineeringPlatform

Properties

Name Type Description
UserName object
PermissionsBoundary object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-putuserpermissionsboundaryrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PutUserPermissionsBoundaryRequest",
  "title": "PutUserPermissionsBoundaryRequest",
  "type": "object",
  "required": [
    "UserName",
    "PermissionsBoundary"
  ],
  "properties": {
    "UserName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/userNameType"
        },
        {
          "description": "The name (friendly name, not ARN) of the IAM user for which you want to set the permissions boundary."
        }
      ]
    },
    "PermissionsBoundary": {
      "allOf": [
        {
          "$ref": "#/components/schemas/arnType"
        },
        {
          "description": "<p>The ARN of the managed policy that is used to set the permissions boundary for the user.</p> <p>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 <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html\">Permissions boundaries for IAM entities</a> in the <i>IAM User Guide</i>.</p> <p>For more information about policy types, see <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#access_policy-types\">Policy types </a> in the <i>IAM User Guide</i>.</p>"
        }
      ]
    }
  }
}