Show / Hide Table of Contents

Interface IApplicationAttributes

(experimental) Attributes used for importing an Application with Application.fromApplicationAttributes.

Namespace: Amazon.CDK.AWS.Kinesisanalytics.Flink.Alpha
Assembly: Amazon.CDK.AWS.KinesisAnalyticsFlink.Alpha.dll
Syntax (csharp)
public interface IApplicationAttributes
Syntax (vb)
Public Interface IApplicationAttributes
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.Kinesisanalytics.Flink.Alpha;
             using Amazon.CDK.AWS.EC2;

             SecurityGroup securityGroup;

             var applicationAttributes = new ApplicationAttributes {
                 ApplicationArn = "applicationArn",

                 // the properties below are optional
                 SecurityGroups = new [] { securityGroup }
             };

Synopsis

Properties

ApplicationArn

(experimental) The ARN of the Flink application.

SecurityGroups

(experimental) The security groups for this Flink application if deployed in a VPC.

Properties

ApplicationArn

(experimental) The ARN of the Flink application.

string ApplicationArn { get; }
Property Value

string

Remarks

Format: arn:<partition>:kinesisanalytics:<region>:<account-id>:application/<application-name>

Stability: Experimental

SecurityGroups

(experimental) The security groups for this Flink application if deployed in a VPC.

ISecurityGroup[]? SecurityGroups { get; }
Property Value

ISecurityGroup[]

Remarks

Default: - no security groups

Stability: Experimental

Back to top Generated by DocFX