interface ContactTargetInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSMContacts.CfnPlanPropsMixin.ContactTargetInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssmcontacts#CfnPlanPropsMixin_ContactTargetInfoProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssmcontacts.CfnPlanPropsMixin.ContactTargetInfoProperty |
Python | aws_cdk.cfn_property_mixins.aws_ssmcontacts.CfnPlanPropsMixin.ContactTargetInfoProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssmcontacts » CfnPlanPropsMixin » 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 { aws_ssmcontacts as ssmcontacts } from '@aws-cdk/cfn-property-mixins';
const contactTargetInfoProperty: ssmcontacts.CfnPlanPropsMixin.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
(optional)
The Amazon Resource Name (ARN) of the contact.
isEssential?
Type:
boolean | IResolvable
(optional)
A Boolean value determining if the contact's acknowledgement stops the progress of stages in the plan.

.NET
Go
Java
Python
TypeScript