Interface CfnTrustStoreRevocationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTrustStoreRevocationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-11T15:55:58.566Z") @Stability(Stable) public interface CfnTrustStoreRevocationProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnTrustStoreRevocation.

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.*;
 CfnTrustStoreRevocationProps cfnTrustStoreRevocationProps = CfnTrustStoreRevocationProps.builder()
         .revocationContents(List.of(RevocationContentProperty.builder()
                 .revocationType("revocationType")
                 .s3Bucket("s3Bucket")
                 .s3Key("s3Key")
                 .s3ObjectVersion("s3ObjectVersion")
                 .build()))
         .trustStoreArn("trustStoreArn")
         .build();
 

See Also: