ApplicationAttributes

Bases: object

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

Parameters:
  • application_arn (str) – (experimental) The ARN of the Flink application. Format: arn::kinesisanalytics:::application/

  • security_groups (Optional[Sequence[ISecurityGroup]]) – (experimental) The security groups for this Flink application if deployed in a VPC. Default: - no security groups

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_kinesisanalytics_flink_alpha as kinesisanalytics_flink_alpha
from aws_cdk import aws_ec2 as ec2

# security_group: ec2.SecurityGroup

application_attributes = kinesisanalytics_flink_alpha.ApplicationAttributes(
    application_arn="applicationArn",

    # the properties below are optional
    security_groups=[security_group]
)

Attributes

(experimental) The ARN of the Flink application.

Format: arn::kinesisanalytics:::application/

Stability:

experimental

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

Default:
  • no security groups

Stability:

experimental