interface BatchJobDependencyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pipes.Mixins.CfnPipePropsMixin.BatchJobDependencyProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspipes/mixins#CfnPipePropsMixin_BatchJobDependencyProperty |
Java | software.amazon.awscdk.mixins.preview.services.pipes.mixins.CfnPipePropsMixin.BatchJobDependencyProperty |
Python | aws_cdk.mixins_preview.aws_pipes.mixins.CfnPipePropsMixin.BatchJobDependencyProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pipes » mixins » CfnPipePropsMixin » BatchJobDependencyProperty |
An object that represents an AWS Batch job dependency.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pipes_mixins } from '@aws-cdk/mixins-preview/aws-pipes';
const batchJobDependencyProperty: pipes_mixins.CfnPipePropsMixin.BatchJobDependencyProperty = {
jobId: 'jobId',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| job | string | The job ID of the AWS Batch job that's associated with this dependency. |
| type? | string | The type of the job dependency. |
jobId?
Type:
string
(optional)
The job ID of the AWS Batch job that's associated with this dependency.
type?
Type:
string
(optional)
The type of the job dependency.

.NET
Go
Java
Python
TypeScript