interface CfnContactMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSMContacts.CfnContactMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssmcontacts#CfnContactMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssmcontacts.CfnContactMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ssmcontacts.CfnContactMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssmcontacts » CfnContactMixinProps |
Properties for CfnContactPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmcontacts-contact.html
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 cfnContactMixinProps: ssmcontacts.CfnContactMixinProps = {
alias: 'alias',
displayName: 'displayName',
plan: [{
durationInMinutes: 123,
rotationIds: ['rotationIds'],
targets: [{
channelTargetInfo: {
channelId: 'channelId',
retryIntervalInMinutes: 123,
},
contactTargetInfo: {
contactId: 'contactId',
isEssential: false,
},
}],
}],
tags: [{
key: 'key',
value: 'value',
}],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| alias? | string | The unique and identifiable alias of the contact or escalation plan. |
| display | string | The full name of the contact or escalation plan. |
| plan? | IResolvable | (IResolvable | Stage)[] | A list of stages. |
| tags? | Cfn[] | |
| type? | string | The type of contact. |
alias?
Type:
string
(optional)
The unique and identifiable alias of the contact or escalation plan.
displayName?
Type:
string
(optional)
The full name of the contact or escalation plan.
plan?
Type:
IResolvable | (IResolvable | Stage)[]
(optional)
A list of stages.
A contact has an engagement plan with stages that contact specified contact channels. An escalation plan uses stages that contact specified contacts.
tags?
Type:
Cfn[]
(optional)
type?
Type:
string
(optional)
The type of contact.
PERSONAL: A single, individual contact.ESCALATION: An escalation plan.ONCALL_SCHEDULE: An on-call schedule.

.NET
Go
Java
Python
TypeScript