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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#base_path ⇒ String
[Required] The base path name of the BasePathMapping resource to delete.
-
#domain_name ⇒ String
[Required] The domain name of the BasePathMapping resource to delete.
Instance Attribute Details
#base_path ⇒ String
[Required] The base path name of the BasePathMapping resource to delete.
To specify an empty base path, set this parameter to ‘’(none)‘`.
1689 1690 1691 1692 1693 1694 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1689 class DeleteBasePathMappingRequest < Struct.new( :domain_name, :base_path) SENSITIVE = [] include Aws::Structure end |
#domain_name ⇒ String
[Required] The domain name of the BasePathMapping resource to delete.
1689 1690 1691 1692 1693 1694 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1689 class DeleteBasePathMappingRequest < Struct.new( :domain_name, :base_path) SENSITIVE = [] include Aws::Structure end |