interface PropertyGroupProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisAnalytics.CfnApplicationV2.PropertyGroupProperty |
Java | software.amazon.awscdk.services.kinesisanalytics.CfnApplicationV2.PropertyGroupProperty |
Python | aws_cdk.aws_kinesisanalytics.CfnApplicationV2.PropertyGroupProperty |
TypeScript | @aws-cdk/aws-kinesisanalytics » CfnApplicationV2 » PropertyGroupProperty |
Property key-value pairs passed into an 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 propertyGroupProperty: kinesisanalytics.CfnApplicationV2.PropertyGroupProperty = {
propertyGroupId: 'propertyGroupId',
propertyMap: {
propertyMapKey: 'propertyMap',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| property | string | Describes the key of an application execution property key-value pair. |
| property | IResolvable | { [string]: string } | Describes the value of an application execution property key-value pair. |
propertyGroupId?
Type:
string
(optional)
Describes the key of an application execution property key-value pair.
propertyMap?
Type:
IResolvable | { [string]: string }
(optional)
Describes the value of an application execution property key-value pair.

.NET
Java
Python
TypeScript