Class: Aws::APIGateway::Types::UpdateAuthorizerRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateAuthorizerRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass UpdateAuthorizerRequest data as a hash:
{
rest_api_id: "String", # required
authorizer_id: "String", # required
patch_operations: [
{
op: "add", # accepts add, remove, replace, move, copy, test
path: "String",
value: "String",
from: "String",
},
],
}
Request to update an existing Authorizer resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#authorizer_id ⇒ String
[Required] The identifier of the Authorizer resource.
-
#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.
-
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
Instance Attribute Details
#authorizer_id ⇒ String
[Required] The identifier of the Authorizer resource.
7267 7268 7269 7270 7271 7272 7273 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7267 class UpdateAuthorizerRequest < Struct.new( :rest_api_id, :authorizer_id, :patch_operations) SENSITIVE = [] 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.
7267 7268 7269 7270 7271 7272 7273 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7267 class UpdateAuthorizerRequest < Struct.new( :rest_api_id, :authorizer_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
7267 7268 7269 7270 7271 7272 7273 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7267 class UpdateAuthorizerRequest < Struct.new( :rest_api_id, :authorizer_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |