Interface CfnCluster.ProviderProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.ProviderProperty.Jsii$Proxy
- Enclosing class:
CfnCluster
@Stability(Stable)
public static interface CfnCluster.ProviderProperty
extends software.amazon.jsii.JsiiSerializable
Identifies the AWS Key Management Service ( AWS KMS ) key used to encrypt the secrets.
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.*; ProviderProperty providerProperty = ProviderProperty.builder() .keyArn("keyArn") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCluster.ProviderProperty
static final class
An implementation forCfnCluster.ProviderProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKeyArn
Amazon Resource Name (ARN) or alias of the KMS key.The KMS key must be symmetric and created in the same AWS Region as the cluster. If the KMS key was created in a different account, the IAM principal must have access to the KMS key. For more information, see Allowing users in other accounts to use a KMS key in the AWS Key Management Service Developer Guide .
-
builder
-