interface JobDefinitionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Batch.JobDefinitionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsbatch#JobDefinitionReference |
Java | software.amazon.awscdk.interfaces.batch.JobDefinitionReference |
Python | aws_cdk.interfaces.aws_batch.JobDefinitionReference |
TypeScript | aws-cdk-lib » interfaces » aws_batch » JobDefinitionReference |
A reference to a JobDefinition 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 jobDefinitionReference: interfaces_aws_batch.JobDefinitionReference = {
jobDefinitionArn: 'jobDefinitionArn',
jobDefinitionName: 'jobDefinitionName',
};
Properties
| Name | Type | Description |
|---|---|---|
| job | string | The ARN of the JobDefinition resource. |
| job | string | The JobDefinitionName of the JobDefinition resource. |
jobDefinitionArn
Type:
string
The ARN of the JobDefinition resource.
jobDefinitionName
Type:
string
The JobDefinitionName of the JobDefinition resource.

.NET
Go
Java
Python
TypeScript