interface CfnVpcIngressConnectionProps
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.AppRunner.CfnVpcIngressConnectionProps | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsapprunner#CfnVpcIngressConnectionProps | 
  Java | software.amazon.awscdk.services.apprunner.CfnVpcIngressConnectionProps | 
  Python | aws_cdk.aws_apprunner.CfnVpcIngressConnectionProps | 
  TypeScript  | aws-cdk-lib » aws_apprunner » CfnVpcIngressConnectionProps | 
Properties for defining a CfnVpcIngressConnection.
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-lib';
const cfnVpcIngressConnectionProps: apprunner.CfnVpcIngressConnectionProps = {
  ingressVpcConfiguration: {
    vpcEndpointId: 'vpcEndpointId',
    vpcId: 'vpcId',
  },
  serviceArn: 'serviceArn',
  // the properties below are optional
  tags: [{
    key: 'key',
    value: 'value',
  }],
  vpcIngressConnectionName: 'vpcIngressConnectionName',
};
Properties
| Name | Type | Description | 
|---|---|---|
| ingress | IResolvable | Ingress | Specifications for the customer’s Amazon VPC and the related AWS PrivateLink VPC endpoint that are used to create the VPC Ingress Connection resource. | 
| service | string | The Amazon Resource Name (ARN) for this App Runner service that is used to create the VPC Ingress Connection resource. | 
| tags? | Cfn[] | An optional list of metadata items that you can associate with the VPC Ingress Connection resource. | 
| vpc | string | The customer-provided VPC Ingress Connection name. | 
ingressVpcConfiguration
Type:
IResolvable | Ingress
Specifications for the customer’s Amazon VPC and the related AWS PrivateLink VPC endpoint that are used to create the VPC Ingress Connection resource.
serviceArn
Type:
string
The Amazon Resource Name (ARN) for this App Runner service that is used to create the VPC Ingress Connection resource.
tags?
Type:
Cfn[]
(optional)
An optional list of metadata items that you can associate with the VPC Ingress Connection resource.
A tag is a key-value pair.
vpcIngressConnectionName?
Type:
string
(optional)
The customer-provided VPC Ingress Connection name.

 .NET
 Go
 Java
 Python
 TypeScript