interface ManagedVpcResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnGatewayPropsMixin.ManagedVpcResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnGatewayPropsMixin_ManagedVpcResourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnGatewayPropsMixin.ManagedVpcResourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnGatewayPropsMixin.ManagedVpcResourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnGatewayPropsMixin » ManagedVpcResourceProperty |
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 managedVpcResourceProperty: bedrockagentcore.CfnGatewayPropsMixin.ManagedVpcResourceProperty = {
endpointIpAddressType: 'endpointIpAddressType',
routingDomain: 'routingDomain',
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
vpcIdentifier: 'vpcIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| endpoint | string | |
| routing | string | |
| security | string[] | |
| subnet | string[] | |
| vpc | string |
endpointIpAddressType?
Type:
string
(optional)
routingDomain?
Type:
string
(optional)
securityGroupIds?
Type:
string[]
(optional)
subnetIds?
Type:
string[]
(optional)
vpcIdentifier?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript