interface AuthKeyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.PCS.CfnClusterPropsMixin.AuthKeyProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspcs#CfnClusterPropsMixin_AuthKeyProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.pcs.CfnClusterPropsMixin.AuthKeyProperty |
Python | aws_cdk.cfn_property_mixins.aws_pcs.CfnClusterPropsMixin.AuthKeyProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pcs » 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 { aws_pcs as pcs } from '@aws-cdk/cfn-property-mixins';
const authKeyProperty: pcs.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