interface ChannelTargetInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSMContacts.Mixins.CfnContactPropsMixin.ChannelTargetInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssmcontacts/mixins#CfnContactPropsMixin_ChannelTargetInfoProperty |
Java | software.amazon.awscdk.mixins.preview.services.ssmcontacts.mixins.CfnContactPropsMixin.ChannelTargetInfoProperty |
Python | aws_cdk.mixins_preview.aws_ssmcontacts.mixins.CfnContactPropsMixin.ChannelTargetInfoProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ssmcontacts » mixins » CfnContactPropsMixin » ChannelTargetInfoProperty |
Information about the contact channel that Incident Manager uses to engage the contact.
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 channelTargetInfoProperty: ssmcontacts_mixins.CfnContactPropsMixin.ChannelTargetInfoProperty = {
channelId: 'channelId',
retryIntervalInMinutes: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | The Amazon Resource Name (ARN) of the contact channel. |
| retry | number | The number of minutes to wait before retrying to send engagement if the engagement initially failed. |
channelId?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the contact channel.
retryIntervalInMinutes?
Type:
number
(optional)
The number of minutes to wait before retrying to send engagement if the engagement initially failed.

.NET
Go
Java
Python
TypeScript