Class: Aws::APIGateway::Types::GetModelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetModelRequest
- Defined in:
- gems/aws-sdk-apigateway/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 isfalse
. -
#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
.
2888 2889 2890 2891 2892 2893 2894 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2888 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.
2888 2889 2890 2891 2892 2893 2894 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2888 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.
2888 2889 2890 2891 2892 2893 2894 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2888 class GetModelRequest < Struct.new( :rest_api_id, :model_name, :flatten) SENSITIVE = [] include Aws::Structure end |