Interface CfnCluster.JwtKeyProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.JwtKeyProperty.Jsii$Proxy
- Enclosing class:
CfnCluster
@Stability(Stable)
public static interface CfnCluster.JwtKeyProperty
extends software.amazon.jsii.JsiiSerializable
The JWT key stored in AWS Secrets Manager for Slurm REST API authentication.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.pcs.*;
JwtKeyProperty jwtKeyProperty = JwtKeyProperty.builder()
.secretArn("secretArn")
.secretVersion("secretVersion")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCluster.JwtKeyPropertystatic final classAn implementation forCfnCluster.JwtKeyProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The Amazon Resource Name (ARN) of the AWS Secrets Manager secret containing the JWT key.The version of the AWS Secrets Manager secret containing the JWT key.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecretArn
The Amazon Resource Name (ARN) of the AWS Secrets Manager secret containing the JWT key.- See Also:
-
getSecretVersion
The version of the AWS Secrets Manager secret containing the JWT key.- See Also:
-
builder
- Returns:
- a
CfnCluster.JwtKeyProperty.BuilderofCfnCluster.JwtKeyProperty
-