interface CfnVpcIngressConnectionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppRunner.Mixins.CfnVpcIngressConnectionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapprunner/mixins#CfnVpcIngressConnectionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.apprunner.mixins.CfnVpcIngressConnectionMixinProps |
Python | aws_cdk.mixins_preview.aws_apprunner.mixins.CfnVpcIngressConnectionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_apprunner » mixins » 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 { mixins as apprunner_mixins } from '@aws-cdk/mixins-preview/aws-apprunner';
const cfnVpcIngressConnectionMixinProps: apprunner_mixins.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