CfnCertificateProps

class aws_cdk.aws_dms.CfnCertificateProps(*, certificate_identifier=None, certificate_pem=None, certificate_wallet=None)

Bases: object

Properties for defining a CfnCertificate.

Parameters:
  • certificate_identifier (Optional[str]) – 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.

  • certificate_pem (Optional[str]) – The contents of a .pem file, which contains an X.509 certificate.

  • certificate_wallet (Optional[str]) – The location of an imported Oracle Wallet certificate for use with SSL. An example is: filebase64("${path.root}/rds-ca-2019-root.sso")

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_dms as dms

cfn_certificate_props = dms.CfnCertificateProps(
    certificate_identifier="certificateIdentifier",
    certificate_pem="certificatePem",
    certificate_wallet="certificateWallet"
)

Attributes

certificate_identifier

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.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificateidentifier

certificate_pem

The contents of a .pem file, which contains an X.509 certificate.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatepem

certificate_wallet

The location of an imported Oracle Wallet certificate for use with SSL.

An example is: filebase64("${path.root}/rds-ca-2019-root.sso")

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatewallet