Interface CfnBrowserCustomProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBrowserCustomProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:33.768Z")
@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")
// the properties below are optional
.vpcConfig(VpcConfigProperty.builder()
.securityGroups(List.of("securityGroups"))
.subnets(List.of("subnets"))
.build())
.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBrowserCustomPropsstatic final classAn implementation forCfnBrowserCustomProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe custom browser.default StringThe Amazon Resource Name (ARN) of the execution role.getName()The name of the custom browser.The network configuration for a code interpreter.default ObjectTHe custom browser configuration.getTags()The tags for the custom browser.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the custom browser.- See Also:
-
getNetworkConfiguration
The network configuration for a code interpreter.This structure defines how the code interpreter connects to the network.
Returns union: either
IResolvableorCfnBrowserCustom.BrowserNetworkConfigurationProperty- See Also:
-
getDescription
The custom browser.- See Also:
-
getExecutionRoleArn
The Amazon Resource Name (ARN) of the execution role.- See Also:
-
getRecordingConfig
THe custom browser configuration.Returns union: either
IResolvableorCfnBrowserCustom.RecordingConfigProperty- See Also:
-
getTags
The tags for the custom browser.- See Also:
-
builder
- Returns:
- a
CfnBrowserCustomProps.BuilderofCfnBrowserCustomProps
-