Class: Aws::APIGateway::Types::DeleteBasePathMappingRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-apigateway/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

Instance Attribute Details

#base_pathString

The base path name of the BasePathMapping resource to delete.

To specify an empty base path, set this parameter to '(none)'.

Returns:

  • (String)

1551
1552
1553
1554
1555
1556
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 1551

class DeleteBasePathMappingRequest < Struct.new(
  :domain_name,
  :base_path)
  SENSITIVE = []
  include Aws::Structure
end

#domain_nameString

The domain name of the BasePathMapping resource to delete.

Returns:

  • (String)

1551
1552
1553
1554
1555
1556
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 1551

class DeleteBasePathMappingRequest < Struct.new(
  :domain_name,
  :base_path)
  SENSITIVE = []
  include Aws::Structure
end