Interface CfnAcmeExternalAccountBindingMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAcmeExternalAccountBindingMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-22T17:37:39.681Z")
@Stability(Stable)
public interface CfnAcmeExternalAccountBindingMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnAcmeExternalAccountBindingPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.certificatemanager.*;
CfnAcmeExternalAccountBindingMixinProps cfnAcmeExternalAccountBindingMixinProps = CfnAcmeExternalAccountBindingMixinProps.builder()
.acmeEndpointArn("acmeEndpointArn")
.expiration(ExpirationProperty.builder()
.type("type")
.value(123)
.build())
.roleArn("roleArn")
.tags(List.of(TagsItemsProperty.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAcmeExternalAccountBindingMixinPropsstatic final classAn implementation forCfnAcmeExternalAccountBindingMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe ARN of the ACME endpoint this binding is associated with.default ObjectThe expiration configuration for the external account binding.default StringThe IAM role ARN for cross-account access.getTags()Tags associated with the external account binding.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:
-
getExpiration
The expiration configuration for the external account binding.Returns union: either
IResolvableorCfnAcmeExternalAccountBindingPropsMixin.ExpirationProperty- See Also:
-
getRoleArn
The IAM role ARN for cross-account access.- See Also:
-
getTags
@Stability(Stable) @Nullable default List<CfnAcmeExternalAccountBindingPropsMixin.TagsItemsProperty> getTags()Tags associated with the external account binding.- See Also:
-
builder
-