interface TargetsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSMContacts.CfnPlan.TargetsProperty |
Java | software.amazon.awscdk.services.ssmcontacts.CfnPlan.TargetsProperty |
Python | aws_cdk.aws_ssmcontacts.CfnPlan.TargetsProperty |
TypeScript | @aws-cdk/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 * as ssmcontacts from '@aws-cdk/aws-ssmcontacts';
const targetsProperty: ssmcontacts.CfnPlan.TargetsProperty = {
channelTargetInfo: {
channelId: 'channelId',
retryIntervalInMinutes: 123,
},
contactTargetInfo: {
contactId: 'contactId',
isEssential: false,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | IResolvable | Channel | Information about the contact channel that Incident Manager engages. |
| contact | IResolvable | Contact | Information about the contact that Incident Manager engages. |
channelTargetInfo?
Type:
IResolvable | Channel
(optional)
Information about the contact channel that Incident Manager engages.
contactTargetInfo?
Type:
IResolvable | Contact
(optional)
Information about the contact that Incident Manager engages.

.NET
Java
Python
TypeScript