Interface CfnCluster.EncryptionConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.EncryptionConfigProperty.Jsii$Proxy
- Enclosing class:
CfnCluster
@Stability(Stable)
public static interface CfnCluster.EncryptionConfigProperty
extends software.amazon.jsii.JsiiSerializable
The encryption configuration for the cluster.
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.eks.*; EncryptionConfigProperty encryptionConfigProperty = EncryptionConfigProperty.builder() .provider(ProviderProperty.builder() .keyArn("keyArn") .build()) .resources(List.of("resources")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCluster.EncryptionConfigProperty
static final class
An implementation forCfnCluster.EncryptionConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getProvider
The encryption provider for the cluster.- See Also:
-
getResources
Specifies the resources to be encrypted.The only supported value is
secrets
.- See Also:
-
builder
-