Interface CfnEmailAddressMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEmailAddressMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.543Z")
@Stability(Stable)
public interface CfnEmailAddressMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnEmailAddressPropsMixin.
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.connect.*;
CfnEmailAddressMixinProps cfnEmailAddressMixinProps = CfnEmailAddressMixinProps.builder()
.aliasConfigurations(List.of(AliasConfigurationProperty.builder()
.emailAddressArn("emailAddressArn")
.build()))
.description("description")
.displayName("displayName")
.emailAddress("emailAddress")
.instanceArn("instanceArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEmailAddressMixinPropsstatic final classAn implementation forCfnEmailAddressMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectA list of alias configurations for this email address, showing which email addresses forward to this primary address.default StringThe description of the email address.default StringThe display name of email address.default StringThe email address, including the domain.default StringThe Amazon Resource Name (ARN) of the instance.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAliasConfigurations
A list of alias configurations for this email address, showing which email addresses forward to this primary address.Each configuration contains the email address ID of an alias that forwards emails to this address.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnEmailAddressPropsMixin.AliasConfigurationProperty>- See Also:
-
getDescription
The description of the email address.- See Also:
-
getDisplayName
The display name of email address.- See Also:
-
getEmailAddress
The email address, including the domain.- See Also:
-
getInstanceArn
The Amazon Resource Name (ARN) of the instance.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnEmailAddressMixinProps.BuilderofCfnEmailAddressMixinProps
-