Class: Aws::BedrockAgentCoreControl::Types::UpdatedApprovalConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::UpdatedApprovalConfiguration
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
Wrapper for updating an optional approval configuration field with PATCH semantics. When present in an update request, the approval configuration is replaced with the provided value. When absent, the approval configuration is left unchanged.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#optional_value ⇒ Types::ApprovalConfiguration
The updated approval configuration value.
Instance Attribute Details
#optional_value ⇒ Types::ApprovalConfiguration
The updated approval configuration value. Set to null to unset the
approval configuration.
23538 23539 23540 23541 23542 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 23538 class UpdatedApprovalConfiguration < Struct.new( :optional_value) SENSITIVE = [] include Aws::Structure end |