interface JobReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IoT.JobReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiot#JobReference |
Java | software.amazon.awscdk.interfaces.iot.JobReference |
Python | aws_cdk.interfaces.aws_iot.JobReference |
TypeScript | aws-cdk-lib » interfaces » aws_iot » JobReference |
A reference to a Job resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iot as interfaces_iot } from 'aws-cdk-lib/interfaces';
const jobReference: interfaces_iot.JobReference = {
jobArn: 'jobArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| job | string | The Arn of the Job resource. |
jobArn
Type:
string
The Arn of the Job resource.

.NET
Go
Java
Python
TypeScript