Class: Aws::APIGateway::Types::UpdateBasePathMappingRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-apigateway/types.rb

Overview

Note:

When making an API call, you may pass UpdateBasePathMappingRequest data as a hash:

{
  domain_name: "String", # required
  base_path: "String", # required
  patch_operations: [
    {
      op: "add", # accepts add, remove, replace, move, copy, test
      path: "String",
      value: "String",
      from: "String",
    },
  ],
}

A request to change information about the BasePathMapping resource.

Instance Attribute Summary collapse

Instance Attribute Details

#base_pathString

The base path of the BasePathMapping resource to change.

Returns:

  • (String)


6001
6002
6003
6004
6005
6006
# File 'lib/aws-sdk-apigateway/types.rb', line 6001

class UpdateBasePathMappingRequest < Struct.new(
  :domain_name,
  :base_path,
  :patch_operations)
  include Aws::Structure
end

#domain_nameString

The domain name of the BasePathMapping resource to change.

Returns:

  • (String)


6001
6002
6003
6004
6005
6006
# File 'lib/aws-sdk-apigateway/types.rb', line 6001

class UpdateBasePathMappingRequest < Struct.new(
  :domain_name,
  :base_path,
  :patch_operations)
  include Aws::Structure
end

#patch_operationsArray<Types::PatchOperation>

A list of update operations to be applied to the specified resource and in the order specified in this list.

Returns:



6001
6002
6003
6004
6005
6006
# File 'lib/aws-sdk-apigateway/types.rb', line 6001

class UpdateBasePathMappingRequest < Struct.new(
  :domain_name,
  :base_path,
  :patch_operations)
  include Aws::Structure
end