Show / Hide Table of Contents

Interface IVpcConnectorAttributes

(experimental) Attributes for the App Runner VPC Connector.

Namespace: Amazon.CDK.AWS.AppRunner.Alpha
Assembly: Amazon.CDK.AWS.AppRunner.Alpha.dll
Syntax (csharp)
public interface IVpcConnectorAttributes
Syntax (vb)
Public Interface IVpcConnectorAttributes
Remarks

Stability: Experimental

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.AppRunner.Alpha;
             using Amazon.CDK.AWS.EC2;

             SecurityGroup securityGroup;

             var vpcConnectorAttributes = new VpcConnectorAttributes {
                 SecurityGroups = new [] { securityGroup },
                 VpcConnectorArn = "vpcConnectorArn",
                 VpcConnectorName = "vpcConnectorName",
                 VpcConnectorRevision = 123
             };

Synopsis

Properties

SecurityGroups

(experimental) The security groups associated with the VPC connector.

VpcConnectorArn

(experimental) The ARN of the VPC connector.

VpcConnectorName

(experimental) The name of the VPC connector.

VpcConnectorRevision

(experimental) The revision of the VPC connector.

Properties

SecurityGroups

(experimental) The security groups associated with the VPC connector.

ISecurityGroup[] SecurityGroups { get; }
Property Value

ISecurityGroup[]

Remarks

Stability: Experimental

VpcConnectorArn

(experimental) The ARN of the VPC connector.

string VpcConnectorArn { get; }
Property Value

string

Remarks

Stability: Experimental

VpcConnectorName

(experimental) The name of the VPC connector.

string VpcConnectorName { get; }
Property Value

string

Remarks

Stability: Experimental

VpcConnectorRevision

(experimental) The revision of the VPC connector.

double VpcConnectorRevision { get; }
Property Value

double

Remarks

Stability: Experimental

Back to top Generated by DocFX