interface CfnCertificateMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DMS.Mixins.CfnCertificateMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdms/mixins#CfnCertificateMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.dms.mixins.CfnCertificateMixinProps |
Python | aws_cdk.mixins_preview.aws_dms.mixins.CfnCertificateMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_dms » mixins » 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 { mixins as dms_mixins } from '@aws-cdk/mixins-preview/aws-dms';
const cfnCertificateMixinProps: dms_mixins.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