{
"$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-tag-resource-request-schema.json",
"title": "TagResourceRequest",
"description": "TagResourceRequest 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 <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>."
}
]
},
"ResourceArn": {
"allOf": [
{
"$ref": "#/components/schemas/TaggableResourceArn"
},
{
"description": "The ARN of the resource with the tags to be listed."
}
]
},
"Tags": {
"allOf": [
{
"$ref": "#/components/schemas/TagList"
},
{
"description": "A set of key-value pairs that are used to manage the resource."
}
]
}
},
"required": [
"InstanceArn",
"ResourceArn",
"Tags"
]
}