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