Class CfnJobDefinition.ConsumableResourcePropertiesProperty
Contains a list of consumable resources required by a job.
Inherited Members
Namespace: Amazon.CDK.AWS.Batch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnJobDefinition.ConsumableResourcePropertiesProperty : CfnJobDefinition.IConsumableResourcePropertiesProperty
Syntax (vb)
Public Class CfnJobDefinition.ConsumableResourcePropertiesProperty Implements CfnJobDefinition.IConsumableResourcePropertiesProperty
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 consumableResourcePropertiesProperty = new ConsumableResourcePropertiesProperty {
ConsumableResourceList = new [] { new ConsumableResourceRequirementProperty {
ConsumableResource = "consumableResource",
Quantity = 123
} }
};
Synopsis
Constructors
| ConsumableResourcePropertiesProperty() | Contains a list of consumable resources required by a job. |
Properties
| ConsumableResourceList | The list of consumable resources required by a job. |
Constructors
ConsumableResourcePropertiesProperty()
Contains a list of consumable resources required by a job.
public ConsumableResourcePropertiesProperty()
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 consumableResourcePropertiesProperty = new ConsumableResourcePropertiesProperty {
ConsumableResourceList = new [] { new ConsumableResourceRequirementProperty {
ConsumableResource = "consumableResource",
Quantity = 123
} }
};
Properties
ConsumableResourceList
The list of consumable resources required by a job.
public object ConsumableResourceList { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnJobDefinition.IConsumableResourceRequirementProperty)[]