public static interface CfnCluster.EncryptionConfigProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnCluster.EncryptionConfigProperty.Builder
A builder for
CfnCluster.EncryptionConfigProperty |
static class |
CfnCluster.EncryptionConfigProperty.Jsii$Proxy
An implementation for
CfnCluster.EncryptionConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnCluster.EncryptionConfigProperty.Builder |
builder() |
default java.lang.Object |
getProvider()
The encryption provider for the cluster.
|
default java.util.List<java.lang.String> |
getResources()
Specifies the resources to be encrypted.
|
default java.lang.Object getProvider()
default java.util.List<java.lang.String> getResources()
The only supported value is "secrets".
static CfnCluster.EncryptionConfigProperty.Builder builder()