Class: Aws::APIGateway::Types::GetBasePathMappingsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetBasePathMappingsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass GetBasePathMappingsRequest data as a hash:
{
domain_name: "String", # required
position: "String",
limit: 1,
}
A request to get information about a collection of BasePathMapping resources.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
[Required] The domain name of a BasePathMapping resource.
-
#limit ⇒ Integer
The maximum number of returned results per page.
-
#position ⇒ String
The current pagination position in the paged result set.
Instance Attribute Details
#domain_name ⇒ String
[Required] The domain name of a BasePathMapping resource.
3188 3189 3190 3191 3192 3193 3194 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3188 class GetBasePathMappingsRequest < Struct.new( :domain_name, :position, :limit) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
The maximum number of returned results per page. The default value is 25 and the maximum value is 500.
3188 3189 3190 3191 3192 3193 3194 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3188 class GetBasePathMappingsRequest < Struct.new( :domain_name, :position, :limit) SENSITIVE = [] include Aws::Structure end |
#position ⇒ String
The current pagination position in the paged result set.
3188 3189 3190 3191 3192 3193 3194 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3188 class GetBasePathMappingsRequest < Struct.new( :domain_name, :position, :limit) SENSITIVE = [] include Aws::Structure end |