Show / Hide Table of Contents

Class CfnJobDefinition.ConsumableResourceRequirementProperty

Information about a consumable resource required to run a job.

Inheritance
object
CfnJobDefinition.ConsumableResourceRequirementProperty
Implements
CfnJobDefinition.IConsumableResourceRequirementProperty
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 CfnJobDefinition.ConsumableResourceRequirementProperty : CfnJobDefinition.IConsumableResourceRequirementProperty
Syntax (vb)
Public Class CfnJobDefinition.ConsumableResourceRequirementProperty Implements CfnJobDefinition.IConsumableResourceRequirementProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-consumableresourcerequirement.html

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 consumableResourceRequirementProperty = new ConsumableResourceRequirementProperty {
                 ConsumableResource = "consumableResource",
                 Quantity = 123
             };

Synopsis

Constructors

ConsumableResourceRequirementProperty()

Information about a consumable resource required to run a job.

Properties

ConsumableResource

The name or ARN of the consumable resource.

Quantity

The quantity of the consumable resource that is needed.

Constructors

ConsumableResourceRequirementProperty()

Information about a consumable resource required to run a job.

public ConsumableResourceRequirementProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-consumableresourcerequirement.html

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 consumableResourceRequirementProperty = new ConsumableResourceRequirementProperty {
                 ConsumableResource = "consumableResource",
                 Quantity = 123
             };

Properties

ConsumableResource

The name or ARN of the consumable resource.

public string ConsumableResource { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-consumableresourcerequirement.html#cfn-batch-jobdefinition-consumableresourcerequirement-consumableresource

Quantity

The quantity of the consumable resource that is needed.

public double Quantity { get; set; }
Property Value

double

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-consumableresourcerequirement.html#cfn-batch-jobdefinition-consumableresourcerequirement-quantity

Implements

CfnJobDefinition.IConsumableResourceRequirementProperty
Back to top Generated by DocFX