{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AwsTransitGatewayAttachmentConfigForResponse", "title": "AWS Transit Gateway Attachment Config", "type": "object", "properties": { "kind": { "enum": [ "aws-transit-gateway-attachment" ], "title": "AWS Transit Gateway Attachment Type" }, "transit_gateway_id": { "description": "AWS Transit Gateway ID to create attachment to.", "type": "string", "title": "Transit Gateway ID" }, "ram_share_arn": { "description": "Resource Share ARN to verify request to create transit gateway attachment.", "type": "string", "title": "RAM Share ARN" }, "attachment_id": { "description": "ID of the AWS Transit Gateway attachment.", "type": "string", "title": "AWS Transit Gateway Attachment ID" } }, "additionalProperties": false, "required": [ "kind", "transit_gateway_id", "ram_share_arn" ] }