interface CfnLoadBalancerTlsCertificateMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lightsail.Mixins.CfnLoadBalancerTlsCertificateMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslightsail/mixins#CfnLoadBalancerTlsCertificateMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.lightsail.mixins.CfnLoadBalancerTlsCertificateMixinProps |
Python | aws_cdk.mixins_preview.aws_lightsail.mixins.CfnLoadBalancerTlsCertificateMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_lightsail » mixins » CfnLoadBalancerTlsCertificateMixinProps |
Properties for CfnLoadBalancerTlsCertificatePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as lightsail_mixins } from '@aws-cdk/mixins-preview/aws-lightsail';
const cfnLoadBalancerTlsCertificateMixinProps: lightsail_mixins.CfnLoadBalancerTlsCertificateMixinProps = {
certificateAlternativeNames: ['certificateAlternativeNames'],
certificateDomainName: 'certificateDomainName',
certificateName: 'certificateName',
httpsRedirectionEnabled: false,
isAttached: false,
loadBalancerName: 'loadBalancerName',
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string[] | An array of alternative domain names and subdomain names for your SSL/TLS certificate. |
| certificate | string | The domain name for the SSL/TLS certificate. |
| certificate | string | The name of the 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. |
| load | 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.
certificateDomainName?
Type:
string
(optional)
The domain name for the SSL/TLS certificate.
For example, example.com or www.example.com .
certificateName?
Type:
string
(optional)
The name of the SSL/TLS certificate.
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.
loadBalancerName?
Type:
string
(optional)
The name of the load balancer that the SSL/TLS certificate is attached to.

.NET
Go
Java
Python
TypeScript