Interface CfnDomainConfiguration.ServerCertificateSummaryProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDomainConfiguration.ServerCertificateSummaryProperty.Jsii$Proxy
Enclosing class:
CfnDomainConfiguration

@Stability(Stable) public static interface CfnDomainConfiguration.ServerCertificateSummaryProperty extends software.amazon.jsii.JsiiSerializable
An object that contains information about a server certificate.

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.iot.*;
 ServerCertificateSummaryProperty serverCertificateSummaryProperty = ServerCertificateSummaryProperty.builder()
         .serverCertificateArn("serverCertificateArn")
         .serverCertificateStatus("serverCertificateStatus")
         .serverCertificateStatusDetail("serverCertificateStatusDetail")
         .build();
 

See Also: