Class CfnJobDefinition.TaskContainerDependencyProperty
A list of containers that this task depends on.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Batch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnJobDefinition.TaskContainerDependencyProperty : CfnJobDefinition.ITaskContainerDependencyProperty
Syntax (vb)
Public Class CfnJobDefinition.TaskContainerDependencyProperty Implements CfnJobDefinition.ITaskContainerDependencyProperty
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 taskContainerDependencyProperty = new TaskContainerDependencyProperty {
Condition = "condition",
ContainerName = "containerName"
};
Synopsis
Constructors
| TaskContainerDependencyProperty() | A list of containers that this task depends on. |
Properties
| Condition | The dependency condition of the container. The following are the available conditions and their behavior:. |
| ContainerName | A unique identifier for the container. |
Constructors
TaskContainerDependencyProperty()
A list of containers that this task depends on.
public TaskContainerDependencyProperty()
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 taskContainerDependencyProperty = new TaskContainerDependencyProperty {
Condition = "condition",
ContainerName = "containerName"
};
Properties
Condition
The dependency condition of the container. The following are the available conditions and their behavior:.
public string Condition { get; set; }
Property Value
Remarks
ContainerName
A unique identifier for the container.
public string ContainerName { get; set; }