interface ContactTargetInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSMContacts.CfnPlan.ContactTargetInfoProperty |
Java | software.amazon.awscdk.services.ssmcontacts.CfnPlan.ContactTargetInfoProperty |
Python | aws_cdk.aws_ssmcontacts.CfnPlan.ContactTargetInfoProperty |
TypeScript | @aws-cdk/aws-ssmcontacts » CfnPlan » ContactTargetInfoProperty |
The contact that Incident Manager is engaging during an incident.
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 contactTargetInfoProperty: ssmcontacts.CfnPlan.ContactTargetInfoProperty = {
contactId: 'contactId',
isEssential: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| contact | string | The Amazon Resource Name (ARN) of the contact. |
| is | boolean | IResolvable | A Boolean value determining if the contact's acknowledgement stops the progress of stages in the plan. |
contactId
Type:
string
The Amazon Resource Name (ARN) of the contact.
isEssential
Type:
boolean | IResolvable
A Boolean value determining if the contact's acknowledgement stops the progress of stages in the plan.

.NET
Java
Python
TypeScript