{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-gamelift/refs/heads/main/json-schema/gamelift-create-location-input-schema.json",
"title": "CreateLocationInput",
"description": "CreateLocationInput schema from Amazon GameLift API",
"type": "object",
"properties": {
"LocationName": {
"allOf": [
{
"$ref": "#/components/schemas/CustomInputLocationStringModel"
},
{
"description": "A descriptive name for the custom location."
}
]
},
"Tags": {
"allOf": [
{
"$ref": "#/components/schemas/TagList"
},
{
"description": "A list of labels to assign to the new matchmaking configuration resource. Tags are developer-defined key-value pairs. Tagging Amazon Web Services resources are useful for resource management, access management and cost allocation. For more information, see <a href=\"https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html\"> Tagging Amazon Web Services Resources</a> in the <i>Amazon Web Services General Rareference</i>."
}
]
}
},
"required": [
"LocationName"
]
}