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 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 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
- Return type
Optional
[str
]
-
type
¶ The type of the job dependency.
- Default
No type
- Return type
Optional
[str
]