Amazon Glue · Schema
CreateBlueprintRequest
CreateBlueprintRequest schema from Amazon Glue API
AnalyticsData CatalogData IntegrationData PipelineETLServerless
Properties
| Name | Type | Description |
|---|---|---|
| Name | object | |
| Description | object | |
| BlueprintLocation | object | |
| Tags | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-create-blueprint-request-schema.json",
"title": "CreateBlueprintRequest",
"description": "CreateBlueprintRequest schema from Amazon Glue API",
"type": "object",
"properties": {
"Name": {
"allOf": [
{
"$ref": "#/components/schemas/OrchestrationNameString"
},
{
"description": "The name of the blueprint."
}
]
},
"Description": {
"allOf": [
{
"$ref": "#/components/schemas/Generic512CharString"
},
{
"description": "A description of the blueprint."
}
]
},
"BlueprintLocation": {
"allOf": [
{
"$ref": "#/components/schemas/OrchestrationS3Location"
},
{
"description": "Specifies a path in Amazon S3 where the blueprint is published."
}
]
},
"Tags": {
"allOf": [
{
"$ref": "#/components/schemas/TagsMap"
},
{
"description": "The tags to be applied to this blueprint."
}
]
}
},
"required": [
"Name",
"BlueprintLocation"
]
}