aws-cdk-lib.aws_ssmcontacts.CfnContact.TargetsProperty

interface TargetsProperty

LanguageType name
.NETAmazon.CDK.AWS.SSMContacts.CfnContact.TargetsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsssmcontacts#CfnContact_TargetsProperty
Javasoftware.amazon.awscdk.services.ssmcontacts.CfnContact.TargetsProperty
Pythonaws_cdk.aws_ssmcontacts.CfnContact.TargetsProperty
TypeScript aws-cdk-lib » aws_ssmcontacts » CfnContact » 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.CfnContact.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 | ContactTargetInfoPropertyThe contact that Incident Manager is engaging during an incident.

channelTargetInfo?

Type: IResolvable | ChannelTargetInfoProperty (optional)

Information about the contact channel that Incident Manager engages.


contactTargetInfo?

Type: IResolvable | ContactTargetInfoProperty (optional)

The contact that Incident Manager is engaging during an incident.