Class: Aws::APIGateway::Types::DeleteBasePathMappingRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::DeleteBasePathMappingRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass DeleteBasePathMappingRequest data as a hash:
{
domain_name: "String", # required
base_path: "String", # required
}
A request to delete the BasePathMapping resource.
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.
Instance Attribute Details
#base_path ⇒ String
The base path name of the BasePathMapping resource to delete.
1280 1281 1282 1283 1284 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1280 class DeleteBasePathMappingRequest < Struct.new( :domain_name, :base_path) include Aws::Structure end |
#domain_name ⇒ String
The domain name of the BasePathMapping resource to delete.
1280 1281 1282 1283 1284 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1280 class DeleteBasePathMappingRequest < Struct.new( :domain_name, :base_path) include Aws::Structure end |