JobDefinitionReference

class aws_cdk.interfaces.aws_batch.JobDefinitionReference(*, job_definition_arn)

Bases: object

A reference to a JobDefinition resource.

Parameters:

job_definition_arn (str) – The JobDefinitionArn of the JobDefinition 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.interfaces import aws_batch as interfaces_batch

job_definition_reference = interfaces_batch.JobDefinitionReference(
    job_definition_arn="jobDefinitionArn"
)

Attributes

job_definition_arn

The JobDefinitionArn of the JobDefinition resource.