Interface CfnCluster.AuthKeyProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.AuthKeyProperty.Jsii$Proxy
- Enclosing class:
CfnCluster
@Stability(Stable)
public static interface CfnCluster.AuthKeyProperty
extends software.amazon.jsii.JsiiSerializable
The shared Slurm key for authentication, also known as the cluster secret .
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.*;
AuthKeyProperty authKeyProperty = AuthKeyProperty.builder()
.secretArn("secretArn")
.secretVersion("secretVersion")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCluster.AuthKeyPropertystatic final classAn implementation forCfnCluster.AuthKeyProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The Amazon Resource Name (ARN) of the shared Slurm key.The version of the shared Slurm key.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecretArn
The Amazon Resource Name (ARN) of the shared Slurm key.- See Also:
-
getSecretVersion
The version of the shared Slurm key.- See Also:
-
builder
- Returns:
- a
CfnCluster.AuthKeyProperty.BuilderofCfnCluster.AuthKeyProperty
-