interface AccountingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.PCS.CfnClusterPropsMixin.AccountingProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspcs#CfnClusterPropsMixin_AccountingProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.pcs.CfnClusterPropsMixin.AccountingProperty |
Python | aws_cdk.cfn_property_mixins.aws_pcs.CfnClusterPropsMixin.AccountingProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pcs » CfnClusterPropsMixin » AccountingProperty |
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 { aws_pcs as pcs } from '@aws-cdk/cfn-property-mixins';
const accountingProperty: pcs.CfnClusterPropsMixin.AccountingProperty = {
defaultPurgeTimeInDays: 123,
mode: 'mode',
};
Properties
| Name | Type | Description |
|---|---|---|
| default | number | The default value for all purge settings for slurmdbd.conf . For more information, see the slurmdbd.conf documentation at SchedMD . |
| mode? | string | The default value for mode is NONE . |
defaultPurgeTimeInDays?
Type:
number
(optional, default: -1)
The default value for all purge settings for slurmdbd.conf . For more information, see the slurmdbd.conf documentation at SchedMD .
The default value for defaultPurgeTimeInDays is -1 .
A value of -1 means there is no purge time and records persist as long as the cluster exists.
0isn't a valid value.
mode?
Type:
string
(optional, default: "NONE")
The default value for mode is NONE .
A value of STANDARD means Slurm accounting is enabled.

.NET
Go
Java
Python
TypeScript