interface CfnTaskMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTSiteWise.CfnTaskMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotsitewise#CfnTaskMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotsitewise.CfnTaskMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_iotsitewise.CfnTaskMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotsitewise » CfnTaskMixinProps |
Properties for CfnTaskPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-task.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotsitewise as iotsitewise } from '@aws-cdk/cfn-property-mixins';
const cfnTaskMixinProps: iotsitewise.CfnTaskMixinProps = {
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
taskConfiguration: {
containerTaskConfiguration: {
command: ['command'],
ecrUri: 'ecrUri',
environmentVariables: {
environmentVariablesKey: 'environmentVariables',
},
processingType: 'processingType',
processingUnit: 'processingUnit',
taskExecutionRole: 'taskExecutionRole',
timeoutSeconds: 123,
},
},
taskName: 'taskName',
workspaceName: 'workspaceName',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the task. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| task | IResolvable | Task | The task execution configuration. |
| task | string | The name of the task. |
| workspace | string | The name of the workspace. |
description?
Type:
string
(optional)
A description of the task.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
taskConfiguration?
Type:
IResolvable | Task
(optional)
The task execution configuration.
taskName?
Type:
string
(optional)
The name of the task.
Must be unique within the workspace.
workspaceName?
Type:
string
(optional)
The name of the workspace.

.NET
Go
Java
Python
TypeScript