import * as __aws_sdk_types from "@aws-sdk/types"; /** * CreateApiOutput shape */ export interface CreateApiOutput extends __aws_sdk_types.MetadataBearer { /** *

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; /** *

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?: Array; /** *

The 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; }; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }