interface JwtAuthProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.PCS.CfnCluster.JwtAuthProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspcs#CfnCluster_JwtAuthProperty |
Java | software.amazon.awscdk.services.pcs.CfnCluster.JwtAuthProperty |
Python | aws_cdk.aws_pcs.CfnCluster.JwtAuthProperty |
TypeScript | aws-cdk-lib » aws_pcs » CfnCluster » JwtAuthProperty |
The JWT authentication configuration for Slurm REST API access.
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 jwtAuthProperty: pcs.CfnCluster.JwtAuthProperty = {
jwtKey: {
secretArn: 'secretArn',
secretVersion: 'secretVersion',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| jwt | IResolvable | Jwt | The JWT key for Slurm REST API authentication. |
jwtKey?
Type:
IResolvable | Jwt
(optional)
The JWT key for Slurm REST API authentication.

.NET
Go
Java
Python
TypeScript