Class: Aws::Batch::Types::JobDependency
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::JobDependency
- Defined in:
- gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb
Overview
Note:
When making an API call, you may pass JobDependency data as a hash:
{
job_id: "String",
type: "N_TO_N", # accepts N_TO_N, SEQUENTIAL
}
An object representing an Batch job dependency.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#job_id ⇒ String
The job ID of the Batch job associated with this dependency.
-
#type ⇒ String
The type of the job dependency.
Instance Attribute Details
#job_id ⇒ String
The job ID of the Batch job associated with this dependency.
3444 3445 3446 3447 3448 3449 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 3444 class JobDependency < Struct.new( :job_id, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of the job dependency.
3444 3445 3446 3447 3448 3449 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 3444 class JobDependency < Struct.new( :job_id, :type) SENSITIVE = [] include Aws::Structure end |