Interface CfnPlanPropsMixin.TargetsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPlanPropsMixin.TargetsProperty.Jsii$Proxy
- Enclosing class:
CfnPlanPropsMixin
@Stability(Stable)
public static interface CfnPlanPropsMixin.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.mixins.preview.services.ssmcontacts.mixins.*;
TargetsProperty targetsProperty = TargetsProperty.builder()
.channelTargetInfo(ChannelTargetInfoProperty.builder()
.channelId("channelId")
.retryIntervalInMinutes(123)
.build())
.contactTargetInfo(ContactTargetInfoProperty.builder()
.contactId("contactId")
.isEssential(false)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPlanPropsMixin.TargetsPropertystatic final classAn implementation forCfnPlanPropsMixin.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.Returns union: either
IResolvableorCfnPlanPropsMixin.ChannelTargetInfoProperty- See Also:
-
getContactTargetInfo
Information about the contact that Incident Manager engages.Returns union: either
IResolvableorCfnPlanPropsMixin.ContactTargetInfoProperty- See Also:
-
builder
-