Interface CfnEmailAddressProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEmailAddressProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.106.0 (build e852934)",
date="2025-02-12T12:32:00.377Z")
@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 class
A builder forCfnEmailAddressProps
static final class
An implementation forCfnEmailAddressProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnEmailAddressProps.Builder
builder()
default String
The description of the email address.default String
The 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.Builder
ofCfnEmailAddressProps
-