Interface CfnBrowserCustom.RecordingConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBrowserCustom.RecordingConfigProperty.Jsii$Proxy
- Enclosing class:
CfnBrowserCustom
@Stability(Stable)
public static interface CfnBrowserCustom.RecordingConfigProperty
extends software.amazon.jsii.JsiiSerializable
The recording configuration.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.bedrockagentcore.*;
RecordingConfigProperty recordingConfigProperty = RecordingConfigProperty.builder()
.enabled(false)
.s3Location(S3LocationProperty.builder()
.bucket("bucket")
.prefix("prefix")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBrowserCustom.RecordingConfigPropertystatic final classAn implementation forCfnBrowserCustom.RecordingConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
The recording configuration for a browser.This structure defines how browser sessions are recorded.
Returns union: either
BooleanorIResolvableDefault: - false
- See Also:
-
getS3Location
The S3 location.Returns union: either
IResolvableorCfnBrowserCustom.S3LocationProperty- See Also:
-
builder
-