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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTrustStoreRevocation.RevocationContentPropertystatic final classAn implementation forCfnTrustStoreRevocation.RevocationContentProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRevocationType
The type of revocation file.- See Also:
-
getS3Bucket
The Amazon S3 bucket for the revocation file.- See Also:
-
getS3Key
The Amazon S3 path for the revocation file.- See Also:
-
getS3ObjectVersion
The Amazon S3 object version of the revocation file.- See Also:
-
builder
-