Class CfnAcmeEndpoint
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.certificatemanager.CfnAcmeEndpoint
- All Implemented Interfaces:
IInspectable,IAcmeEndpointRef,IEnvironmentAware,ITaggableV2,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-22T17:37:21.678Z")
@Stability(Stable)
public class CfnAcmeEndpoint
extends CfnResource
implements IInspectable, IAcmeEndpointRef, ITaggableV2
Resource Type definition for AWS::CertificateManager::AcmeEndpoint.
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.*;
CfnAcmeEndpoint cfnAcmeEndpoint = CfnAcmeEndpoint.Builder.create(this, "MyCfnAcmeEndpoint")
.authorizationBehavior("authorizationBehavior")
.certificateAuthority(CertificateAuthorityProperty.builder()
.publicCertificateAuthority(PublicCertificateAuthorityProperty.builder()
.allowedKeyAlgorithms(List.of("allowedKeyAlgorithms"))
.build())
.build())
// the properties below are optional
.certificateTags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.contact("contact")
.tags(List.of(TagsItemsProperty.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classA fluent builder forCfnAcmeEndpoint.static interfaceThe certificate authority configuration for the ACME endpoint.static interfaceConfiguration for the public certificate authority.static interfaceExample:Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.interfaces.certificatemanager.IAcmeEndpointRef
IAcmeEndpointRef.Jsii$Default, IAcmeEndpointRef.Jsii$ProxyNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.ITaggableV2
ITaggableV2.Jsii$Default, ITaggableV2.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCfnAcmeEndpoint(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnAcmeEndpoint(software.amazon.jsii.JsiiObjectRef objRef) CfnAcmeEndpoint(software.constructs.Construct scope, String id, CfnAcmeEndpointProps props) Create a newAWS::CertificateManager::AcmeEndpoint. -
Method Summary
Modifier and TypeMethodDescriptionstatic StringarnForAcmeEndpoint(IAcmeEndpointRef resource) A reference to a AcmeEndpoint resource.The Amazon Resource Name (ARN) of the ACME endpoint.The ACME directory URL for the endpoint.The authorization behavior for the ACME endpoint.Tag Manager which manages the tags for this resource.The certificate authority configuration for the ACME endpoint.Tags applied to certificates issued via this endpoint.Whether contact information is required for the ACME endpoint.getTags()Tags associated with the ACME endpoint.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.static BooleanChecks whether the given object is a CfnAcmeEndpoint.renderProperties(Map<String, Object> props) voidsetAuthorizationBehavior(String value) The authorization behavior for the ACME endpoint.voidThe certificate authority configuration for the ACME endpoint.voidThe certificate authority configuration for the ACME endpoint.voidsetCertificateTags(List<Object> value) Tags applied to certificates issued via this endpoint.voidsetCertificateTags(IResolvable value) Tags applied to certificates issued via this endpoint.voidsetContact(String value) Whether contact information is required for the ACME endpoint.voidTags associated with the ACME endpoint.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, addResourceDependency, addResourceDependency, applyCrossStackReferenceStrength, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, cfnPropertyName, getAtt, getAtt, getCfnOptions, getCfnResourceType, getEnv, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, removeDependency, removeResourceDependency, replaceDependency, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId, withMethods inherited from class software.constructs.Construct
getNode, isConstructMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.constructs.IConstruct
getNode, withMethods inherited from interface software.amazon.awscdk.interfaces.IEnvironmentAware
getEnvMethods 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
-
CfnAcmeEndpoint
protected CfnAcmeEndpoint(software.amazon.jsii.JsiiObjectRef objRef) -
CfnAcmeEndpoint
protected CfnAcmeEndpoint(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnAcmeEndpoint
@Stability(Stable) public CfnAcmeEndpoint(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnAcmeEndpointProps props) Create a newAWS::CertificateManager::AcmeEndpoint.- 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
-
arnForAcmeEndpoint
@Stability(Stable) @NotNull public static String arnForAcmeEndpoint(@NotNull IAcmeEndpointRef resource) - Parameters:
resource- This parameter is required.
-
isCfnAcmeEndpoint
Checks whether the given object is a CfnAcmeEndpoint.- Parameters:
x- This parameter is required.
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin 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:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAcmeEndpointRef
A reference to a AcmeEndpoint resource.- Specified by:
getAcmeEndpointRefin interfaceIAcmeEndpointRef
-
getAttrAcmeEndpointArn
The Amazon Resource Name (ARN) of the ACME endpoint. -
getAttrEndpointUrl
The ACME directory URL for the endpoint. -
getCdkTagManager
Tag Manager which manages the tags for this resource.- Specified by:
getCdkTagManagerin interfaceITaggableV2
-
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getCfnPropertyNames
- Overrides:
getCfnPropertyNamesin classCfnResource
-
getAuthorizationBehavior
The authorization behavior for the ACME endpoint. -
setAuthorizationBehavior
The authorization behavior for the ACME endpoint. -
getCertificateAuthority
The certificate authority configuration for the ACME endpoint.Returns union: either
IResolvableorCfnAcmeEndpoint.CertificateAuthorityProperty -
setCertificateAuthority
The certificate authority configuration for the ACME endpoint. -
setCertificateAuthority
@Stability(Stable) public void setCertificateAuthority(@NotNull CfnAcmeEndpoint.CertificateAuthorityProperty value) The certificate authority configuration for the ACME endpoint. -
getCertificateTags
Tags applied to certificates issued via this endpoint.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnTag> -
setCertificateTags
Tags applied to certificates issued via this endpoint. -
setCertificateTags
Tags applied to certificates issued via this endpoint. -
getContact
Whether contact information is required for the ACME endpoint. -
setContact
Whether contact information is required for the ACME endpoint. -
getTags
Tags associated with the ACME endpoint. -
setTags
Tags associated with the ACME endpoint.
-