You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateBasePathMappingRequest as input to an Aws::Client method, you can use a vanilla 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

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

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

Returns:

  • (String)

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

#domain_nameString

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

Returns:

  • (String)

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

#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:

  • (Array<Types::PatchOperation>)

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