Class: Aws::BedrockAgentCoreControl::Types::ApprovalConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::ApprovalConfiguration
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
Configuration for the registry record approval workflow. Controls whether records added to the registry require explicit approval before becoming active.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_approval ⇒ Boolean
Whether registry records are auto-approved.
Instance Attribute Details
#auto_approval ⇒ Boolean
Whether registry records are auto-approved. When set to true,
records are automatically approved upon creation. When set to
false (the default), records require explicit approval for
security purposes.
465 466 467 468 469 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 465 class ApprovalConfiguration < Struct.new( :auto_approval) SENSITIVE = [] include Aws::Structure end |