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