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

.NET
Go
Java
Python
TypeScript