interface CfnContactChannelMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSMContacts.CfnContactChannelMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssmcontacts#CfnContactChannelMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssmcontacts.CfnContactChannelMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ssmcontacts.CfnContactChannelMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssmcontacts » CfnContactChannelMixinProps |
Properties for CfnContactChannelPropsMixin.
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 cfnContactChannelMixinProps: ssmcontacts.CfnContactChannelMixinProps = {
channelAddress: 'channelAddress',
channelName: 'channelName',
channelType: 'channelType',
contactId: 'contactId',
deferActivation: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | The details that Incident Manager uses when trying to engage the contact channel. |
| channel | string | The name of the contact channel. |
| channel | string | The type of the contact channel. Incident Manager supports three contact methods:. |
| contact | string | The Amazon Resource Name (ARN) of the contact you are adding the contact channel to. |
| defer | boolean | IResolvable | If you want to activate the channel at a later time, you can choose to defer activation. |
channelAddress?
Type:
string
(optional)
The details that Incident Manager uses when trying to engage the contact channel.
channelName?
Type:
string
(optional)
The name of the contact channel.
channelType?
Type:
string
(optional)
The type of the contact channel. Incident Manager supports three contact methods:.
- SMS
- VOICE
contactId?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the contact you are adding the contact channel to.
deferActivation?
Type:
boolean | IResolvable
(optional)
If you want to activate the channel at a later time, you can choose to defer activation.
Incident Manager can't engage your contact channel until it has been activated.

.NET
Go
Java
Python
TypeScript