interface AuthKeyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.PCS.Mixins.CfnClusterPropsMixin.AuthKeyProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspcs/mixins#CfnClusterPropsMixin_AuthKeyProperty |
Java | software.amazon.awscdk.mixins.preview.services.pcs.mixins.CfnClusterPropsMixin.AuthKeyProperty |
Python | aws_cdk.mixins_preview.aws_pcs.mixins.CfnClusterPropsMixin.AuthKeyProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pcs » mixins » CfnClusterPropsMixin » 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 { mixins as pcs_mixins } from '@aws-cdk/mixins-preview/aws-pcs';
const authKeyProperty: pcs_mixins.CfnClusterPropsMixin.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
(optional)
The Amazon Resource Name (ARN) of the shared Slurm key.
secretVersion?
Type:
string
(optional)
The version of the shared Slurm key.

.NET
Go
Java
Python
TypeScript