interface JwtKeyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.PCS.CfnCluster.JwtKeyProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspcs#CfnCluster_JwtKeyProperty |
Java | software.amazon.awscdk.services.pcs.CfnCluster.JwtKeyProperty |
Python | aws_cdk.aws_pcs.CfnCluster.JwtKeyProperty |
TypeScript | aws-cdk-lib » aws_pcs » CfnCluster » JwtKeyProperty |
The JWT key stored in AWS Secrets Manager for Slurm REST API authentication.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-jwtkey.html
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 jwtKeyProperty: pcs.CfnCluster.JwtKeyProperty = {
secretArn: 'secretArn',
secretVersion: 'secretVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| secret | string | The Amazon Resource Name (ARN) of the AWS Secrets Manager secret containing the JWT key. |
| secret | string | The version of the AWS Secrets Manager secret containing the JWT key. |
secretArn
Type:
string
The Amazon Resource Name (ARN) of the AWS Secrets Manager secret containing the JWT key.
secretVersion
Type:
string
The version of the AWS Secrets Manager secret containing the JWT key.

.NET
Go
Java
Python
TypeScript