Class: Aws::BedrockAgentCoreControl::Types::RecordingConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::RecordingConfig
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
The recording configuration for a browser. This structure defines how browser sessions are recorded.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
Indicates whether recording is enabled for the browser.
-
#s3_location ⇒ Types::S3Location
The Amazon S3 location where browser recordings are stored.
Instance Attribute Details
#enabled ⇒ Boolean
Indicates whether recording is enabled for the browser. When set to true, browser sessions are recorded.
3917 3918 3919 3920 3921 3922 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3917 class RecordingConfig < Struct.new( :enabled, :s3_location) SENSITIVE = [] include Aws::Structure end |
#s3_location ⇒ Types::S3Location
The Amazon S3 location where browser recordings are stored. This location contains the recorded browser sessions.
3917 3918 3919 3920 3921 3922 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3917 class RecordingConfig < Struct.new( :enabled, :s3_location) SENSITIVE = [] include Aws::Structure end |