AttachedManagedPolicy

A structure that stores the details of the AWS managed policy.

Access ControlAuthenticationIdentity ManagementSingle Sign-On

Properties

Name Type Description
Name object
Arn object
View JSON Schema on GitHub

JSON Schema

sso-admin-attached-managed-policy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iam-identity-center/refs/heads/main/json-schema/sso-admin-attached-managed-policy-schema.json",
  "title": "AttachedManagedPolicy",
  "description": "A structure that stores the details of the AWS managed policy.",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Name"
        },
        {
          "description": "The name of the AWS managed policy."
        }
      ]
    },
    "Arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ManagedPolicyArn"
        },
        {
          "description": "The ARN of the AWS managed policy. For more information about ARNs, see <a href=\"/general/latest/gr/aws-arns-and-namespaces.html\">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>."
        }
      ]
    }
  }
}