import { _UnmarshalledParameterConstraints } from "./_ParameterConstraints"; import * as __aws_sdk_types from "@aws-sdk/types"; /** * UpdateRouteResponseOutput shape */ export interface UpdateRouteResponseOutput extends __aws_sdk_types.MetadataBearer { /** *
Represents the model selection expression of a route response.
*/ ModelSelectionExpression?: string; /** *Represents the response models of a route response.
*/ ResponseModels?: { [key: string]: string; }; /** *Represents the response parameters of a route response.
*/ ResponseParameters?: { [key: string]: _UnmarshalledParameterConstraints; }; /** *Represents the identifier of a route response.
*/ RouteResponseId?: string; /** *Represents the route response key of a route response.
*/ RouteResponseKey?: 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; }