{
"$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 Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference."
}
]
}
}
}