{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TransitGatewayState", "title": "Transit Gateway State", "description": "The current state of the Transit Gateway. Possible values:\n- `created` - The attachment has been created but is not attached to transit gateway.\n- `initializing` - The attachment is in the process of being initialized and is setting up necessary resources.\n- `pending-acceptance` The attachment request is awaiting acceptance in customer VPC.\n- `pending-user-action` The attachment request is awaiting user action in customer VPC.\n- `ready` - The transit gateway attachment is fully operational and can route traffic as configured.\n- `terminating` - The attachment is in the process of being deleted and is no longer accepting new traffic.\n- `terminated` - The attachment has been fully deleted and is no longer available.\n- `error` - The attachment is in an error state.\n", "type": "string", "enum": [ "created", "initializing", "pending-acceptance", "pending-user-action", "ready", "terminating", "terminated", "error" ], "readOnly": true, "x-speakeasy-unknown-values": "allow" }