RevocationType

class aws_cdk.aws_elasticloadbalancingv2.RevocationType(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)

Bases: Enum

The type of revocation file.

ExampleMetadata:

infused

Example:

# trust_store: elbv2.TrustStore
# bucket: s3.Bucket


elbv2.TrustStoreRevocation(self, "Revocation",
    trust_store=trust_store,
    revocation_contents=[elbv2.RevocationContent(
        revocation_type=elbv2.RevocationType.CRL,
        bucket=bucket,
        key="crl.pem"
    )
    ]
)

Attributes

CRL

A signed list of revoked certificates.