Interface CfnCertificateMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCertificateMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-27T13:12:16.524Z")
@Stability(Stable)
public interface CfnCertificateMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnCertificatePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.lightsail.*;
CfnCertificateMixinProps cfnCertificateMixinProps = CfnCertificateMixinProps.builder()
.certificateName("certificateName")
.domainName("domainName")
.subjectAlternativeNames(List.of("subjectAlternativeNames"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCertificateMixinPropsstatic final classAn implementation forCfnCertificateMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the certificate.default StringThe domain name of the certificate.An array of strings that specify the alternate domains (such asexample.org) and subdomains (such asblog.example.com) of the certificate.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCertificateName
The name of the certificate.- See Also:
-
getDomainName
The domain name of the certificate.- See Also:
-
getSubjectAlternativeNames
An array of strings that specify the alternate domains (such asexample.org) and subdomains (such asblog.example.com) of the certificate.- See Also:
-
getTags
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.- See Also:
-
builder
- Returns:
- a
CfnCertificateMixinProps.BuilderofCfnCertificateMixinProps
-