Show / Hide Table of Contents

Class PropertyGroups

(experimental) Interface for building AWS::KinesisAnalyticsV2::Application PropertyGroup configuration.

Inheritance
System.Object
PropertyGroups
Implements
IPropertyGroups
Namespace: Amazon.CDK.AWS.KinesisAnalyticsFlink
Assembly: Amazon.CDK.AWS.KinesisAnalyticsFlink.dll
Syntax (csharp)
public class PropertyGroups : Object, IPropertyGroups
Syntax (vb)
Public Class PropertyGroups
    Inherits Object
    Implements IPropertyGroups
Remarks

Stability: Experimental

ExampleMetadata: infused

Examples
Bucket bucket;

var flinkApp = new Application(this, "Application", new ApplicationProps {
    PropertyGroups = new PropertyGroups {
        FlinkApplicationProperties = new Dictionary<string, string> {
            { "inputStreamName", "my-input-kinesis-stream" },
            { "outputStreamName", "my-output-kinesis-stream" }
        }
    },
    // ...
    Runtime = Runtime.FLINK_1_13,
    Code = ApplicationCode.FromBucket(bucket, "my-app.jar")
});

Synopsis

Constructors

PropertyGroups()

Constructors

PropertyGroups()

public PropertyGroups()

Implements

IPropertyGroups
Back to top Generated by DocFX