interface IngressVpcConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppRunner.CfnVpcIngressConnection.IngressVpcConfigurationProperty |
Java | software.amazon.awscdk.services.apprunner.CfnVpcIngressConnection.IngressVpcConfigurationProperty |
Python | aws_cdk.aws_apprunner.CfnVpcIngressConnection.IngressVpcConfigurationProperty |
TypeScript | @aws-cdk/aws-apprunner » CfnVpcIngressConnection » 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 * as apprunner from '@aws-cdk/aws-apprunner';
const ingressVpcConfigurationProperty: apprunner.CfnVpcIngressConnection.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
The ID of the VPC endpoint that your App Runner service connects to.
vpcId
Type:
string
The ID of the VPC that is used for the VPC endpoint.

.NET
Java
Python
TypeScript