interface CfnVpcIngressConnectionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppRunner.CfnVpcIngressConnectionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapprunner#CfnVpcIngressConnectionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.apprunner.CfnVpcIngressConnectionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_apprunner.CfnVpcIngressConnectionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apprunner » CfnVpcIngressConnectionMixinProps |
Properties for CfnVpcIngressConnectionPropsMixin.
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 cfnVpcIngressConnectionMixinProps: apprunner.CfnVpcIngressConnectionMixinProps = {
ingressVpcConfiguration: {
vpcEndpointId: 'vpcEndpointId',
vpcId: 'vpcId',
},
serviceArn: 'serviceArn',
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
(optional)
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
(optional)
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