@Stability(value=Stable)
public static interface CfnCertificateAuthority.KeyUsageProperty
extends software.amazon.jsii.JsiiSerializable
Default value for each option is false.
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.acmpca.*;
KeyUsageProperty keyUsageProperty = KeyUsageProperty.builder()
.crlSign(false)
.dataEncipherment(false)
.decipherOnly(false)
.digitalSignature(false)
.encipherOnly(false)
.keyAgreement(false)
.keyCertSign(false)
.keyEncipherment(false)
.nonRepudiation(false)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCertificateAuthority.KeyUsageProperty.Builder
A builder for
CfnCertificateAuthority.KeyUsageProperty |
static class |
CfnCertificateAuthority.KeyUsageProperty.Jsii$Proxy
An implementation for
CfnCertificateAuthority.KeyUsageProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnCertificateAuthority.KeyUsageProperty.Builder |
builder() |
default Object |
getCrlSign()
Key can be used to sign CRLs.
|
default Object |
getDataEncipherment()
Key can be used to decipher data.
|
default Object |
getDecipherOnly()
Key can be used only to decipher data.
|
default Object |
getDigitalSignature()
Key can be used for digital signing.
|
default Object |
getEncipherOnly()
Key can be used only to encipher data.
|
default Object |
getKeyAgreement()
Key can be used in a key-agreement protocol.
|
default Object |
getKeyCertSign()
Key can be used to sign certificates.
|
default Object |
getKeyEncipherment()
Key can be used to encipher data.
|
default Object |
getNonRepudiation()
Key can be used for non-repudiation.
|
@Stability(value=Stable) @Nullable default Object getCrlSign()
@Stability(value=Stable) @Nullable default Object getDataEncipherment()
@Stability(value=Stable) @Nullable default Object getDecipherOnly()
@Stability(value=Stable) @Nullable default Object getDigitalSignature()
@Stability(value=Stable) @Nullable default Object getEncipherOnly()
@Stability(value=Stable) @Nullable default Object getKeyAgreement()
@Stability(value=Stable) @Nullable default Object getKeyCertSign()
@Stability(value=Stable) @Nullable default Object getKeyEncipherment()
@Stability(value=Stable) @Nullable default Object getNonRepudiation()
@Stability(value=Stable) static CfnCertificateAuthority.KeyUsageProperty.Builder builder()
Copyright © 2022. All rights reserved.