Interface TrustStoreRevocationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
TrustStoreRevocationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:39.941Z")
@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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forTrustStoreRevocationPropsstatic final classAn implementation forTrustStoreRevocationProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRevocationContents
The revocation file to add. -
getTrustStore
The trust store. -
builder
- Returns:
- a
TrustStoreRevocationProps.BuilderofTrustStoreRevocationProps
-