interface TaskPropertiesObjectProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppFlow.CfnFlowPropsMixin.TaskPropertiesObjectProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappflow#CfnFlowPropsMixin_TaskPropertiesObjectProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appflow.CfnFlowPropsMixin.TaskPropertiesObjectProperty |
Python | aws_cdk.cfn_property_mixins.aws_appflow.CfnFlowPropsMixin.TaskPropertiesObjectProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appflow » 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 { aws_appflow as appflow } from '@aws-cdk/cfn-property-mixins';
const taskPropertiesObjectProperty: appflow.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