interface VpcConnectorAttributes
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppRunner.Alpha.VpcConnectorAttributes |
Go | github.com/aws/aws-cdk-go/awscdkapprunneralpha/v2#VpcConnectorAttributes |
Java | software.amazon.awscdk.services.apprunner.alpha.VpcConnectorAttributes |
Python | aws_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
Name | Type | Description |
---|---|---|
security | ISecurity [] | The security groups associated with the VPC connector. |
vpc | string | The ARN of the VPC connector. |
vpc | string | The name of the VPC connector. |
vpc | number | The revision of the VPC connector. |
securityGroups
Type:
ISecurity
[]
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.