enum RevocationType
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.ElasticLoadBalancingV2.RevocationType |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselasticloadbalancingv2#RevocationType |
Java | software.amazon.awscdk.services.elasticloadbalancingv2.RevocationType |
Python | aws_cdk.aws_elasticloadbalancingv2.RevocationType |
TypeScript (source) | aws-cdk-lib » aws_elasticloadbalancingv2 » RevocationType |
The type of revocation file.
Example
declare const trustStore: elbv2.TrustStore;
declare const bucket: s3.Bucket;
new elbv2.TrustStoreRevocation(this, 'Revocation', {
trustStore,
revocationContents: [
{
revocationType: elbv2.RevocationType.CRL,
bucket,
key: 'crl.pem',
},
],
});
Members
Name | Description |
---|---|
CRL | A signed list of revoked certificates. |
CRL
A signed list of revoked certificates.