Class TrustStoreRevocation

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.Resource
software.amazon.awscdk.services.elasticloadbalancingv2.TrustStoreRevocation
All Implemented Interfaces:
IResource, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-10-31T19:12:58.181Z") @Stability(Stable) public class TrustStoreRevocation extends Resource
A new 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();
 
  • Constructor Details

    • TrustStoreRevocation

      protected TrustStoreRevocation(software.amazon.jsii.JsiiObjectRef objRef)
    • TrustStoreRevocation

      protected TrustStoreRevocation(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • TrustStoreRevocation

      @Stability(Stable) public TrustStoreRevocation(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull TrustStoreRevocationProps props)
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      props - This parameter is required.