interface ShiftCoverageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSMContacts.Mixins.CfnRotationPropsMixin.ShiftCoverageProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssmcontacts/mixins#CfnRotationPropsMixin_ShiftCoverageProperty |
Java | software.amazon.awscdk.mixins.preview.services.ssmcontacts.mixins.CfnRotationPropsMixin.ShiftCoverageProperty |
Python | aws_cdk.mixins_preview.aws_ssmcontacts.mixins.CfnRotationPropsMixin.ShiftCoverageProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ssmcontacts » mixins » CfnRotationPropsMixin » ShiftCoverageProperty |
Information about the days of the week that the on-call rotation coverage includes.
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 shiftCoverageProperty: ssmcontacts_mixins.CfnRotationPropsMixin.ShiftCoverageProperty = {
coverageTimes: [{
endTime: 'endTime',
startTime: 'startTime',
}],
dayOfWeek: 'dayOfWeek',
};
Properties
| Name | Type | Description |
|---|---|---|
| coverage | IResolvable | (IResolvable | Coverage)[] | The start and end times of the shift. |
| day | string | A list of days on which the schedule is active. |
coverageTimes?
Type:
IResolvable | (IResolvable | Coverage)[]
(optional)
The start and end times of the shift.
dayOfWeek?
Type:
string
(optional)
A list of days on which the schedule is active.

.NET
Go
Java
Python
TypeScript