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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forTrustStoreRevocationProps
static final class
An 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.Builder
ofTrustStoreRevocationProps
-