interface NetworkConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnRuntimePropsMixin.NetworkConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnRuntimePropsMixin_NetworkConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnRuntimePropsMixin.NetworkConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnRuntimePropsMixin.NetworkConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » 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 { aws_bedrockagentcore as bedrockagentcore } from '@aws-cdk/cfn-property-mixins';
const networkConfigurationProperty: bedrockagentcore.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