interface TaskDefinitionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTWireless.TaskDefinitionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotwireless#TaskDefinitionReference |
Java | software.amazon.awscdk.services.iotwireless.TaskDefinitionReference |
Python | aws_cdk.aws_iotwireless.TaskDefinitionReference |
TypeScript | aws-cdk-lib » aws_iotwireless » TaskDefinitionReference |
A reference to a TaskDefinition resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotwireless as iotwireless } from 'aws-cdk-lib';
const taskDefinitionReference: iotwireless.TaskDefinitionReference = {
taskDefinitionArn: 'taskDefinitionArn',
taskDefinitionId: 'taskDefinitionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| task | string | The ARN of the TaskDefinition resource. |
| task | string | The Id of the TaskDefinition resource. |
taskDefinitionArn
Type:
string
The ARN of the TaskDefinition resource.
taskDefinitionId
Type:
string
The Id of the TaskDefinition resource.

.NET
Go
Java
Python
TypeScript