interface CfnCertificateProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Transfer.CfnCertificateProps |
![]() | software.amazon.awscdk.services.transfer.CfnCertificateProps |
![]() | aws_cdk.aws_transfer.CfnCertificateProps |
![]() | @aws-cdk/aws-transfer » 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 * as transfer from '@aws-cdk/aws-transfer';
const cfnCertificateProps: transfer.CfnCertificateProps = {
certificate: 'certificate',
usage: 'usage',
// the properties below are optional
activeDate: 'activeDate',
certificateChain: 'certificateChain',
description: 'description',
inactiveDate: 'inactiveDate',
privateKey: 'privateKey',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
certificate | string | The file name for the certificate. |
usage | string | Specifies whether this certificate is used for signing or encryption. |
active | string | An optional date that specifies when the certificate becomes active. |
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. |
certificate
Type:
string
The file name for the certificate.
usage
Type:
string
Specifies whether this certificate is used for signing or encryption.
activeDate?
Type:
string
(optional)
An optional date that specifies when the certificate becomes active.
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.
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.