interface IngressVpcConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppRunner.Mixins.CfnVpcIngressConnectionPropsMixin.IngressVpcConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapprunner/mixins#CfnVpcIngressConnectionPropsMixin_IngressVpcConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.apprunner.mixins.CfnVpcIngressConnectionPropsMixin.IngressVpcConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_apprunner.mixins.CfnVpcIngressConnectionPropsMixin.IngressVpcConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apprunner » mixins » CfnVpcIngressConnectionPropsMixin » IngressVpcConfigurationProperty |
Specifications for the customer’s VPC and related PrivateLink VPC endpoint that are used to associate with the VPC Ingress Connection resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as apprunner_mixins } from '@aws-cdk/mixins-preview/aws-apprunner';
const ingressVpcConfigurationProperty: apprunner_mixins.CfnVpcIngressConnectionPropsMixin.IngressVpcConfigurationProperty = {
vpcEndpointId: 'vpcEndpointId',
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| vpc | string | The ID of the VPC endpoint that your App Runner service connects to. |
| vpc | string | The ID of the VPC that is used for the VPC endpoint. |
vpcEndpointId?
Type:
string
(optional)
The ID of the VPC endpoint that your App Runner service connects to.
vpcId?
Type:
string
(optional)
The ID of the VPC that is used for the VPC endpoint.

.NET
Go
Java
Python
TypeScript