interface WeeklySettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSMContacts.CfnRotationPropsMixin.WeeklySettingProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssmcontacts#CfnRotationPropsMixin_WeeklySettingProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssmcontacts.CfnRotationPropsMixin.WeeklySettingProperty |
Python | aws_cdk.cfn_property_mixins.aws_ssmcontacts.CfnRotationPropsMixin.WeeklySettingProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssmcontacts » 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 { aws_ssmcontacts as ssmcontacts } from '@aws-cdk/cfn-property-mixins';
const weeklySettingProperty: ssmcontacts.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