Show / Hide Table of Contents

Class JobDefinitionReference

A reference to a JobDefinition resource.

Inheritance
object
JobDefinitionReference
Implements
IJobDefinitionReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

ExampleMetadata: fixture=_generated

JobDefinitionName

The JobDefinitionName of the JobDefinition resource.

public string JobDefinitionName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IJobDefinitionReference
Back to top Generated by DocFX