Interface TrustStoreRevocationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
TrustStoreRevocationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.106.0 (build e852934)", date="2025-02-12T12:32:02.890Z") @Stability(Stable) public interface TrustStoreRevocationProps extends software.amazon.jsii.JsiiSerializable
Properties for the trust store revocation.

Example:

 TrustStore trustStore;
 Bucket bucket;
 TrustStoreRevocation.Builder.create(this, "Revocation")
         .trustStore(trustStore)
         .revocationContents(List.of(RevocationContent.builder()
                 .revocationType(RevocationType.CRL)
                 .bucket(bucket)
                 .key("crl.pem")
                 .build()))
         .build();