Show / Hide Table of Contents

Class CfnPlan.TargetsProperty

The contact or contact channel that's being engaged.

Inheritance
object
CfnPlan.TargetsProperty
Implements
CfnPlan.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 CfnPlan.TargetsProperty : CfnPlan.ITargetsProperty
Syntax (vb)
Public Class CfnPlan.TargetsProperty Implements CfnPlan.ITargetsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmcontacts-plan-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

Information about the contact that Incident Manager engages.

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-plan-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-plan-targets.html#cfn-ssmcontacts-plan-targets-channeltargetinfo

ContactTargetInfo

Information about the contact that Incident Manager engages.

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

object

Remarks

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

Implements

CfnPlan.ITargetsProperty
Back to top Generated by DocFX