Class: Aws::ApiGatewayV2::Types::UpdateModelInput

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#content_typeString

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

Returns:

  • (String)


9874
9875
9876
9877
9878
9879
9880
9881
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 9874

class UpdateModelInput < Struct.new(
  :content_type,
  :description,
  :name,
  :schema)
  SENSITIVE = []
  include Aws::Structure
end

#descriptionString

The description of the model.

Returns:

  • (String)


9874
9875
9876
9877
9878
9879
9880
9881
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 9874

class UpdateModelInput < Struct.new(
  :content_type,
  :description,
  :name,
  :schema)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the model.

Returns:

  • (String)


9874
9875
9876
9877
9878
9879
9880
9881
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 9874

class UpdateModelInput < Struct.new(
  :content_type,
  :description,
  :name,
  :schema)
  SENSITIVE = []
  include Aws::Structure
end

#schemaString

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

Returns:

  • (String)


9874
9875
9876
9877
9878
9879
9880
9881
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 9874

class UpdateModelInput < Struct.new(
  :content_type,
  :description,
  :name,
  :schema)
  SENSITIVE = []
  include Aws::Structure
end