Interface CfnCluster.JwtAuthProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.JwtAuthProperty.Jsii$Proxy
- Enclosing class:
CfnCluster
@Stability(Stable)
public static interface CfnCluster.JwtAuthProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.pcs.*;
JwtAuthProperty jwtAuthProperty = JwtAuthProperty.builder()
.jwtKey(JwtKeyProperty.builder()
.secretArn("secretArn")
.secretVersion("secretVersion")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCluster.JwtAuthPropertystatic final classAn implementation forCfnCluster.JwtAuthProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getJwtKey
The JWT key for Slurm REST API authentication.Returns union: either
IResolvableorCfnCluster.JwtKeyProperty- See Also:
-
builder
- Returns:
- a
CfnCluster.JwtAuthProperty.BuilderofCfnCluster.JwtAuthProperty
-