interface TaskConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTSiteWise.CfnTask.TaskConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotsitewise#CfnTask_TaskConfigurationProperty |
Java | software.amazon.awscdk.services.iotsitewise.CfnTask.TaskConfigurationProperty |
Python | aws_cdk.aws_iotsitewise.CfnTask.TaskConfigurationProperty |
TypeScript | aws-cdk-lib » aws_iotsitewise » CfnTask » TaskConfigurationProperty |
The task execution configuration.
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-lib';
const taskConfigurationProperty: iotsitewise.CfnTask.TaskConfigurationProperty = {
containerTaskConfiguration: {
ecrUri: 'ecrUri',
processingType: 'processingType',
processingUnit: 'processingUnit',
taskExecutionRole: 'taskExecutionRole',
// the properties below are optional
command: ['command'],
environmentVariables: {
environmentVariablesKey: 'environmentVariables',
},
timeoutSeconds: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| container | IResolvable | Container | Configuration for running a custom container image on managed compute. |
containerTaskConfiguration
Type:
IResolvable | Container
Configuration for running a custom container image on managed compute.

.NET
Go
Java
Python
TypeScript