Interface CfnClusterPropsMixin.CertificateAuthorityProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClusterPropsMixin.CertificateAuthorityProperty.Jsii$Proxy
- Enclosing class:
CfnClusterPropsMixin
@Stability(Stable)
public static interface CfnClusterPropsMixin.CertificateAuthorityProperty
extends software.amazon.jsii.JsiiSerializable
The certificate authority information for the cluster, including the trust bundle and the currently active signing certificate authority.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.eks.*;
CertificateAuthorityProperty certificateAuthorityProperty = CertificateAuthorityProperty.builder()
.active(ActiveCertificateAuthorityProperty.builder()
.activatedBy("activatedBy")
.id("id")
.build())
.data("data")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnClusterPropsMixin.CertificateAuthorityPropertystatic final classAn implementation forCfnClusterPropsMixin.CertificateAuthorityProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getActive
Identifies the certificate authority currently signing certificates for the cluster.Returns union: either
IResolvableorCfnClusterPropsMixin.ActiveCertificateAuthorityProperty- See Also:
-
getData
The base64-encoded certificate-authority trust bundle for the cluster (all trusted CAs).- See Also:
-
builder
-