interface CoverageTimeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSMContacts.CfnRotation.CoverageTimeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsssmcontacts#CfnRotation_CoverageTimeProperty |
Java | software.amazon.awscdk.services.ssmcontacts.CfnRotation.CoverageTimeProperty |
Python | aws_cdk.aws_ssmcontacts.CfnRotation.CoverageTimeProperty |
TypeScript | aws-cdk-lib » 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 { aws_ssmcontacts as ssmcontacts } from 'aws-cdk-lib';
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
Go
Java
Python
TypeScript