Interface CfnEmailAddressProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEmailAddressProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:05.773Z")
@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 StringA description for the email address.default StringThe display name for the email address.Email address to be created for this instance.The identifier of the Amazon Connect instance.getTags()One or more tags.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEmailAddress
Email address to be created for this instance.- See Also:
-
getInstanceArn
The identifier of the Amazon Connect instance.- See Also:
-
getDescription
A description for the email address.- See Also:
-
getDisplayName
The display name for the email address.- See Also:
-
getTags
One or more tags.- See Also:
-
builder
- Returns:
- a
CfnEmailAddressProps.BuilderofCfnEmailAddressProps
-