Interface CfnTrustStoreRevocation.RevocationContentProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTrustStoreRevocation.RevocationContentProperty.Jsii$Proxy
Enclosing class:
CfnTrustStoreRevocation

@Stability(Stable) public static interface CfnTrustStoreRevocation.RevocationContentProperty extends software.amazon.jsii.JsiiSerializable
Information about a revocation file.

You must specify S3Bucket and S3Key .

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.*;
 RevocationContentProperty revocationContentProperty = RevocationContentProperty.builder()
         .revocationType("revocationType")
         .s3Bucket("s3Bucket")
         .s3Key("s3Key")
         .s3ObjectVersion("s3ObjectVersion")
         .build();
 

See Also: