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

The content-type for the model, for example, "application/json".

*/ ContentType?: string; /** *

The description of the model.

*/ Description?: string; /** *

The model identifier.

*/ ModelId?: string; /** *

The name of the model. Must be alphanumeric.

*/ Name?: string; /** *

The schema for the model. For application/json models, this should be JSON schema * draft 4 model.

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