interface CfnLoadBalancerTlsCertificateProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Lightsail.CfnLoadBalancerTlsCertificateProps | 
|  Java | software.amazon.awscdk.services.lightsail.CfnLoadBalancerTlsCertificateProps | 
|  Python | aws_cdk.aws_lightsail.CfnLoadBalancerTlsCertificateProps | 
|  TypeScript | @aws-cdk/aws-lightsail»CfnLoadBalancerTlsCertificateProps | 
Properties for defining a CfnLoadBalancerTlsCertificate.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as lightsail from '@aws-cdk/aws-lightsail';
const cfnLoadBalancerTlsCertificateProps: lightsail.CfnLoadBalancerTlsCertificateProps = {
  certificateDomainName: 'certificateDomainName',
  certificateName: 'certificateName',
  loadBalancerName: 'loadBalancerName',
  // the properties below are optional
  certificateAlternativeNames: ['certificateAlternativeNames'],
  httpsRedirectionEnabled: false,
  isAttached: false,
};
Properties
| Name | Type | Description | 
|---|---|---|
| certificate | string | The domain name for the SSL/TLS certificate. | 
| certificate | string | The name of the SSL/TLS certificate. | 
| load | string | The name of the load balancer that the SSL/TLS certificate is attached to. | 
| certificate | string[] | An array of alternative domain names and subdomain names for your SSL/TLS certificate. | 
| https | boolean | IResolvable | A Boolean value indicating whether HTTPS redirection is enabled for the load balancer that the TLS certificate is attached to. | 
| is | boolean | IResolvable | A Boolean value indicating whether the SSL/TLS certificate is attached to a Lightsail load balancer. | 
certificateDomainName
Type:
string
The domain name for the SSL/TLS certificate.
For example, example.com or www.example.com .
certificateName
Type:
string
The name of the SSL/TLS certificate.
loadBalancerName
Type:
string
The name of the load balancer that the SSL/TLS certificate is attached to.
certificateAlternativeNames?
Type:
string[]
(optional)
An array of alternative domain names and subdomain names for your SSL/TLS certificate.
In addition to the primary domain name, you can have up to nine alternative domain names. Wildcards (such as *.example.com ) are not supported.
httpsRedirectionEnabled?
Type:
boolean | IResolvable
(optional)
A Boolean value indicating whether HTTPS redirection is enabled for the load balancer that the TLS certificate is attached to.
isAttached?
Type:
boolean | IResolvable
(optional)
A Boolean value indicating whether the SSL/TLS certificate is attached to a Lightsail load balancer.
