JobDependency
- class aws_cdk.aws_stepfunctions_tasks.JobDependency(*, 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 jobIdtype (
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. import aws_cdk.aws_stepfunctions_tasks as stepfunctions_tasks job_dependency = stepfunctions_tasks.JobDependency( 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