aws-cdk-lib.aws_ssmcontacts.CfnPlan.TargetsProperty

interface TargetsProperty

LanguageType name
.NETAmazon.CDK.AWS.SSMContacts.CfnPlan.TargetsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsssmcontacts#CfnPlan_TargetsProperty
Javasoftware.amazon.awscdk.services.ssmcontacts.CfnPlan.TargetsProperty
Pythonaws_cdk.aws_ssmcontacts.CfnPlan.TargetsProperty
TypeScript aws-cdk-lib » aws_ssmcontacts » CfnPlan » TargetsProperty

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 { aws_ssmcontacts as ssmcontacts } from 'aws-cdk-lib';
const targetsProperty: ssmcontacts.CfnPlan.TargetsProperty = {
  channelTargetInfo: {
    channelId: 'channelId',
    retryIntervalInMinutes: 123,
  },
  contactTargetInfo: {
    contactId: 'contactId',
    isEssential: false,
  },
};

Properties

NameTypeDescription
channelTargetInfo?IResolvable | ChannelTargetInfoPropertyInformation about the contact channel that Incident Manager engages.
contactTargetInfo?IResolvable | ContactTargetInfoPropertyInformation about the contact that Incident Manager engages.

channelTargetInfo?

Type: IResolvable | ChannelTargetInfoProperty (optional)

Information about the contact channel that Incident Manager engages.


contactTargetInfo?

Type: IResolvable | ContactTargetInfoProperty (optional)

Information about the contact that Incident Manager engages.