Interface CfnPlan.TargetsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPlan.TargetsProperty.Jsii$Proxy
- Enclosing class:
CfnPlan
@Stability(Stable)
public static interface CfnPlan.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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPlan.TargetsProperty
static final class
An implementation forCfnPlan.TargetsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChannelTargetInfo
Information about the contact channel that Incident Manager engages. -
getContactTargetInfo
Information about the contact that Incident Manager engages. -
builder
- Returns:
- a
CfnPlan.TargetsProperty.Builder
ofCfnPlan.TargetsProperty
-