Interface CfnAcmeExternalAccountBindingProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAcmeExternalAccountBindingProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-22T17:37:21.682Z") @Stability(Stable) public interface CfnAcmeExternalAccountBindingProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnAcmeExternalAccountBinding.

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.*;
 CfnAcmeExternalAccountBindingProps cfnAcmeExternalAccountBindingProps = CfnAcmeExternalAccountBindingProps.builder()
         .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: