interface AuthKeyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.PCS.CfnCluster.AuthKeyProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspcs#CfnCluster_AuthKeyProperty |
Java | software.amazon.awscdk.services.pcs.CfnCluster.AuthKeyProperty |
Python | aws_cdk.aws_pcs.CfnCluster.AuthKeyProperty |
TypeScript | aws-cdk-lib » aws_pcs » CfnCluster » AuthKeyProperty |
The shared Slurm key for authentication, also known as the cluster secret .
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-lib';
const authKeyProperty: pcs.CfnCluster.AuthKeyProperty = {
secretArn: 'secretArn',
secretVersion: 'secretVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| secret | string | The Amazon Resource Name (ARN) of the shared Slurm key. |
| secret | string | The version of the shared Slurm key. |
secretArn
Type:
string
The Amazon Resource Name (ARN) of the shared Slurm key.
secretVersion
Type:
string
The version of the shared Slurm key.

.NET
Go
Java
Python
TypeScript