Interface CfnBrowserCustomProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBrowserCustomProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-09-25T11:29:02.621Z") @Stability(Stable) public interface CfnBrowserCustomProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnBrowserCustom.

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.*;
 CfnBrowserCustomProps cfnBrowserCustomProps = CfnBrowserCustomProps.builder()
         .name("name")
         .networkConfiguration(BrowserNetworkConfigurationProperty.builder()
                 .networkMode("networkMode")
                 .build())
         // the properties below are optional
         .description("description")
         .executionRoleArn("executionRoleArn")
         .recordingConfig(RecordingConfigProperty.builder()
                 .enabled(false)
                 .s3Location(S3LocationProperty.builder()
                         .bucket("bucket")
                         .prefix("prefix")
                         .build())
                 .build())
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 

See Also: