interface ClusterAccountingDatabaseProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnClusterPropsMixin.ClusterAccountingDatabaseProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnClusterPropsMixin_ClusterAccountingDatabaseProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnClusterPropsMixin.ClusterAccountingDatabaseProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnClusterPropsMixin.ClusterAccountingDatabaseProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnClusterPropsMixin » ClusterAccountingDatabaseProperty |
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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const clusterAccountingDatabaseProperty: sagemaker.CfnClusterPropsMixin.ClusterAccountingDatabaseProperty = {
endpoint: 'endpoint',
name: 'name',
port: 123,
secretArn: 'secretArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| endpoint? | string | Hostname or endpoint of the accounting database, such as an RDS endpoint. |
| name? | string | Name of the accounting database schema. |
| port? | number | TCP port of the accounting database. |
| secret | string | ARN of the Secrets Manager secret holding the database credentials. |
endpoint?
Type:
string
(optional)
Hostname or endpoint of the accounting database, such as an RDS endpoint.
name?
Type:
string
(optional, default: "slurm_acct_db")
Name of the accounting database schema.
Defaults to slurm_acct_db when omitted.
port?
Type:
number
(optional, default: 3306)
TCP port of the accounting database.
Defaults to 3306 when omitted.
secretArn?
Type:
string
(optional)
ARN of the Secrets Manager secret holding the database credentials.

.NET
Go
Java
Python
TypeScript