Interface CfnContactPropsMixin.TargetsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnContactPropsMixin.TargetsProperty.Jsii$Proxy
- Enclosing class:
CfnContactPropsMixin
@Stability(Stable)
public static interface CfnContactPropsMixin.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.cfnpropertymixins.services.ssmcontacts.*;
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 forCfnContactPropsMixin.TargetsPropertystatic final classAn implementation forCfnContactPropsMixin.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
IResolvableorCfnContactPropsMixin.ChannelTargetInfoProperty- See Also:
-
getContactTargetInfo
The contact that Incident Manager is engaging during an incident.Returns union: either
IResolvableorCfnContactPropsMixin.ContactTargetInfoProperty- See Also:
-
builder
-