interface MonthlySettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSMContacts.Mixins.CfnRotationPropsMixin.MonthlySettingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssmcontacts/mixins#CfnRotationPropsMixin_MonthlySettingProperty |
Java | software.amazon.awscdk.mixins.preview.services.ssmcontacts.mixins.CfnRotationPropsMixin.MonthlySettingProperty |
Python | aws_cdk.mixins_preview.aws_ssmcontacts.mixins.CfnRotationPropsMixin.MonthlySettingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ssmcontacts » mixins » CfnRotationPropsMixin » MonthlySettingProperty |
Information about on-call rotations that recur monthly.
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 monthlySettingProperty: ssmcontacts_mixins.CfnRotationPropsMixin.MonthlySettingProperty = {
dayOfMonth: 123,
handOffTime: 'handOffTime',
};
Properties
| Name | Type | Description |
|---|---|---|
| day | number | The day of the month when monthly recurring on-call rotations begin. |
| hand | string | The time of day when a monthly recurring on-call shift rotation begins. |
dayOfMonth?
Type:
number
(optional)
The day of the month when monthly recurring on-call rotations begin.
handOffTime?
Type:
string
(optional)
The time of day when a monthly recurring on-call shift rotation begins.

.NET
Go
Java
Python
TypeScript