Interface CfnClusterPropsMixin.JwtAuthProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClusterPropsMixin.JwtAuthProperty.Jsii$Proxy
- Enclosing class:
CfnClusterPropsMixin
@Stability(Stable)
public static interface CfnClusterPropsMixin.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.cfnpropertymixins.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 forCfnClusterPropsMixin.JwtAuthPropertystatic final classAn implementation forCfnClusterPropsMixin.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
IResolvableorCfnClusterPropsMixin.JwtKeyProperty- See Also:
-
builder
-