Class: Aws::APIGateway::Types::UpdateRequestValidatorRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateRequestValidatorRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass UpdateRequestValidatorRequest data as a hash:
{
rest_api_id: "String", # required
request_validator_id: "String", # required
patch_operations: [
{
op: "add", # accepts add, remove, replace, move, copy, test
path: "String",
value: "String",
from: "String",
},
],
}
Updates a RequestValidator of a given RestApi.
Instance Attribute Summary collapse
-
#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.
-
#request_validator_id ⇒ String
[Required] The identifier of RequestValidator to be updated.
-
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
Instance Attribute Details
permalink #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.
7201 7202 7203 7204 7205 7206 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7201 class UpdateRequestValidatorRequest < Struct.new( :rest_api_id, :request_validator_id, :patch_operations) include Aws::Structure end |
permalink #request_validator_id ⇒ String
[Required] The identifier of RequestValidator to be updated.
7201 7202 7203 7204 7205 7206 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7201 class UpdateRequestValidatorRequest < Struct.new( :rest_api_id, :request_validator_id, :patch_operations) include Aws::Structure end |
permalink #rest_api_id ⇒ String
The string identifier of the associated RestApi.
7201 7202 7203 7204 7205 7206 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7201 class UpdateRequestValidatorRequest < Struct.new( :rest_api_id, :request_validator_id, :patch_operations) include Aws::Structure end |