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