Class: Aws::APIGateway::Types::GetDocumentationVersionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetDocumentationVersionsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass GetDocumentationVersionsRequest data as a hash:
{
rest_api_id: "String", # required
position: "String",
limit: 1,
}
Gets the documentation versions of an API.
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
[Required] 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.
3454 3455 3456 3457 3458 3459 3460 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3454 class GetDocumentationVersionsRequest < Struct.new( :rest_api_id, :position, :limit) SENSITIVE = [] include Aws::Structure end |
#position ⇒ String
The current pagination position in the paged result set.
3454 3455 3456 3457 3458 3459 3460 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3454 class GetDocumentationVersionsRequest < Struct.new( :rest_api_id, :position, :limit) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
3454 3455 3456 3457 3458 3459 3460 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3454 class GetDocumentationVersionsRequest < Struct.new( :rest_api_id, :position, :limit) SENSITIVE = [] include Aws::Structure end |