Interface CfnEmailContact.EmailContactProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEmailContact.EmailContactProperty.Jsii$Proxy
- Enclosing class:
CfnEmailContact
@Stability(Stable)
public static interface CfnEmailContact.EmailContactProperty
extends software.amazon.jsii.JsiiSerializable
Configures email contacts for AWS User Notifications .
You must activate the email contact using the activation token that you will receive when the email contact is set up.
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.notificationscontacts.*;
EmailContactProperty emailContactProperty = EmailContactProperty.builder()
.address("address")
.arn("arn")
.creationTime("creationTime")
.name("name")
.status("status")
.updateTime("updateTime")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEmailContact.EmailContactPropertystatic final classAn implementation forCfnEmailContact.EmailContactProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAddress
The email address of the contact.- See Also:
-
getArn
The Amazon Resource Name (ARN) of the contact.- See Also:
-
getCreationTime
The creation time of theEmailContact.- See Also:
-
getName
The name of the contact.- See Also:
-
getStatus
The status of the contact.Only activated contacts receive emails.
- See Also:
-
getUpdateTime
The time theEmailContactwas last updated.- See Also:
-
builder
-