Class CfnAcmeExternalAccountBinding

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.CfnAcmeExternalAccountBinding
All Implemented Interfaces:
IInspectable, IAcmeExternalAccountBindingRef, 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.681Z") @Stability(Stable) public class CfnAcmeExternalAccountBinding extends CfnResource implements IInspectable, IAcmeExternalAccountBindingRef, ITaggableV2
Resource Type definition for AWS::CertificateManager::AcmeExternalAccountBinding.

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.*;
 CfnAcmeExternalAccountBinding cfnAcmeExternalAccountBinding = CfnAcmeExternalAccountBinding.Builder.create(this, "MyCfnAcmeExternalAccountBinding")
         .acmeEndpointArn("acmeEndpointArn")
         .roleArn("roleArn")
         // the properties below are optional
         .expiration(ExpirationProperty.builder()
                 .type("type")
                 .value(123)
                 .build())
         .tags(List.of(TagsItemsProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnAcmeExternalAccountBinding

      protected CfnAcmeExternalAccountBinding(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnAcmeExternalAccountBinding

      protected CfnAcmeExternalAccountBinding(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnAcmeExternalAccountBinding

      @Stability(Stable) public CfnAcmeExternalAccountBinding(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnAcmeExternalAccountBindingProps props)
      Create a new AWS::CertificateManager::AcmeExternalAccountBinding.

      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

    • arnForAcmeExternalAccountBinding

      @Stability(Stable) @NotNull public static String arnForAcmeExternalAccountBinding(@NotNull IAcmeExternalAccountBindingRef resource)
      Parameters:
      resource - This parameter is required.
    • isCfnAcmeExternalAccountBinding

      @Stability(Stable) @NotNull public static Boolean isCfnAcmeExternalAccountBinding(@NotNull Object x)
      Checks whether the given object is a CfnAcmeExternalAccountBinding.

      Parameters:
      x - This parameter is required.
    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      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 class CfnResource
      Parameters:
      props - This parameter is required.
    • getAcmeExternalAccountBindingRef

      @Stability(Stable) @NotNull public AcmeExternalAccountBindingReference getAcmeExternalAccountBindingRef()
      A reference to a AcmeExternalAccountBinding resource.
      Specified by:
      getAcmeExternalAccountBindingRef in interface IAcmeExternalAccountBindingRef
    • getAttrAcmeExternalAccountBindingArn

      @Stability(Stable) @NotNull public String getAttrAcmeExternalAccountBindingArn()
      The Amazon Resource Name (ARN) of the external account binding.
    • getCdkTagManager

      @Stability(Stable) @NotNull public TagManager getCdkTagManager()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getCdkTagManager in interface ITaggableV2
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getCfnPropertyNames

      @Stability(Stable) @NotNull protected Map<String,String> getCfnPropertyNames()
      Overrides:
      getCfnPropertyNames in class CfnResource
    • getAcmeEndpointArn

      @Stability(Stable) @NotNull public String getAcmeEndpointArn()
      The ARN of the ACME endpoint this binding is associated with.
    • setAcmeEndpointArn

      @Stability(Stable) public void setAcmeEndpointArn(@NotNull String value)
      The ARN of the ACME endpoint this binding is associated with.
    • getRoleArn

      @Stability(Stable) @NotNull public String getRoleArn()
      The IAM role ARN for cross-account access.
    • setRoleArn

      @Stability(Stable) public void setRoleArn(@NotNull String value)
      The IAM role ARN for cross-account access.
    • getExpiration

      @Stability(Stable) @Nullable public Object getExpiration()
      The expiration configuration for the external account binding.

      Returns union: either IResolvable or CfnAcmeExternalAccountBinding.ExpirationProperty

    • setExpiration

      @Stability(Stable) public void setExpiration(@Nullable IResolvable value)
      The expiration configuration for the external account binding.
    • setExpiration

      @Stability(Stable) public void setExpiration(@Nullable CfnAcmeExternalAccountBinding.ExpirationProperty value)
      The expiration configuration for the external account binding.
    • getTags

      @Stability(Stable) @Nullable public List<CfnAcmeExternalAccountBinding.TagsItemsProperty> getTags()
      Tags associated with the external account binding.
    • setTags

      @Stability(Stable) public void setTags(@Nullable List<CfnAcmeExternalAccountBinding.TagsItemsProperty> value)
      Tags associated with the external account binding.