Interface CfnCluster.ClusterAccountingDatabaseProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCluster.ClusterAccountingDatabaseProperty.Jsii$Proxy
Enclosing class:
CfnCluster

@Stability(Stable) public static interface CfnCluster.ClusterAccountingDatabaseProperty extends software.amazon.jsii.JsiiSerializable
External MySQL-compatible accounting database that a Slurm cluster's slurmdbd connects to.

Database credentials are supplied out-of-band through the referenced Secrets Manager secret. Supported only with Continuous node provisioning.

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.sagemaker.*;
 ClusterAccountingDatabaseProperty clusterAccountingDatabaseProperty = ClusterAccountingDatabaseProperty.builder()
         .endpoint("endpoint")
         .secretArn("secretArn")
         // the properties below are optional
         .name("name")
         .port(123)
         .build();
 

See Also: