Class: Aws::ApiGatewayV2::Types::UpdateModelInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApiGatewayV2::Types::UpdateModelInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigatewayv2/types.rb
Overview
Represents the input parameters for an UpdateModel request. Supported only for WebSocket APIs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#content_type ⇒ String
The content-type for the model, for example, “application/json”.
-
#description ⇒ String
The description of the model.
-
#name ⇒ String
The name of the model.
-
#schema ⇒ String
The schema for the model.
Instance Attribute Details
#content_type ⇒ String
The content-type for the model, for example, “application/json”.
7286 7287 7288 7289 7290 7291 7292 7293 |
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 7286 class UpdateModelInput < Struct.new( :content_type, :description, :name, :schema) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The description of the model.
7286 7287 7288 7289 7290 7291 7292 7293 |
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 7286 class UpdateModelInput < Struct.new( :content_type, :description, :name, :schema) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the model.
7286 7287 7288 7289 7290 7291 7292 7293 |
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 7286 class UpdateModelInput < Struct.new( :content_type, :description, :name, :schema) SENSITIVE = [] include Aws::Structure end |
#schema ⇒ String
The schema for the model. For application/json models, this should be JSON schema draft 4 model.
7286 7287 7288 7289 7290 7291 7292 7293 |
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 7286 class UpdateModelInput < Struct.new( :content_type, :description, :name, :schema) SENSITIVE = [] include Aws::Structure end |