JobTemplateReference
- class aws_cdk.aws_iot.JobTemplateReference(*, job_template_arn, job_template_id)
Bases:
object
A reference to a JobTemplate resource.
- Parameters:
job_template_arn (
str
) – The ARN of the JobTemplate resource.job_template_id (
str
) – The JobTemplateId of the JobTemplate resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_iot as iot job_template_reference = iot.JobTemplateReference( job_template_arn="jobTemplateArn", job_template_id="jobTemplateId" )
Attributes
- job_template_arn
The ARN of the JobTemplate resource.
- job_template_id
The JobTemplateId of the JobTemplate resource.