package awsssmcontacts // 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 "github.com/aws/aws-cdk-go/awscdk" // // targetsProperty := &TargetsProperty{ // ChannelTargetInfo: &ChannelTargetInfoProperty{ // ChannelId: jsii.String("channelId"), // RetryIntervalInMinutes: jsii.Number(123), // }, // ContactTargetInfo: &ContactTargetInfoProperty{ // ContactId: jsii.String("contactId"), // IsEssential: jsii.Boolean(false), // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmcontacts-plan-targets.html // type CfnPlan_TargetsProperty struct { // Information about the contact channel that Incident Manager engages. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmcontacts-plan-targets.html#cfn-ssmcontacts-plan-targets-channeltargetinfo // ChannelTargetInfo interface{} `field:"optional" json:"channelTargetInfo" yaml:"channelTargetInfo"` // Information about the contact that Incident Manager engages. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmcontacts-plan-targets.html#cfn-ssmcontacts-plan-targets-contacttargetinfo // ContactTargetInfo interface{} `field:"optional" json:"contactTargetInfo" yaml:"contactTargetInfo"` }