interface WeeklySettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSMContacts.CfnRotation.WeeklySettingProperty |
Java | software.amazon.awscdk.services.ssmcontacts.CfnRotation.WeeklySettingProperty |
Python | aws_cdk.aws_ssmcontacts.CfnRotation.WeeklySettingProperty |
TypeScript | @aws-cdk/aws-ssmcontacts » CfnRotation » WeeklySettingProperty |
Information about rotations that recur weekly.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ssmcontacts from '@aws-cdk/aws-ssmcontacts';
const weeklySettingProperty: ssmcontacts.CfnRotation.WeeklySettingProperty = {
dayOfWeek: 'dayOfWeek',
handOffTime: 'handOffTime',
};
Properties
| Name | Type | Description |
|---|---|---|
| day | string | The day of the week when weekly recurring on-call shift rotations begins. |
| hand | string | The time of day when a weekly recurring on-call shift rotation begins. |
dayOfWeek
Type:
string
The day of the week when weekly recurring on-call shift rotations begins.
handOffTime
Type:
string
The time of day when a weekly recurring on-call shift rotation begins.

.NET
Java
Python
TypeScript