Interface CfnCluster.AccountingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.AccountingProperty.Jsii$Proxy
- Enclosing class:
CfnCluster
@Stability(Stable)
public static interface CfnCluster.AccountingProperty
extends software.amazon.jsii.JsiiSerializable
The accounting configuration includes configurable settings for Slurm accounting.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.pcs.*;
AccountingProperty accountingProperty = AccountingProperty.builder()
.mode("mode")
// the properties below are optional
.defaultPurgeTimeInDays(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCluster.AccountingPropertystatic final classAn implementation forCfnCluster.AccountingProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMode
The default value formodeisSTANDARD.A value of
STANDARDmeans Slurm accounting is enabled.Default: - "NONE"
- See Also:
-
getDefaultPurgeTimeInDays
The default value for all purge settings forslurmdbd.conf. For more information, see the slurmdbd.conf documentation at SchedMD .The default value for
defaultPurgeTimeInDaysis-1.A value of
-1means there is no purge time and records persist as long as the cluster exists.0isn't a valid value.Default: - -1
- See Also:
-
builder
-