interface CfnCertificateMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DMS.CfnCertificateMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdms#CfnCertificateMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.dms.CfnCertificateMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_dms.CfnCertificateMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_dms » CfnCertificateMixinProps |
Properties for CfnCertificatePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html
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/cfn-property-mixins';
const cfnCertificateMixinProps: dms.CfnCertificateMixinProps = {
certificateIdentifier: 'certificateIdentifier',
certificatePem: 'certificatePem',
certificateWallet: 'certificateWallet',
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string | A customer-assigned name for the certificate. |
| certificate | string | The contents of a .pem file, which contains an X.509 certificate. |
| certificate | string | The 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")

.NET
Go
Java
Python
TypeScript