@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:35.996Z") @Stability(value=Stable) public interface CfnCertificateAuthorityProps extends software.amazon.jsii.JsiiSerializable
Example:
CfnCertificateAuthority cfnCertificateAuthority = CfnCertificateAuthority.Builder.create(this, "CA")
.type("ROOT")
.keyAlgorithm("RSA_2048")
.signingAlgorithm("SHA256WITHRSA")
.subject(SubjectProperty.builder()
.country("US")
.organization("string")
.organizationalUnit("string")
.distinguishedNameQualifier("string")
.state("string")
.commonName("123")
.serialNumber("string")
.locality("string")
.title("string")
.surname("string")
.givenName("string")
.initials("DG")
.pseudonym("string")
.generationQualifier("DBG")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCertificateAuthorityProps.Builder
A builder for
CfnCertificateAuthorityProps |
static class |
CfnCertificateAuthorityProps.Jsii$Proxy
An implementation for
CfnCertificateAuthorityProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnCertificateAuthorityProps.Builder |
builder() |
default Object |
getCsrExtensions()
Specifies information to be added to the extension section of the certificate signing request (CSR).
|
String |
getKeyAlgorithm()
Type of the public key algorithm and size, in bits, of the key pair that your CA creates when it issues a certificate.
|
default String |
getKeyStorageSecurityStandard()
Specifies a cryptographic key management compliance standard used for handling CA keys.
|
default Object |
getRevocationConfiguration()
Information about the certificate revocation list (CRL) created and maintained by your private CA.
|
String |
getSigningAlgorithm()
Name of the algorithm your private CA uses to sign certificate requests.
|
Object |
getSubject()
Structure that contains X.500 distinguished name information for your private CA.
|
default List<CfnTag> |
getTags()
Key-value pairs that will be attached to the new private CA.
|
String |
getType()
Type of your private CA.
|
@Stability(value=Stable) @NotNull String getKeyAlgorithm()
When you create a subordinate CA, you must use a key algorithm supported by the parent CA.
@Stability(value=Stable) @NotNull String getSigningAlgorithm()
This parameter should not be confused with the SigningAlgorithm parameter used to sign certificates when they are issued.
@Stability(value=Stable) @NotNull Object getSubject()
@Stability(value=Stable) @NotNull String getType()
@Stability(value=Stable) @Nullable default Object getCsrExtensions()
@Stability(value=Stable) @Nullable default String getKeyStorageSecurityStandard()
Default: FIPS_140_2_LEVEL_3_OR_HIGHER
Note: FIPS_140_2_LEVEL_3_OR_HIGHER is not supported in the following Regions:
When creating a CA in these Regions, you must provide FIPS_140_2_LEVEL_2_OR_HIGHER as the argument for KeyStorageSecurityStandard . Failure to do this results in an InvalidArgsException with the message, "A certificate authority cannot be created in this region with the specified security standard."
@Stability(value=Stable) @Nullable default Object getRevocationConfiguration()
Certificate revocation information used by the CreateCertificateAuthority and UpdateCertificateAuthority actions. Your certificate authority can create and maintain a certificate revocation list (CRL). A CRL contains information about certificates that have been revoked.
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
You can associate up to 50 tags with a private CA. For information using tags with IAM to manage permissions, see Controlling Access Using IAM Tags .
@Stability(value=Stable) static CfnCertificateAuthorityProps.Builder builder()
Copyright © 2022. All rights reserved.