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: