Interface CfnBrowserCustomMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBrowserCustomMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:56.656Z")
@Stability(Stable)
public interface CfnBrowserCustomMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnBrowserCustomPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.*;
CfnBrowserCustomMixinProps cfnBrowserCustomMixinProps = CfnBrowserCustomMixinProps.builder()
.browserSigning(BrowserSigningProperty.builder()
.enabled(false)
.build())
.description("description")
.executionRoleArn("executionRoleArn")
.name("name")
.networkConfiguration(BrowserNetworkConfigurationProperty.builder()
.networkMode("networkMode")
.vpcConfig(VpcConfigProperty.builder()
.securityGroups(List.of("securityGroups"))
.subnets(List.of("subnets"))
.build())
.build())
.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 forCfnBrowserCustomMixinPropsstatic final classAn implementation forCfnBrowserCustomMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectBrowser signing configuration.default StringThe custom browser.default StringThe Amazon Resource Name (ARN) of the execution role.default StringgetName()The name of the custom browser.default ObjectThe 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
-
getBrowserSigning
Browser signing configuration.Returns union: either
IResolvableorCfnBrowserCustomPropsMixin.BrowserSigningProperty- See Also:
-
getDescription
The custom browser.- See Also:
-
getExecutionRoleArn
The Amazon Resource Name (ARN) of the execution role.- See Also:
-
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
IResolvableorCfnBrowserCustomPropsMixin.BrowserNetworkConfigurationProperty- See Also:
-
getRecordingConfig
THe custom browser configuration.Returns union: either
IResolvableorCfnBrowserCustomPropsMixin.RecordingConfigProperty- See Also:
-
getTags
The tags for the custom browser.- See Also:
-
builder
- Returns:
- a
CfnBrowserCustomMixinProps.BuilderofCfnBrowserCustomMixinProps
-