Class: Aws::APIGateway::Types::UpdateBasePathMappingRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateBasePathMappingRequest
- Defined in:
- gems/aws-sdk-apigateway/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
-
#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>
For more information about supported patch operations, see [Patch Operations][1].
Instance Attribute Details
#base_path ⇒ String
The base path of the BasePathMapping resource to change.
To specify an empty base path, set this parameter to '(none)'
.
6492 6493 6494 6495 6496 6497 6498 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 6492 class UpdateBasePathMappingRequest < Struct.new( :domain_name, :base_path, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#domain_name ⇒ String
The domain name of the BasePathMapping resource to change.
6492 6493 6494 6495 6496 6497 6498 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 6492 class UpdateBasePathMappingRequest < Struct.new( :domain_name, :base_path, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#patch_operations ⇒ Array<Types::PatchOperation>
For more information about supported patch operations, see Patch Operations.
6492 6493 6494 6495 6496 6497 6498 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 6492 class UpdateBasePathMappingRequest < Struct.new( :domain_name, :base_path, :patch_operations) SENSITIVE = [] include Aws::Structure end |