aws-cdk-lib.aws_dms.CfnCertificateProps

interface CfnCertificateProps

LanguageType name
.NETAmazon.CDK.AWS.DMS.CfnCertificateProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdms#CfnCertificateProps
Javasoftware.amazon.awscdk.services.dms.CfnCertificateProps
Pythonaws_cdk.aws_dms.CfnCertificateProps
TypeScript aws-cdk-lib » aws_dms » CfnCertificateProps

Properties for defining a CfnCertificate.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dms as dms } from 'aws-cdk-lib';
const cfnCertificateProps: dms.CfnCertificateProps = {
  certificateIdentifier: 'certificateIdentifier',
  certificatePem: 'certificatePem',
  certificateWallet: 'certificateWallet',
};

Properties

NameTypeDescription
certificateIdentifier?stringA customer-assigned name for the certificate.
certificatePem?stringThe contents of a .pem file, which contains an X.509 certificate.
certificateWallet?stringThe location of an imported Oracle Wallet certificate for use with SSL.

certificateIdentifier?

Type: string (optional)

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.


certificatePem?

Type: string (optional)

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


certificateWallet?

Type: string (optional)

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

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