Interface RecordingConfig.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<RecordingConfig.Builder,
,RecordingConfig> SdkBuilder<RecordingConfig.Builder,
,RecordingConfig> SdkPojo
- Enclosing class:
RecordingConfig
@Mutable
@NotThreadSafe
public static interface RecordingConfig.Builder
extends SdkPojo, CopyableBuilder<RecordingConfig.Builder,RecordingConfig>
-
Method Summary
Modifier and TypeMethodDescriptionIndicates whether recording is enabled for the browser.default RecordingConfig.Builder
s3Location
(Consumer<S3Location.Builder> s3Location) The Amazon S3 location where browser recordings are stored.s3Location
(S3Location s3Location) The Amazon S3 location where browser recordings are stored.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
enabled
Indicates whether recording is enabled for the browser. When set to true, browser sessions are recorded.
- Parameters:
enabled
- Indicates whether recording is enabled for the browser. When set to true, browser sessions are recorded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Location
The Amazon S3 location where browser recordings are stored. This location contains the recorded browser sessions.
- Parameters:
s3Location
- The Amazon S3 location where browser recordings are stored. This location contains the recorded browser sessions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Location
The Amazon S3 location where browser recordings are stored. This location contains the recorded browser sessions.
This is a convenience method that creates an instance of theS3Location.Builder
avoiding the need to create one manually viaS3Location.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tos3Location(S3Location)
.- Parameters:
s3Location
- a consumer that will call methods onS3Location.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-