Class: Aws::APIGateway::Types::UpdateBasePathMappingRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateBasePathMappingRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
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].
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)‘`.
5280 5281 5282 5283 5284 5285 5286 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5280 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.
5280 5281 5282 5283 5284 5285 5286 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5280 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].
[1]: docs.aws.amazon.com/apigateway/latest/api/patch-operations.html
5280 5281 5282 5283 5284 5285 5286 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5280 class UpdateBasePathMappingRequest < Struct.new( :domain_name, :base_path, :patch_operations) SENSITIVE = [] include Aws::Structure end |