Class: Aws::APIGateway::Types::GetDomainNamesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetDomainNamesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass GetDomainNamesRequest data as a hash:
{
position: "String",
limit: 1,
}
Request to describe a collection of DomainName resources.
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
permalink #limit ⇒ Integer
The maximum number of returned results per page. The value is 25 by default and could be between 1 - 500.
3197 3198 3199 3200 3201 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3197 class GetDomainNamesRequest < Struct.new( :position, :limit) include Aws::Structure end |
permalink #position ⇒ String
The current pagination position in the paged result set.
3197 3198 3199 3200 3201 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3197 class GetDomainNamesRequest < Struct.new( :position, :limit) include Aws::Structure end |