Class: Aws::APIGateway::Types::GetBasePathMappingsRequest

Inherits:
Struct
  • Object
show all
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.

Instance Attribute Summary collapse

Instance Attribute Details

#domain_nameString

The domain name of a BasePathMapping resource.

Returns:

  • (String)


2552
2553
2554
2555
2556
2557
# File 'lib/aws-sdk-apigateway/types.rb', line 2552

class GetBasePathMappingsRequest < Struct.new(
  :domain_name,
  :position,
  :limit)
  include Aws::Structure
end

#limitInteger

The maximum number of returned results per page. The value is 25 by default and could be between 1 - 500.

Returns:

  • (Integer)


2552
2553
2554
2555
2556
2557
# File 'lib/aws-sdk-apigateway/types.rb', line 2552

class GetBasePathMappingsRequest < Struct.new(
  :domain_name,
  :position,
  :limit)
  include Aws::Structure
end

#positionString

The current pagination position in the paged result set.

Returns:

  • (String)


2552
2553
2554
2555
2556
2557
# File 'lib/aws-sdk-apigateway/types.rb', line 2552

class GetBasePathMappingsRequest < Struct.new(
  :domain_name,
  :position,
  :limit)
  include Aws::Structure
end