Class CfnCertificate.Builder
java.lang.Object
software.amazon.awscdk.services.dms.CfnCertificate.Builder
- All Implemented Interfaces:
software.amazon.jsii.Builder<CfnCertificate>
- Enclosing class:
CfnCertificate
@Stability(Stable)
public static final class CfnCertificate.Builder
extends Object
implements software.amazon.jsii.Builder<CfnCertificate>
A fluent builder for
CfnCertificate
.-
Method Summary
Modifier and TypeMethodDescriptionbuild()
certificateIdentifier
(String certificateIdentifier) A customer-assigned name for the certificate.certificatePem
(String certificatePem) The contents of a.pem
file, which contains an X.509 certificate.certificateWallet
(String certificateWallet) The location of an imported Oracle Wallet certificate for use with SSL.static CfnCertificate.Builder
-
Method Details
-
create
@Stability(Stable) public static CfnCertificate.Builder create(software.constructs.Construct scope, String id) - Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.- Returns:
- a new instance of
CfnCertificate.Builder
.
-
certificateIdentifier
@Stability(Stable) public CfnCertificate.Builder certificateIdentifier(String certificateIdentifier) A customer-assigned name for the certificate.Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens.
- Parameters:
certificateIdentifier
- A customer-assigned name for the certificate. This parameter is required.- Returns:
this
- See Also:
-
certificatePem
The contents of a.pem
file, which contains an X.509 certificate.- Parameters:
certificatePem
- The contents of a.pem
file, which contains an X.509 certificate. This parameter is required.- Returns:
this
- See Also:
-
certificateWallet
The location of an imported Oracle Wallet certificate for use with SSL.An example is:
filebase64("${path.root}/rds-ca-2019-root.sso")
- Parameters:
certificateWallet
- The location of an imported Oracle Wallet certificate for use with SSL. This parameter is required.- Returns:
this
- See Also:
-
build
- Specified by:
build
in interfacesoftware.amazon.jsii.Builder<CfnCertificate>
- Returns:
- a newly built instance of
CfnCertificate
.
-