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
Recording configuration for browser.

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: