Class: Aws::BedrockAgentCoreControl::Types::UpdatedAuthorizerConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::UpdatedAuthorizerConfiguration
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
Wrapper for updating an optional AuthorizerConfiguration field with PATCH semantics. When present in an update request, the authorizer configuration is replaced with optionalValue. When absent, the authorizer configuration is left unchanged. To unset, include the wrapper with optionalValue not specified.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#optional_value ⇒ Types::AuthorizerConfiguration
The updated authorizer configuration value.
Instance Attribute Details
#optional_value ⇒ Types::AuthorizerConfiguration
The updated authorizer configuration value. If not specified, it will clear the current authorizer configuration of the resource.
23404 23405 23406 23407 23408 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 23404 class UpdatedAuthorizerConfiguration < Struct.new( :optional_value) SENSITIVE = [] include Aws::Structure end |