/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * The AWS::AppRunner::VpcIngressConnection resource is an App Runner resource that specifies an App Runner VpcIngressConnection. */ export interface AwsApprunnerVpcingressconnection { /** * The Amazon Resource Name (ARN) of the VpcIngressConnection. */ VpcIngressConnectionArn?: string; /** * The customer-provided Vpc Ingress Connection name. */ VpcIngressConnectionName?: string; /** * The Amazon Resource Name (ARN) of the service. */ ServiceArn: string; /** * The current status of the VpcIngressConnection. */ Status?: | "AVAILABLE" | "PENDING_CREATION" | "PENDING_UPDATE" | "PENDING_DELETION" | "FAILED_CREATION" | "FAILED_UPDATE" | "FAILED_DELETION" | "DELETED"; /** * The Domain name associated with the VPC Ingress Connection. */ DomainName?: string; IngressVpcConfiguration: IngressVpcConfiguration; Tags?: Tag[]; } /** * The configuration of customer’s VPC and related VPC endpoint */ export interface IngressVpcConfiguration { /** * The ID of the VPC that the VPC endpoint is used in. */ VpcId: string; /** * The ID of the VPC endpoint that your App Runner service connects to. */ VpcEndpointId: string; } export interface Tag { Key?: string; Value?: string; }