interface NetworkConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins.CfnRuntimePropsMixin.NetworkConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrockagentcore/mixins#CfnRuntimePropsMixin_NetworkConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrockagentcore.mixins.CfnRuntimePropsMixin.NetworkConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnRuntimePropsMixin.NetworkConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrockagentcore » mixins » CfnRuntimePropsMixin » NetworkConfigurationProperty |
The network configuration for the agent.
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 networkConfigurationProperty: bedrockagentcore_mixins.CfnRuntimePropsMixin.NetworkConfigurationProperty = {
networkMode: 'networkMode',
networkModeConfig: {
securityGroups: ['securityGroups'],
subnets: ['subnets'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| network | string | The network mode. |
| network | IResolvable | Vpc | Network mode configuration for VPC. |
networkMode?
Type:
string
(optional)
The network mode.
networkModeConfig?
Type:
IResolvable | Vpc
(optional)
Network mode configuration for VPC.

.NET
Go
Java
Python
TypeScript