interface IngressVpcConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppRunner.CfnVpcIngressConnectionPropsMixin.IngressVpcConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapprunner#CfnVpcIngressConnectionPropsMixin_IngressVpcConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.apprunner.CfnVpcIngressConnectionPropsMixin.IngressVpcConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_apprunner.CfnVpcIngressConnectionPropsMixin.IngressVpcConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apprunner » 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 { aws_apprunner as apprunner } from '@aws-cdk/cfn-property-mixins';
const ingressVpcConfigurationProperty: apprunner.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