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:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTrustStoreRevocation.TrustStoreRevocationPropertystatic final classAn implementation forCfnTrustStoreRevocation.TrustStoreRevocationProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getNumberOfRevokedEntriesThe number of revoked certificates.- See Also:
 
- 
getRevocationIdThe revocation ID of the revocation file.- See Also:
 
- 
getRevocationTypeThe type of revocation file.- See Also:
 
- 
getTrustStoreArnThe Amazon Resource Name (ARN) of the trust store.- See Also:
 
- 
builder
 
-