interface JobTemplateReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IoT.JobTemplateReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiot#JobTemplateReference |
Java | software.amazon.awscdk.interfaces.iot.JobTemplateReference |
Python | aws_cdk.interfaces.aws_iot.JobTemplateReference |
TypeScript | aws-cdk-lib » interfaces » aws_iot » JobTemplateReference |
A reference to a JobTemplate 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_aws_iot } from 'aws-cdk-lib/interfaces';
const jobTemplateReference: interfaces_aws_iot.JobTemplateReference = {
jobTemplateArn: 'jobTemplateArn',
jobTemplateId: 'jobTemplateId',
};
Properties
| Name | Type | Description |
|---|---|---|
| job | string | The ARN of the JobTemplate resource. |
| job | string | The JobTemplateId of the JobTemplate resource. |
jobTemplateArn
Type:
string
The ARN of the JobTemplate resource.
jobTemplateId
Type:
string
The JobTemplateId of the JobTemplate resource.

.NET
Go
Java
Python
TypeScript