Class: Aws::APIGateway::Types::GetModelsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetModelsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Request to list existing Models defined for a RestApi resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#limit ⇒ Integer
The maximum number of returned results per page.
-
#position ⇒ String
The current pagination position in the paged result set.
-
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
Instance Attribute Details
#limit ⇒ Integer
The maximum number of returned results per page. The default value is 25 and the maximum value is 500.
2740 2741 2742 2743 2744 2745 2746 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2740 class GetModelsRequest < Struct.new( :rest_api_id, :position, :limit) SENSITIVE = [] include Aws::Structure end |
#position ⇒ String
The current pagination position in the paged result set.
2740 2741 2742 2743 2744 2745 2746 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2740 class GetModelsRequest < Struct.new( :rest_api_id, :position, :limit) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
2740 2741 2742 2743 2744 2745 2746 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2740 class GetModelsRequest < Struct.new( :rest_api_id, :position, :limit) SENSITIVE = [] include Aws::Structure end |