Interface CfnEmailAddressProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEmailAddressProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.110.0 (build 336b265)",
date="2025-04-22T23:08:09.771Z")
@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
.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 StringThe description of the email address.default StringThe display name of email address.The email address with the instance, in [^\s@]+@[^\s@]+.[^\s@]+ format.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 with the instance, in [^\s@]+@[^\s@]+.[^\s@]+ format.- See Also:
-
getInstanceArn
The Amazon Resource Name (ARN) of the instance.- 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
-