Class: Aws::APIGateway::Types::UpdateBasePathMappingRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateBasePathMappingRequest
- 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
-
#base_path ⇒ String
The base path of the BasePathMapping resource to change.
-
#domain_name ⇒ String
The domain name of the BasePathMapping resource to change.
-
#patch_operations ⇒ Array<Types::PatchOperation>
A list of update operations to be applied to the specified resource and in the order specified in this list.
Instance Attribute Details
#base_path ⇒ String
The base path of the BasePathMapping resource to change.
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_name ⇒ String
The domain name of the BasePathMapping resource to change.
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_operations ⇒ Array<Types::PatchOperation>
A list of update operations to be applied to the specified resource and in the order specified in this list.
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 |