/** *
Represents an API.
*/ export interface _Api { /** *The URI of the API, of the form {api-id}.execute-api.{region}.amazonaws.com. The * stage name is typically appended to this URI to form a complete path to a deployed * API stage.
*/ ApiEndpoint?: string; /** *The API ID.
*/ ApiId?: string; /** *An API key selection expression. See API Key Selection Expressions.
*/ ApiKeySelectionExpression?: string; /** *The timestamp when the API was created.
*/ CreatedDate?: Date | string | number; /** *The description of the API.
*/ Description?: string; /** *Avoid validating models when creating a deployment.
*/ DisableSchemaValidation?: boolean; /** *The name of the API.
*/ Name: string; /** *The API protocol: Currently only WEBSOCKET is supported.
*/ ProtocolType: "WEBSOCKET" | string; /** *The route selection expression for the API.
*/ RouteSelectionExpression: string; /** *A version identifier for the API.
*/ Version?: string; /** *The warning messages reported when failonwarnings is turned on during * API import.
*/ Warnings?: ArrayThe key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with aws:. The tag value can be up to 256 characters..
*/ Tags?: { [key: string]: string; } | Iterable<[string, string]>; } export interface _UnmarshalledApi extends _Api { /** *The timestamp when the API was created.
*/ CreatedDate?: Date; /** *The warning messages reported when failonwarnings is turned on during * API import.
*/ Warnings?: ArrayThe key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with aws:. The tag value can be up to 256 characters..
*/ Tags?: { [key: string]: string; }; }