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

GetModelRequest

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

Request to list information about a model in an existing "RestApi" resource.

interface GetModelRequest {
flatten?: boolean | null;
modelName: string;
restApiId: string;
}

§Properties

§
flatten?: boolean | null
[src]

A query parameter of a Boolean value to resolve (true) all external model references and returns a flattened model schema or not (false) The default is false.

§
modelName: string
[src]

[Required] The name of the model as an identifier.

§
restApiId: string
[src]

[Required] The "RestApi" identifier under which the "Model" exists.