Interface CfnEmailAddressProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEmailAddressProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-10T13:40:01.487Z")
@Stability(Stable)
public interface CfnEmailAddressProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnEmailAddress.
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.connect.*;
CfnEmailAddressProps cfnEmailAddressProps = CfnEmailAddressProps.builder()
.emailAddress("emailAddress")
.instanceArn("instanceArn")
// the properties below are optional
.aliasConfigurations(List.of(AliasConfigurationProperty.builder()
.emailAddressArn("emailAddressArn")
.build()))
.description("description")
.displayName("displayName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEmailAddressPropsstatic final classAn implementation forCfnEmailAddressProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnEmailAddressProps.Builderbuilder()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.The email address, including the domain.The 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
-
getEmailAddress
The email address, including the domain.- See Also:
-
getInstanceArn
The Amazon Resource Name (ARN) of the instance.- See Also:
-
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: '<'eitherIResolvableorCfnEmailAddress.AliasConfigurationProperty>- See Also:
-
getDescription
The description of the email address.- See Also:
-
getDisplayName
The display name of email address.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnEmailAddressProps.BuilderofCfnEmailAddressProps
-