Class CfnCertificate
- All Implemented Interfaces:
IInspectable
,ITaggable
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
AWS::CertificateManager::Certificate
resource requests an AWS Certificate Manager ( ACM ) certificate that you can use to enable secure connections.
For example, you can deploy an ACM certificate to an Elastic Load Balancer to enable HTTPS support. For more information, see RequestCertificate in the AWS Certificate Manager API Reference.
When you use the
AWS::CertificateManager::Certificate
resource in a CloudFormation stack, domain validation is handled automatically if all three of the following are true: The certificate domain is hosted in Amazon Route 53, the domain resides in your AWS account , and you are using DNS validation.However, if the certificate uses email validation, or if the domain is not hosted in Route 53, then the stack will remain in the
CREATE_IN_PROGRESS
state. Further stack operations are delayed until you validate the certificate request, either by acting upon the instructions in the validation email, or by adding a CNAME record to your DNS configuration. For more information, see Option 1: DNS Validation and Option 2: Email Validation .
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.certificatemanager.*; CfnCertificate cfnCertificate = CfnCertificate.Builder.create(this, "MyCfnCertificate") .domainName("domainName") // the properties below are optional .certificateAuthorityArn("certificateAuthorityArn") .certificateTransparencyLoggingPreference("certificateTransparencyLoggingPreference") .domainValidationOptions(List.of(DomainValidationOptionProperty.builder() .domainName("domainName") // the properties below are optional .hostedZoneId("hostedZoneId") .validationDomain("validationDomain") .build())) .keyAlgorithm("keyAlgorithm") .subjectAlternativeNames(List.of("subjectAlternativeNames")) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .validationMethod("validationMethod") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
A fluent builder forCfnCertificate
.static interface
DomainValidationOption
is a property of the AWS::CertificateManager::Certificate resource that specifies the AWS Certificate Manager ( ACM ) certificate domain to validate.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.ITaggable
ITaggable.Jsii$Default, ITaggable.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionprotected
CfnCertificate
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnCertificate
(software.amazon.jsii.JsiiObjectRef objRef) CfnCertificate
(software.constructs.Construct scope, String id, CfnCertificateProps props) -
Method Summary
Modifier and TypeMethodDescriptionThe Amazon Resource Name (ARN) of the private certificate authority (CA) that will be used to issue the certificate.You can opt out of certificate transparency logging by specifying theDISABLED
option.The fully qualified domain name (FQDN), such as www.example.com, with which you want to secure an ACM certificate.Domain information that domain name registrars use to verify your identity.Specifies the algorithm of the public and private key pair that your certificate uses to encrypt data.Additional FQDNs to be included in the Subject Alternative Name extension of the ACM certificate.getTags()
Tag Manager which manages the tags for this resource.Key-value pairs that can identify the certificate.The method you want to use to validate that you own or control the domain associated with a public certificate.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
setCertificateAuthorityArn
(String value) The Amazon Resource Name (ARN) of the private certificate authority (CA) that will be used to issue the certificate.void
You can opt out of certificate transparency logging by specifying theDISABLED
option.void
setDomainName
(String value) The fully qualified domain name (FQDN), such as www.example.com, with which you want to secure an ACM certificate.void
setDomainValidationOptions
(List<Object> value) Domain information that domain name registrars use to verify your identity.void
Domain information that domain name registrars use to verify your identity.void
setKeyAlgorithm
(String value) Specifies the algorithm of the public and private key pair that your certificate uses to encrypt data.void
setSubjectAlternativeNames
(List<String> value) Additional FQDNs to be included in the Subject Alternative Name extension of the ACM certificate.void
setTagsRaw
(List<CfnTag> value) Key-value pairs that can identify the certificate.void
setValidationMethod
(String value) The method you want to use to validate that you own or control the domain associated with a public certificate.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.constructs.Construct
getNode, isConstruct
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnCertificate
protected CfnCertificate(software.amazon.jsii.JsiiObjectRef objRef) -
CfnCertificate
protected CfnCertificate(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnCertificate
@Stability(Stable) public CfnCertificate(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnCertificateProps props) - Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.props
- Resource properties. This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in interfaceIInspectable
- Parameters:
inspector
- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getAttrId
-
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getTags
Tag Manager which manages the tags for this resource. -
getDomainName
The fully qualified domain name (FQDN), such as www.example.com, with which you want to secure an ACM certificate. Use an asterisk (*) to create a wildcard certificate that protects several sites in the same domain. For example,*.example.com
protectswww.example.com
,site.example.com
, andimages.example.com.
. -
setDomainName
The fully qualified domain name (FQDN), such as www.example.com, with which you want to secure an ACM certificate. Use an asterisk (*) to create a wildcard certificate that protects several sites in the same domain. For example,*.example.com
protectswww.example.com
,site.example.com
, andimages.example.com.
. -
getCertificateAuthorityArn
The Amazon Resource Name (ARN) of the private certificate authority (CA) that will be used to issue the certificate. -
setCertificateAuthorityArn
The Amazon Resource Name (ARN) of the private certificate authority (CA) that will be used to issue the certificate. -
getCertificateTransparencyLoggingPreference
You can opt out of certificate transparency logging by specifying theDISABLED
option.Opt in by specifying
ENABLED
. -
setCertificateTransparencyLoggingPreference
You can opt out of certificate transparency logging by specifying theDISABLED
option.Opt in by specifying
ENABLED
. -
getDomainValidationOptions
Domain information that domain name registrars use to verify your identity. -
setDomainValidationOptions
Domain information that domain name registrars use to verify your identity. -
setDomainValidationOptions
Domain information that domain name registrars use to verify your identity. -
getKeyAlgorithm
Specifies the algorithm of the public and private key pair that your certificate uses to encrypt data. -
setKeyAlgorithm
Specifies the algorithm of the public and private key pair that your certificate uses to encrypt data. -
getSubjectAlternativeNames
Additional FQDNs to be included in the Subject Alternative Name extension of the ACM certificate. -
setSubjectAlternativeNames
Additional FQDNs to be included in the Subject Alternative Name extension of the ACM certificate. -
getTagsRaw
Key-value pairs that can identify the certificate. -
setTagsRaw
Key-value pairs that can identify the certificate. -
getValidationMethod
The method you want to use to validate that you own or control the domain associated with a public certificate. -
setValidationMethod
The method you want to use to validate that you own or control the domain associated with a public certificate.
-