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: