@aws-cdk_aws-apprunner-alpha.VpcConnectorAttributes

interface VpcConnectorAttributes ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.AppRunner.Alpha.VpcConnectorAttributes
Gogithub.com/aws/aws-cdk-go/awscdkapprunneralpha/v2#VpcConnectorAttributes
Javasoftware.amazon.awscdk.services.apprunner.alpha.VpcConnectorAttributes
Pythonaws_cdk.aws_apprunner_alpha.VpcConnectorAttributes
TypeScript (source)@aws-cdk/aws-apprunner-alpha ยป VpcConnectorAttributes

Attributes for the App Runner VPC Connector.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as apprunner_alpha from '@aws-cdk/aws-apprunner-alpha';
import { aws_ec2 as ec2 } from 'aws-cdk-lib';

declare const securityGroup: ec2.SecurityGroup;
const vpcConnectorAttributes: apprunner_alpha.VpcConnectorAttributes = {
  securityGroups: [securityGroup],
  vpcConnectorArn: 'vpcConnectorArn',
  vpcConnectorName: 'vpcConnectorName',
  vpcConnectorRevision: 123,
};

Properties

NameTypeDescription
securityGroups๐Ÿ”นISecurityGroup[]The security groups associated with the VPC connector.
vpcConnectorArn๐Ÿ”นstringThe ARN of the VPC connector.
vpcConnectorName๐Ÿ”นstringThe name of the VPC connector.
vpcConnectorRevision๐Ÿ”นnumberThe revision of the VPC connector.

securityGroups๐Ÿ”น

Type: ISecurityGroup[]

The security groups associated with the VPC connector.


vpcConnectorArn๐Ÿ”น

Type: string

The ARN of the VPC connector.


vpcConnectorName๐Ÿ”น

Type: string

The name of the VPC connector.


vpcConnectorRevision๐Ÿ”น

Type: number

The revision of the VPC connector.