Class: Aws::APIGateway::Types::GetRestApisRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetRestApisRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass GetRestApisRequest data as a hash:
{
position: "String",
limit: 1,
}
The GET request to list existing RestApis defined for your collection.
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.
Instance Attribute Details
#limit ⇒ Integer
The maximum number of returned results per page. The default value is 25 and the maximum value is 500.
4038 4039 4040 4041 4042 4043 |
# File 'lib/aws-sdk-apigateway/types.rb', line 4038 class GetRestApisRequest < Struct.new( :position, :limit) SENSITIVE = [] include Aws::Structure end |
#position ⇒ String
The current pagination position in the paged result set.
4038 4039 4040 4041 4042 4043 |
# File 'lib/aws-sdk-apigateway/types.rb', line 4038 class GetRestApisRequest < Struct.new( :position, :limit) SENSITIVE = [] include Aws::Structure end |