Show / Hide Table of Contents

Class CfnContact.TargetsProperty

The contact or contact channel that's being engaged.

Inheritance
object
CfnContact.TargetsProperty
Implements
CfnContact.ITargetsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmcontacts-contact-targets.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmcontacts-contact-targets.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmcontacts-contact-targets.html#cfn-ssmcontacts-contact-targets-channeltargetinfo

ContactTargetInfo

The contact that Incident Manager is engaging during an incident.

public object? ContactTargetInfo { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmcontacts-contact-targets.html#cfn-ssmcontacts-contact-targets-contacttargetinfo

Implements

CfnContact.ITargetsProperty
Back to top Generated by DocFX