Interface CfnCodeInterpreterCustom.CodeInterpreterNetworkConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCodeInterpreterCustom.CodeInterpreterNetworkConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnCodeInterpreterCustom
@Stability(Stable)
public static interface CfnCodeInterpreterCustom.CodeInterpreterNetworkConfigurationProperty
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.*;
CodeInterpreterNetworkConfigurationProperty codeInterpreterNetworkConfigurationProperty = CodeInterpreterNetworkConfigurationProperty.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 classstatic final classAn implementation forCfnCodeInterpreterCustom.CodeInterpreterNetworkConfigurationProperty -
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
IResolvableorCfnCodeInterpreterCustom.VpcConfigProperty- See Also:
-
builder
@Stability(Stable) static CfnCodeInterpreterCustom.CodeInterpreterNetworkConfigurationProperty.Builder builder()
-