interface CodeInterpreterNetworkConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnCodeInterpreterCustom.CodeInterpreterNetworkConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnCodeInterpreterCustom_CodeInterpreterNetworkConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnCodeInterpreterCustom.CodeInterpreterNetworkConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnCodeInterpreterCustom.CodeInterpreterNetworkConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnCodeInterpreterCustom » CodeInterpreterNetworkConfigurationProperty |
The network configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const codeInterpreterNetworkConfigurationProperty: bedrockagentcore.CfnCodeInterpreterCustom.CodeInterpreterNetworkConfigurationProperty = {
networkMode: 'networkMode',
// the properties below are optional
vpcConfig: {
securityGroups: ['securityGroups'],
subnets: ['subnets'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| network | string | The network mode. |
| vpc | IResolvable | Vpc | Network mode configuration for VPC. |
networkMode
Type:
string
The network mode.
vpcConfig?
Type:
IResolvable | Vpc
(optional)
Network mode configuration for VPC.

.NET
Go
Java
Python
TypeScript