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