Class: Aws::APIGateway::Types::GetModelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetModelRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Request to list information about a model in an existing RestApi resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#flatten ⇒ Boolean
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`.
-
#model_name ⇒ String
The name of the model as an identifier.
-
#rest_api_id ⇒ String
The RestApi identifier under which the Model exists.
Instance Attribute Details
#flatten ⇒ Boolean
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`.
2700 2701 2702 2703 2704 2705 2706 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2700 class GetModelRequest < Struct.new( :rest_api_id, :model_name, :flatten) SENSITIVE = [] include Aws::Structure end |
#model_name ⇒ String
The name of the model as an identifier.
2700 2701 2702 2703 2704 2705 2706 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2700 class GetModelRequest < Struct.new( :rest_api_id, :model_name, :flatten) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
The RestApi identifier under which the Model exists.
2700 2701 2702 2703 2704 2705 2706 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2700 class GetModelRequest < Struct.new( :rest_api_id, :model_name, :flatten) SENSITIVE = [] include Aws::Structure end |