Adds a new Model resource to an existing RestApi resource.
See https://www.paws-r-sdk.com/docs/apigateway_create_model/ for full documentation.
apigateway_create_model(
restApiId,
name,
description = NULL,
schema = NULL,
contentType
)
[required] The RestApi identifier under which the Model will be created.
[required] The name of the model. Must be alphanumeric.
The description of the model.
The schema for the model. For application/json
models, this should be
JSON schema draft 4 model. The maximum size of the model is 400 KB.
[required] The content-type for the model.