Interface CfnTrustStoreRevocation.TrustStoreRevocationProperty

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

@Stability(Stable) public static interface CfnTrustStoreRevocation.TrustStoreRevocationProperty extends software.amazon.jsii.JsiiSerializable
Information about a revocation file in use by a trust store.

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.elasticloadbalancingv2.*;
 TrustStoreRevocationProperty trustStoreRevocationProperty = TrustStoreRevocationProperty.builder()
         .numberOfRevokedEntries(123)
         .revocationId("revocationId")
         .revocationType("revocationType")
         .trustStoreArn("trustStoreArn")
         .build();
 

See Also: