Class: Aws::APIGateway::Types::DeleteBasePathMappingRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::APIGateway::Types::DeleteBasePathMappingRequest
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
A request to delete the BasePathMapping resource.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #base_path  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The base path name of the BasePathMapping resource to delete. 
- 
  
    
      #domain_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The domain name of the BasePathMapping resource to delete. 
- 
  
    
      #domain_name_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The identifier for the domain name resource. 
Instance Attribute Details
#base_path ⇒ String
The base path name of the BasePathMapping resource to delete.
To specify an empty base path, set this parameter to ‘’(none)‘`.
| 1304 1305 1306 1307 1308 1309 1310 | # File 'lib/aws-sdk-apigateway/types.rb', line 1304 class DeleteBasePathMappingRequest < Struct.new( :domain_name, :domain_name_id, :base_path) SENSITIVE = [] include Aws::Structure end | 
#domain_name ⇒ String
The domain name of the BasePathMapping resource to delete.
| 1304 1305 1306 1307 1308 1309 1310 | # File 'lib/aws-sdk-apigateway/types.rb', line 1304 class DeleteBasePathMappingRequest < Struct.new( :domain_name, :domain_name_id, :base_path) SENSITIVE = [] include Aws::Structure end | 
#domain_name_id ⇒ String
The identifier for the domain name resource. Supported only for private custom domain names.
| 1304 1305 1306 1307 1308 1309 1310 | # File 'lib/aws-sdk-apigateway/types.rb', line 1304 class DeleteBasePathMappingRequest < Struct.new( :domain_name, :domain_name_id, :base_path) SENSITIVE = [] include Aws::Structure end |