Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UpdateModelRequest

import type { UpdateModelRequest } from "https://aws-api.deno.dev/v0.3/services/apigatewayv2.ts?docs=full";

Updates a Model.

interface UpdateModelRequest {
ApiId: string;
ContentType?: string | null;
Description?: string | null;
ModelId: string;
Name?: string | null;
Schema?: string | null;
}

§Properties

§
ApiId: string
[src]

The API identifier.

§
ContentType?: string | null
[src]

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

§
Description?: string | null
[src]

The description of the model.

§
ModelId: string
[src]

The model ID.

§
Name?: string | null
[src]

The name of the model.

§
Schema?: string | null
[src]

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