Class: Aws::BedrockAgentCoreControl::Types::RecordingConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#enabledBoolean

Indicates whether recording is enabled for the browser. When set to true, browser sessions are recorded.

Returns:

  • (Boolean)


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_locationTypes::S3Location

The Amazon S3 location where browser recordings are stored. This location contains the recorded browser sessions.

Returns:



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