interface CoverageTimeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSMContacts.CfnRotation.CoverageTimeProperty |
Java | software.amazon.awscdk.services.ssmcontacts.CfnRotation.CoverageTimeProperty |
Python | aws_cdk.aws_ssmcontacts.CfnRotation.CoverageTimeProperty |
TypeScript | @aws-cdk/aws-ssmcontacts » CfnRotation » CoverageTimeProperty |
Information about when an on-call shift begins and ends.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ssmcontacts from '@aws-cdk/aws-ssmcontacts';
const coverageTimeProperty: ssmcontacts.CfnRotation.CoverageTimeProperty = {
endTime: 'endTime',
startTime: 'startTime',
};
Properties
| Name | Type | Description |
|---|---|---|
| end | string | Information about when an on-call rotation shift ends. |
| start | string | Information about when an on-call rotation shift begins. |
endTime
Type:
string
Information about when an on-call rotation shift ends.
startTime
Type:
string
Information about when an on-call rotation shift begins.

.NET
Java
Python
TypeScript