interface CodeInterpreterNetworkConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins.CfnCodeInterpreterCustomPropsMixin.CodeInterpreterNetworkConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrockagentcore/mixins#CfnCodeInterpreterCustomPropsMixin_CodeInterpreterNetworkConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrockagentcore.mixins.CfnCodeInterpreterCustomPropsMixin.CodeInterpreterNetworkConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnCodeInterpreterCustomPropsMixin.CodeInterpreterNetworkConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrockagentcore » mixins » CfnCodeInterpreterCustomPropsMixin » 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 { mixins as bedrockagentcore_mixins } from '@aws-cdk/mixins-preview/aws-bedrockagentcore';
const codeInterpreterNetworkConfigurationProperty: bedrockagentcore_mixins.CfnCodeInterpreterCustomPropsMixin.CodeInterpreterNetworkConfigurationProperty = {
networkMode: 'networkMode',
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
(optional)
The network mode.
vpcConfig?
Type:
IResolvable | Vpc
(optional)
Network mode configuration for VPC.

.NET
Go
Java
Python
TypeScript