Interface CfnCRLProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCRLProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:38.279Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCRLProps
static final class
An implementation forCfnCRLProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnCRLProps.Builder
builder()
The x509 v3 specified certificate revocation list (CRL).default Object
Specifies 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 String
The 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.- 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.Builder
ofCfnCRLProps
-