Interface CfnContact.TargetsProperty

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

@Stability(Stable) public static interface CfnContact.TargetsProperty extends software.amazon.jsii.JsiiSerializable
The contact or contact channel that's being engaged.

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.ssmcontacts.*;
 TargetsProperty targetsProperty = TargetsProperty.builder()
         .channelTargetInfo(ChannelTargetInfoProperty.builder()
                 .channelId("channelId")
                 .retryIntervalInMinutes(123)
                 .build())
         .contactTargetInfo(ContactTargetInfoProperty.builder()
                 .contactId("contactId")
                 .isEssential(false)
                 .build())
         .build();