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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAcmeExternalAccountBindingPropsstatic final classAn implementation forCfnAcmeExternalAccountBindingProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAcmeEndpointArn
The ARN of the ACME endpoint this binding is associated with.- See Also:
-
getRoleArn
The IAM role ARN for cross-account access.- See Also:
-
getExpiration
The expiration configuration for the external account binding.Returns union: either
IResolvableorCfnAcmeExternalAccountBinding.ExpirationProperty- See Also:
-
getTags
@Stability(Stable) @Nullable default List<CfnAcmeExternalAccountBinding.TagsItemsProperty> getTags()Tags associated with the external account binding.- See Also:
-
builder
-