Class CfnContact.TargetsProperty
The contact or contact channel that's being engaged.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.SSMContacts
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnContact.TargetsProperty : CfnContact.ITargetsProperty
Syntax (vb)
Public Class CfnContact.TargetsProperty Implements CfnContact.ITargetsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SSMContacts;
var targetsProperty = new TargetsProperty {
ChannelTargetInfo = new ChannelTargetInfoProperty {
ChannelId = "channelId",
RetryIntervalInMinutes = 123
},
ContactTargetInfo = new ContactTargetInfoProperty {
ContactId = "contactId",
IsEssential = false
}
};
Synopsis
Constructors
TargetsProperty() | The contact or contact channel that's being engaged. |
Properties
ChannelTargetInfo | Information about the contact channel that Incident Manager engages. |
ContactTargetInfo | The contact that Incident Manager is engaging during an incident. |
Constructors
TargetsProperty()
The contact or contact channel that's being engaged.
public TargetsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SSMContacts;
var targetsProperty = new TargetsProperty {
ChannelTargetInfo = new ChannelTargetInfoProperty {
ChannelId = "channelId",
RetryIntervalInMinutes = 123
},
ContactTargetInfo = new ContactTargetInfoProperty {
ContactId = "contactId",
IsEssential = false
}
};
Properties
ChannelTargetInfo
Information about the contact channel that Incident Manager engages.
public object? ChannelTargetInfo { get; set; }
Property Value
Remarks
ContactTargetInfo
The contact that Incident Manager is engaging during an incident.
public object? ContactTargetInfo { get; set; }