Select your cookie preferences

We use cookies and similar tools to enhance your experience, provide our services, deliver relevant advertising, and make improvements. Approved third parties also use these tools to help us deliver advertising and provide certain site features.

create_model

create_model(**kwargs)

Adds a new Model resource to an existing RestApi resource.

See also: AWS API Documentation

Request Syntax

response = client.create_model(
    restApiId='string',
    name='string',
    description='string',
    schema='string',
    contentType='string'
)
Parameters
  • restApiId (string) --

    [REQUIRED]

    The RestApi identifier under which the Model will be created.

  • name (string) --

    [REQUIRED]

    The name of the model. Must be alphanumeric.

  • description (string) -- The description of the model.
  • schema (string) -- The schema for the model. For application/json models, this should be JSON schema draft 4 model.
  • contentType (string) --

    [REQUIRED]

    The content-type for the model.

Return type

dict

Returns

Response Syntax

{
    'id': 'string',
    'name': 'string',
    'description': 'string',
    'schema': 'string',
    'contentType': 'string'
}

Response Structure

  • (dict) --

    Represents the data structure of a method's request or response payload.

    • id (string) --

      The identifier for the model resource.

    • name (string) --

      The name of the model. Must be an alphanumeric string.

    • description (string) --

      The description of the model.

    • schema (string) --

      The schema for the model. For application/json models, this should be JSON schema draft 4 model. Do not include "*/" characters in the description of any properties because such "*/" characters may be interpreted as the closing marker for comments in some languages, such as Java or JavaScript, causing the installation of your API's SDK generated by API Gateway to fail.

    • contentType (string) --

      The content-type for the model.

Exceptions

  • APIGateway.Client.exceptions.BadRequestException
  • APIGateway.Client.exceptions.ConflictException
  • APIGateway.Client.exceptions.LimitExceededException
  • APIGateway.Client.exceptions.NotFoundException
  • APIGateway.Client.exceptions.UnauthorizedException
  • APIGateway.Client.exceptions.TooManyRequestsException