interface TaskPropertiesMapProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnIntegrationPropsMixin.TaskPropertiesMapProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnIntegrationPropsMixin_TaskPropertiesMapProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnIntegrationPropsMixin.TaskPropertiesMapProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnIntegrationPropsMixin.TaskPropertiesMapProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnIntegrationPropsMixin » TaskPropertiesMapProperty |
A map used to store task-related information.
The execution service looks for particular information based on the TaskType .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const taskPropertiesMapProperty: customerprofiles_mixins.CfnIntegrationPropsMixin.TaskPropertiesMapProperty = {
operatorPropertyKey: 'operatorPropertyKey',
property: 'property',
};
Properties
| Name | Type | Description |
|---|---|---|
| operator | string | The task property key. |
| property? | string | The task property value. |
operatorPropertyKey?
Type:
string
(optional)
The task property key.
property?
Type:
string
(optional)
The task property value.

.NET
Go
Java
Python
TypeScript