Interface CfnEmailContactPropsMixin.EmailContactProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEmailContactPropsMixin.EmailContactProperty.Jsii$Proxy
- Enclosing class:
CfnEmailContactPropsMixin
@Stability(Stable)
public static interface CfnEmailContactPropsMixin.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.cfnpropertymixins.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 forCfnEmailContactPropsMixin.EmailContactPropertystatic final classAn implementation forCfnEmailContactPropsMixin.EmailContactProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe email address of the contact.default StringgetArn()The Amazon Resource Name (ARN) of the contact.default StringThe creation time of theEmailContact.default StringgetName()The name of the contact.default StringThe status of the contact.default StringThe time theEmailContactwas last updated.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
-