BatchJobDependency

class aws_cdk.aws_stepfunctions_tasks.BatchJobDependency(*, job_id=None, type=None)

Bases: object

An object representing an AWS Batch job dependency.

Parameters:
  • job_id (Optional[str]) – The job ID of the AWS Batch job associated with this dependency. Default: - No jobId

  • type (Optional[str]) – The type of the job dependency. Default: - No type

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_stepfunctions_tasks as stepfunctions_tasks

batch_job_dependency = stepfunctions_tasks.BatchJobDependency(
    job_id="jobId",
    type="type"
)

Attributes

job_id

The job ID of the AWS Batch job associated with this dependency.

Default:
  • No jobId

type

The type of the job dependency.

Default:
  • No type