Interface CfnBrowserCustom.BrowserNetworkConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBrowserCustom.BrowserNetworkConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnBrowserCustom
@Stability(Stable)
public static interface CfnBrowserCustom.BrowserNetworkConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The network 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.*;
BrowserNetworkConfigurationProperty browserNetworkConfigurationProperty = BrowserNetworkConfigurationProperty.builder()
.networkMode("networkMode")
// the properties below are optional
.vpcConfig(VpcConfigProperty.builder()
.securityGroups(List.of("securityGroups"))
.subnets(List.of("subnets"))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBrowserCustom.BrowserNetworkConfigurationPropertystatic final classAn implementation forCfnBrowserCustom.BrowserNetworkConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNetworkMode
The network mode.- See Also:
-
getVpcConfig
Network mode configuration for VPC.Returns union: either
IResolvableorCfnBrowserCustom.VpcConfigProperty- See Also:
-
builder
-