@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)", date="2023-01-25T18:29:00.714Z") @Stability(value=Stable) public interface CfnCertificateProps extends software.amazon.jsii.JsiiSerializable
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.transfer.*;
CfnCertificateProps cfnCertificateProps = CfnCertificateProps.builder()
.certificate("certificate")
.usage("usage")
// the properties below are optional
.activeDate("activeDate")
.certificateChain("certificateChain")
.description("description")
.inactiveDate("inactiveDate")
.privateKey("privateKey")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCertificateProps.Builder
A builder for
CfnCertificateProps |
static class |
CfnCertificateProps.Jsii$Proxy
An implementation for
CfnCertificateProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnCertificateProps.Builder |
builder() |
default String |
getActiveDate()
An optional date that specifies when the certificate becomes active.
|
String |
getCertificate()
The file name for the certificate.
|
default String |
getCertificateChain()
The list of certificates that make up the chain for the certificate.
|
default String |
getDescription()
The name or description that's used to identity the certificate.
|
default String |
getInactiveDate()
An optional date that specifies when the certificate becomes inactive.
|
default String |
getPrivateKey()
The file that contains the private key for the certificate that's being imported.
|
default List<CfnTag> |
getTags()
Key-value pairs that can be used to group and search for certificates.
|
String |
getUsage()
Specifies whether this certificate is used for signing or encryption.
|
@Stability(value=Stable) @NotNull String getCertificate()
@Stability(value=Stable) @NotNull String getUsage()
@Stability(value=Stable) @Nullable default String getActiveDate()
@Stability(value=Stable) @Nullable default String getCertificateChain()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default String getInactiveDate()
@Stability(value=Stable) @Nullable default String getPrivateKey()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnCertificateProps.Builder builder()
CfnCertificateProps.Builder of CfnCertificatePropsCopyright © 2023. All rights reserved.