Interface CfnCRLProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCRLProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:47.325Z")
@Stability(Stable)
public interface CfnCRLProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnCRL.
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.rolesanywhere.*;
CfnCRLProps cfnCRLProps = CfnCRLProps.builder()
.crlData("crlData")
.name("name")
// the properties below are optional
.enabled(false)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.trustAnchorArn("trustAnchorArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCRLPropsstatic final classAn implementation forCfnCRLProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnCRLProps.Builderbuilder()The x509 v3 specified certificate revocation list (CRL).default ObjectSpecifies whether the certificate revocation list (CRL) is enabled.getName()The name of the certificate revocation list (CRL).getTags()A list of tags to attach to the certificate revocation list (CRL).default StringThe ARN of the TrustAnchor the certificate revocation list (CRL) will provide revocation for.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCrlData
The x509 v3 specified certificate revocation list (CRL).- See Also:
-
getName
The name of the certificate revocation list (CRL).- See Also:
-
getEnabled
Specifies whether the certificate revocation list (CRL) is enabled.Returns union: either
BooleanorIResolvable- See Also:
-
getTags
A list of tags to attach to the certificate revocation list (CRL).- See Also:
-
getTrustAnchorArn
The ARN of the TrustAnchor the certificate revocation list (CRL) will provide revocation for.- See Also:
-
builder
- Returns:
- a
CfnCRLProps.BuilderofCfnCRLProps
-