interface ContactTargetInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSMContacts.Mixins.CfnContactPropsMixin.ContactTargetInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssmcontacts/mixins#CfnContactPropsMixin_ContactTargetInfoProperty |
Java | software.amazon.awscdk.mixins.preview.services.ssmcontacts.mixins.CfnContactPropsMixin.ContactTargetInfoProperty |
Python | aws_cdk.mixins_preview.aws_ssmcontacts.mixins.CfnContactPropsMixin.ContactTargetInfoProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ssmcontacts » mixins » CfnContactPropsMixin » 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 { mixins as ssmcontacts_mixins } from '@aws-cdk/mixins-preview/aws-ssmcontacts';
const contactTargetInfoProperty: ssmcontacts_mixins.CfnContactPropsMixin.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