Class: Aws::APIGateway::Types::GetBasePathMappingsRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::APIGateway::Types::GetBasePathMappingsRequest
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
A request to get information about a collection of BasePathMapping resources.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #domain_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The domain name of a BasePathMapping resource. 
- 
  
    
      #domain_name_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The identifier for the domain name 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
The domain name of a BasePathMapping resource.
| 2424 2425 2426 2427 2428 2429 2430 2431 | # File 'lib/aws-sdk-apigateway/types.rb', line 2424 class GetBasePathMappingsRequest < Struct.new( :domain_name, :domain_name_id, :position, :limit) SENSITIVE = [] include Aws::Structure end | 
#domain_name_id ⇒ String
The identifier for the domain name resource. Supported only for private custom domain names.
| 2424 2425 2426 2427 2428 2429 2430 2431 | # File 'lib/aws-sdk-apigateway/types.rb', line 2424 class GetBasePathMappingsRequest < Struct.new( :domain_name, :domain_name_id, :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.
| 2424 2425 2426 2427 2428 2429 2430 2431 | # File 'lib/aws-sdk-apigateway/types.rb', line 2424 class GetBasePathMappingsRequest < Struct.new( :domain_name, :domain_name_id, :position, :limit) SENSITIVE = [] include Aws::Structure end | 
#position ⇒ String
The current pagination position in the paged result set.
| 2424 2425 2426 2427 2428 2429 2430 2431 | # File 'lib/aws-sdk-apigateway/types.rb', line 2424 class GetBasePathMappingsRequest < Struct.new( :domain_name, :domain_name_id, :position, :limit) SENSITIVE = [] include Aws::Structure end |