import { NodeHttpOptions as __HttpOptions__ } from "@aws-sdk/types"; import * as __aws_sdk_types from "@aws-sdk/types"; /** * CreateApiInput shape */ export interface CreateApiInput { /** *
An API key selection expression. See API Key Selection Expressions.
*/ ApiKeySelectionExpression?: string; /** *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 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]>; /** * The maximum number of times this operation should be retried. If set, this value will override the `maxRetries` configuration set on the client for this command. */ $maxRetries?: number; /** * An object that may be queried to determine if the underlying operation has been aborted. * * @see https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal */ $abortSignal?: __aws_sdk_types.AbortSignal; /** * Per-request HTTP configuration options. If set, any options specified will override the corresponding HTTP option set on the client for this command. */ $httpOptions?: __HttpOptions__; }