interface WeeklySettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSMContacts.Mixins.CfnRotationPropsMixin.WeeklySettingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssmcontacts/mixins#CfnRotationPropsMixin_WeeklySettingProperty |
Java | software.amazon.awscdk.mixins.preview.services.ssmcontacts.mixins.CfnRotationPropsMixin.WeeklySettingProperty |
Python | aws_cdk.mixins_preview.aws_ssmcontacts.mixins.CfnRotationPropsMixin.WeeklySettingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ssmcontacts » mixins » CfnRotationPropsMixin » 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 { mixins as ssmcontacts_mixins } from '@aws-cdk/mixins-preview/aws-ssmcontacts';
const weeklySettingProperty: ssmcontacts_mixins.CfnRotationPropsMixin.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
(optional)
The day of the week when weekly recurring on-call shift rotations begins.
handOffTime?
Type:
string
(optional)
The time of day when a weekly recurring on-call shift rotation begins.

.NET
Go
Java
Python
TypeScript