Interface CfnProactiveEngagement.EmergencyContactProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnProactiveEngagement.EmergencyContactProperty.Jsii$Proxy
Enclosing class:
CfnProactiveEngagement

@Stability(Stable) public static interface CfnProactiveEngagement.EmergencyContactProperty extends software.amazon.jsii.JsiiSerializable
Contact information that the SRT can use to contact you if you have proactive engagement enabled, for escalations to the SRT and to initiate proactive customer support.

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.shield.*;
 EmergencyContactProperty emergencyContactProperty = EmergencyContactProperty.builder()
         .emailAddress("emailAddress")
         // the properties below are optional
         .contactNotes("contactNotes")
         .phoneNumber("phoneNumber")
         .build();