Show / Hide Table of Contents

Class CfnJobDefinition.ConsumableResourcePropertiesProperty

Contains a list of consumable resources required by a job.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-consumableresourceproperties.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 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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-consumableresourceproperties.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 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

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnJobDefinition.IConsumableResourceRequirementProperty)[]

Implements

CfnJobDefinition.IConsumableResourcePropertiesProperty
Back to top Generated by DocFX