interface JobQueueReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Batch.JobQueueReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsbatch#JobQueueReference |
Java | software.amazon.awscdk.interfaces.batch.JobQueueReference |
Python | aws_cdk.interfaces.aws_batch.JobQueueReference |
TypeScript | aws-cdk-lib » interfaces » aws_batch » JobQueueReference |
A reference to a JobQueue resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_batch as interfaces_aws_batch } from 'aws-cdk-lib/interfaces';
const jobQueueReference: interfaces_aws_batch.JobQueueReference = {
jobQueueArn: 'jobQueueArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| job | string | The JobQueueArn of the JobQueue resource. |
jobQueueArn
Type:
string
The JobQueueArn of the JobQueue resource.

.NET
Go
Java
Python
TypeScript