Class JobDefinitionReference
A reference to a JobDefinition resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Batch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class JobDefinitionReference : IJobDefinitionReference
Syntax (vb)
Public Class JobDefinitionReference Implements IJobDefinitionReference
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Batch;
var jobDefinitionReference = new JobDefinitionReference {
JobDefinitionArn = "jobDefinitionArn",
JobDefinitionName = "jobDefinitionName"
};
Synopsis
Constructors
| JobDefinitionReference() | A reference to a JobDefinition resource. |
Properties
| JobDefinitionArn | The ARN of the JobDefinition resource. |
| JobDefinitionName | The JobDefinitionName of the JobDefinition resource. |
Constructors
JobDefinitionReference()
A reference to a JobDefinition resource.
public JobDefinitionReference()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Batch;
var jobDefinitionReference = new JobDefinitionReference {
JobDefinitionArn = "jobDefinitionArn",
JobDefinitionName = "jobDefinitionName"
};
Properties
JobDefinitionArn
The ARN of the JobDefinition resource.
public string JobDefinitionArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
JobDefinitionName
The JobDefinitionName of the JobDefinition resource.
public string JobDefinitionName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated