interface CfnCertificateMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transfer.Mixins.CfnCertificateMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstransfer/mixins#CfnCertificateMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.transfer.mixins.CfnCertificateMixinProps |
Python | aws_cdk.mixins_preview.aws_transfer.mixins.CfnCertificateMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_transfer » mixins » CfnCertificateMixinProps |
Properties for CfnCertificatePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-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 transfer_mixins } from '@aws-cdk/mixins-preview/aws-transfer';
const cfnCertificateMixinProps: transfer_mixins.CfnCertificateMixinProps = {
activeDate: 'activeDate',
certificate: 'certificate',
certificateChain: 'certificateChain',
description: 'description',
inactiveDate: 'inactiveDate',
privateKey: 'privateKey',
tags: [{
key: 'key',
value: 'value',
}],
usage: 'usage',
};
Properties
| Name | Type | Description |
|---|---|---|
| active | string | An optional date that specifies when the certificate becomes active. |
| certificate? | string | The file name for the certificate. |
| certificate | string | The list of certificates that make up the chain for the certificate. |
| description? | string | The name or description that's used to identity the certificate. |
| inactive | string | An optional date that specifies when the certificate becomes inactive. |
| private | string | The file that contains the private key for the certificate that's being imported. |
| tags? | Cfn[] | Key-value pairs that can be used to group and search for certificates. |
| usage? | string | Specifies how this certificate is used. It can be used in the following ways:. |
activeDate?
Type:
string
(optional)
An optional date that specifies when the certificate becomes active.
If you do not specify a value, ActiveDate takes the same value as NotBeforeDate , which is specified by the CA.
certificate?
Type:
string
(optional)
The file name for the certificate.
certificateChain?
Type:
string
(optional)
The list of certificates that make up the chain for the certificate.
description?
Type:
string
(optional)
The name or description that's used to identity the certificate.
inactiveDate?
Type:
string
(optional)
An optional date that specifies when the certificate becomes inactive.
If you do not specify a value, InactiveDate takes the same value as NotAfterDate , which is specified by the CA.
privateKey?
Type:
string
(optional)
The file that contains the private key for the certificate that's being imported.
tags?
Type:
Cfn[]
(optional)
Key-value pairs that can be used to group and search for certificates.
usage?
Type:
string
(optional)
Specifies how this certificate is used. It can be used in the following ways:.
SIGNING: For signing AS2 messagesENCRYPTION: For encrypting AS2 messagesTLS: For securing AS2 communications sent over HTTPS

.NET
Go
Java
Python
TypeScript