{
"$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-attach-managed-policy-to-permission-set-request-schema.json",
"title": "AttachManagedPolicyToPermissionSetRequest",
"description": "AttachManagedPolicyToPermissionSetRequest schema from AWS IAM Identity Center",
"type": "object",
"properties": {
"InstanceArn": {
"allOf": [
{
"$ref": "#/components/schemas/InstanceArn"
},
{
"description": "The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference."
}
]
},
"PermissionSetArn": {
"allOf": [
{
"$ref": "#/components/schemas/PermissionSetArn"
},
{
"description": "The ARN of the PermissionSet that the managed policy should be attached to."
}
]
},
"ManagedPolicyArn": {
"allOf": [
{
"$ref": "#/components/schemas/ManagedPolicyArn"
},
{
"description": "The AWS managed policy ARN to be attached to a permission set."
}
]
}
},
"required": [
"InstanceArn",
"PermissionSetArn",
"ManagedPolicyArn"
]
}