interface TaskPropertiesMapProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles.CfnIntegrationPropsMixin.TaskPropertiesMapProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscustomerprofiles#CfnIntegrationPropsMixin_TaskPropertiesMapProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.CfnIntegrationPropsMixin.TaskPropertiesMapProperty |
Python | aws_cdk.cfn_property_mixins.aws_customerprofiles.CfnIntegrationPropsMixin.TaskPropertiesMapProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_customerprofiles » 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 { aws_customerprofiles as customerprofiles } from '@aws-cdk/cfn-property-mixins';
const taskPropertiesMapProperty: customerprofiles.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