interface CfnRotationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSMContacts.Mixins.CfnRotationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssmcontacts/mixins#CfnRotationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ssmcontacts.mixins.CfnRotationMixinProps |
Python | aws_cdk.mixins_preview.aws_ssmcontacts.mixins.CfnRotationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ssmcontacts » mixins » CfnRotationMixinProps |
Properties for CfnRotationPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmcontacts-rotation.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 cfnRotationMixinProps: ssmcontacts_mixins.CfnRotationMixinProps = {
contactIds: ['contactIds'],
name: 'name',
recurrence: {
dailySettings: ['dailySettings'],
monthlySettings: [{
dayOfMonth: 123,
handOffTime: 'handOffTime',
}],
numberOfOnCalls: 123,
recurrenceMultiplier: 123,
shiftCoverages: [{
coverageTimes: [{
endTime: 'endTime',
startTime: 'startTime',
}],
dayOfWeek: 'dayOfWeek',
}],
weeklySettings: [{
dayOfWeek: 'dayOfWeek',
handOffTime: 'handOffTime',
}],
},
startTime: 'startTime',
tags: [{
key: 'key',
value: 'value',
}],
timeZoneId: 'timeZoneId',
};
Properties
| Name | Type | Description |
|---|---|---|
| contact | string[] | The Amazon Resource Names (ARNs) of the contacts to add to the rotation. |
| name? | string | The name for the rotation. |
| recurrence? | IResolvable | Recurrence | Information about the rule that specifies when shift team members rotate. |
| start | string | The date and time the rotation goes into effect. |
| tags? | Cfn[] | Optional metadata to assign to the rotation. |
| time | string | The time zone to base the rotation’s activity on, in Internet Assigned Numbers Authority (IANA) format. |
contactIds?
Type:
string[]
(optional)
The Amazon Resource Names (ARNs) of the contacts to add to the rotation.
Only the
PERSONALcontact type is supported. The contact typesESCALATIONandONCALL_SCHEDULEare not supported for this operation.
The order in which you list the contacts is their shift order in the rotation schedule.
name?
Type:
string
(optional)
The name for the rotation.
recurrence?
Type:
IResolvable | Recurrence
(optional)
Information about the rule that specifies when shift team members rotate.
startTime?
Type:
string
(optional)
The date and time the rotation goes into effect.
tags?
Type:
Cfn[]
(optional)
Optional metadata to assign to the rotation.
Tags enable you to categorize a resource in different ways, such as by purpose, owner, or environment. For more information, see Tagging Incident Manager resources in the Incident Manager User Guide .
timeZoneId?
Type:
string
(optional)
The time zone to base the rotation’s activity on, in Internet Assigned Numbers Authority (IANA) format.
For example: "America/Los_Angeles", "UTC", or "Asia/Seoul". For more information, see the Time Zone Database on the IANA website.
Designators for time zones that don’t support Daylight Savings Time rules, such as Pacific Standard Time (PST), are not supported.

.NET
Go
Java
Python
TypeScript