Interface ApplicationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
ApplicationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:39.665Z") @Stability(Experimental) public interface ApplicationProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props for creating an Application construct.

Example:

 import path.*;
 import software.amazon.awscdk.core.*;
 import software.amazon.awscdk.services.kinesis.analytics.flink.*;
 import software.amazon.awscdk.services.cloudwatch.*;
 App app = new App();
 Stack stack = new Stack(app, "FlinkAppTest");
 Application flinkApp = Application.Builder.create(stack, "App")
         .code(ApplicationCode.fromAsset(join(__dirname, "code-asset")))
         .runtime(Runtime.FLINK_1_11)
         .build();
 Alarm.Builder.create(stack, "Alarm")
         .metric(flinkApp.metricFullRestarts())
         .evaluationPeriods(1)
         .threshold(3)
         .build();
 app.synth();
 
  • Method Details

    • getCode

      @Stability(Experimental) @NotNull ApplicationCode getCode()
      (experimental) The Flink code asset to run.
    • getRuntime

      @Stability(Experimental) @NotNull Runtime getRuntime()
      (experimental) The Flink version to use for this application.
    • getApplicationName

      @Stability(Experimental) @Nullable default String getApplicationName()
      (experimental) A name for your Application that is unique to an AWS account.

      Default: - CloudFormation-generated name

    • getAutoScalingEnabled

      @Stability(Experimental) @Nullable default Boolean getAutoScalingEnabled()
      (experimental) Whether the Kinesis Data Analytics service can increase the parallelism of the application in response to resource usage.

      Default: true

    • getCheckpointingEnabled

      @Stability(Experimental) @Nullable default Boolean getCheckpointingEnabled()
      (experimental) Whether checkpointing is enabled while your application runs.

      Default: true

    • getCheckpointInterval

      @Stability(Experimental) @Nullable default Duration getCheckpointInterval()
      (experimental) The interval between checkpoints.

      Default: 1 minute

    • getLogGroup

      @Stability(Experimental) @Nullable default ILogGroup getLogGroup()
      (experimental) The log group to send log entries to.

      Default: CDK's default LogGroup

    • getLogLevel

      @Stability(Experimental) @Nullable default LogLevel getLogLevel()
      (experimental) The level of log verbosity from the Flink application.

      Default: FlinkLogLevel.INFO

    • getMetricsLevel

      @Stability(Experimental) @Nullable default MetricsLevel getMetricsLevel()
      (experimental) Describes the granularity of the CloudWatch metrics for an application.

      Use caution with Parallelism level metrics. Parallelism granularity logs metrics for each parallel thread and can quickly become expensive when parallelism is high (e.g. > 64).

      Default: MetricsLevel.APPLICATION

    • getMinPauseBetweenCheckpoints

      @Stability(Experimental) @Nullable default Duration getMinPauseBetweenCheckpoints()
      (experimental) The minimum amount of time in to wait after a checkpoint finishes to start a new checkpoint.

      Default: 5 seconds

    • getParallelism

      @Stability(Experimental) @Nullable default Number getParallelism()
      (experimental) The initial parallelism for the application.

      Kinesis Data Analytics can stop the app, increase the parallelism, and start the app again if autoScalingEnabled is true (the default value).

      Default: 1

    • getParallelismPerKpu

      @Stability(Experimental) @Nullable default Number getParallelismPerKpu()
      (experimental) The Flink parallelism allowed per Kinesis Processing Unit (KPU).

      Default: 1

    • getPropertyGroups

      @Stability(Experimental) @Nullable default PropertyGroups getPropertyGroups()
      (experimental) Configuration PropertyGroups.

      You can use these property groups to pass arbitrary runtime configuration values to your Flink app.

      Default: No property group configuration provided to the Flink app

    • getRemovalPolicy

      @Stability(Experimental) @Nullable default RemovalPolicy getRemovalPolicy()
      (experimental) Provide a RemovalPolicy to override the default.

      Default: RemovalPolicy.DESTROY

    • getRole

      @Stability(Experimental) @Nullable default IRole getRole()
      (experimental) A role to use to grant permissions to your application.

      Prefer omitting this property and using the default role.

      Default: - a new Role will be created

    • getSnapshotsEnabled

      @Stability(Experimental) @Nullable default Boolean getSnapshotsEnabled()
      (experimental) Determines if Flink snapshots are enabled.

      Default: true

    • builder

      @Stability(Experimental) static ApplicationProps.Builder builder()
      Returns:
      a ApplicationProps.Builder of ApplicationProps