interface EnvironmentPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisAnalytics.CfnApplicationV2.EnvironmentPropertiesProperty |
Java | software.amazon.awscdk.services.kinesisanalytics.CfnApplicationV2.EnvironmentPropertiesProperty |
Python | aws_cdk.aws_kinesisanalytics.CfnApplicationV2.EnvironmentPropertiesProperty |
TypeScript | @aws-cdk/aws-kinesisanalytics » CfnApplicationV2 » EnvironmentPropertiesProperty |
Describes execution properties for a Flink-based Kinesis Data Analytics application.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as kinesisanalytics from '@aws-cdk/aws-kinesisanalytics';
const environmentPropertiesProperty: kinesisanalytics.CfnApplicationV2.EnvironmentPropertiesProperty = {
propertyGroups: [{
propertyGroupId: 'propertyGroupId',
propertyMap: {
propertyMapKey: 'propertyMap',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| property | IResolvable | IResolvable | Property[] | Describes the execution property groups. |
propertyGroups?
Type:
IResolvable | IResolvable | Property[]
(optional)
Describes the execution property groups.

.NET
Java
Python
TypeScript