Show / Hide Table of Contents

Interface ICfnCertificateProps

Properties for defining a CfnCertificate.

Namespace: Amazon.CDK.AWS.DMS
Assembly: Amazon.CDK.AWS.DMS.dll
Syntax (csharp)
public interface ICfnCertificateProps
Syntax (vb)
Public Interface ICfnCertificateProps
Remarks

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

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DMS;

CfnCertificateProps cfnCertificateProps = new CfnCertificateProps {
    CertificateIdentifier = "certificateIdentifier",
    CertificatePem = "certificatePem",
    CertificateWallet = "certificateWallet"
};

Synopsis

Properties

CertificateIdentifier

A customer-assigned name for the certificate.

CertificatePem

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

CertificateWallet

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

Properties

CertificateIdentifier

A customer-assigned name for the certificate.

virtual string CertificateIdentifier { get; }
Property Value

System.String

Remarks

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

CertificatePem

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

virtual string CertificatePem { get; }
Property Value

System.String

Remarks

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

CertificateWallet

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

virtual string CertificateWallet { get; }
Property Value

System.String

Remarks

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

Back to top Generated by DocFX