interface TaskPropertiesObjectProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnFlowPropsMixin.TaskPropertiesObjectProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnFlowPropsMixin_TaskPropertiesObjectProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnFlowPropsMixin.TaskPropertiesObjectProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnFlowPropsMixin.TaskPropertiesObjectProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnFlowPropsMixin » TaskPropertiesObjectProperty |
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 appflow_mixins } from '@aws-cdk/mixins-preview/aws-appflow';
const taskPropertiesObjectProperty: appflow_mixins.CfnFlowPropsMixin.TaskPropertiesObjectProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The task property key. |
| value? | string | The task property value. |
key?
Type:
string
(optional)
The task property key.
value?
Type:
string
(optional)
The task property value.

.NET
Go
Java
Python
TypeScript