Class CfnFleet.AcceleratorCapabilitiesProperty
Provides information about the GPU accelerators used for jobs processed by a fleet.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Deadline
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFleet.AcceleratorCapabilitiesProperty : CfnFleet.IAcceleratorCapabilitiesProperty
Syntax (vb)
Public Class CfnFleet.AcceleratorCapabilitiesProperty Implements CfnFleet.IAcceleratorCapabilitiesProperty
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.Deadline;
var acceleratorCapabilitiesProperty = new AcceleratorCapabilitiesProperty {
Selections = new [] { new AcceleratorSelectionProperty {
Name = "name",
// the properties below are optional
Runtime = "runtime"
} },
// the properties below are optional
Count = new AcceleratorCountRangeProperty {
Min = 123,
// the properties below are optional
Max = 123
}
};
Synopsis
Constructors
| AcceleratorCapabilitiesProperty() | Provides information about the GPU accelerators used for jobs processed by a fleet. |
Properties
| Count | The number of GPU accelerators specified for worker hosts in this fleet. |
| Selections | A list of accelerator capabilities requested for this fleet. |
Constructors
AcceleratorCapabilitiesProperty()
Provides information about the GPU accelerators used for jobs processed by a fleet.
public AcceleratorCapabilitiesProperty()
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.Deadline;
var acceleratorCapabilitiesProperty = new AcceleratorCapabilitiesProperty {
Selections = new [] { new AcceleratorSelectionProperty {
Name = "name",
// the properties below are optional
Runtime = "runtime"
} },
// the properties below are optional
Count = new AcceleratorCountRangeProperty {
Min = 123,
// the properties below are optional
Max = 123
}
};
Properties
Count
The number of GPU accelerators specified for worker hosts in this fleet.
public object? Count { get; set; }
Property Value
Remarks
Selections
A list of accelerator capabilities requested for this fleet.
public object Selections { get; set; }
Property Value
Remarks
Only Amazon Elastic Compute Cloud instances that provide these capabilities will be used. For example, if you specify both L4 and T4 chips, AWS Deadline Cloud will use Amazon EC2 instances that have either the L4 or the T4 chip installed.
Type union: either IResolvable or (either IResolvable or CfnFleet.IAcceleratorSelectionProperty)[]