interface PropertyGroupProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisAnalytics.CfnApplicationV2.PropertyGroupProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisanalytics#CfnApplicationV2_PropertyGroupProperty |
Java | software.amazon.awscdk.services.kinesisanalytics.CfnApplicationV2.PropertyGroupProperty |
Python | aws_cdk.aws_kinesisanalytics.CfnApplicationV2.PropertyGroupProperty |
TypeScript | aws-cdk-lib » 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 { aws_kinesisanalytics as kinesisanalytics } from 'aws-cdk-lib';
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 | { [string]: string } | IResolvable | 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:
{ [string]: string } | IResolvable
(optional)
Describes the value of an application execution property key-value pair.

.NET
Go
Java
Python
TypeScript