interface VpcConnectorAttributes
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppRunner.VpcConnectorAttributes |
Java | software.amazon.awscdk.services.apprunner.VpcConnectorAttributes |
Python | aws_cdk.aws_apprunner.VpcConnectorAttributes |
TypeScript (source) | @aws-cdk/aws-apprunner » 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 from '@aws-cdk/aws-apprunner';
import * as ec2 from '@aws-cdk/aws-ec2';
declare const securityGroup: ec2.SecurityGroup;
const vpcConnectorAttributes: apprunner.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.