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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#base_pathString

[Required] The base path of the BasePathMapping resource to change.

To specify an empty base path, set this parameter to ‘’(none)‘`.

Returns:

  • (String)


7373
7374
7375
7376
7377
7378
7379
# File 'lib/aws-sdk-apigateway/types.rb', line 7373

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

#domain_nameString

[Required] The domain name of the BasePathMapping resource to change.

Returns:

  • (String)


7373
7374
7375
7376
7377
7378
7379
# File 'lib/aws-sdk-apigateway/types.rb', line 7373

class UpdateBasePathMappingRequest < Struct.new(
  :domain_name,
  :base_path,
  :patch_operations)
  SENSITIVE = []
  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:



7373
7374
7375
7376
7377
7378
7379
# File 'lib/aws-sdk-apigateway/types.rb', line 7373

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