interface CfnCertificateMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lightsail.CfnCertificateMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslightsail#CfnCertificateMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.lightsail.CfnCertificateMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_lightsail.CfnCertificateMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lightsail » CfnCertificateMixinProps |
Properties for CfnCertificatePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lightsail as lightsail } from '@aws-cdk/cfn-property-mixins';
const cfnCertificateMixinProps: lightsail.CfnCertificateMixinProps = {
certificateName: 'certificateName',
domainName: 'domainName',
subjectAlternativeNames: ['subjectAlternativeNames'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string | The name of the certificate. |
| domain | string | The domain name of the certificate. |
| subject | string[] | An array of strings that specify the alternate domains (such as example.org ) and subdomains (such as blog.example.com ) of the certificate. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
certificateName?
Type:
string
(optional)
The name of the certificate.
domainName?
Type:
string
(optional)
The domain name of the certificate.
subjectAlternativeNames?
Type:
string[]
(optional)
An array of strings that specify the alternate domains (such as example.org ) and subdomains (such as blog.example.com ) of the certificate.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag in the AWS CloudFormation User Guide .
The
ValueofTagsis optional for Lightsail resources.

.NET
Go
Java
Python
TypeScript