interface CoverageTimeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSMContacts.CfnRotationPropsMixin.CoverageTimeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssmcontacts#CfnRotationPropsMixin_CoverageTimeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssmcontacts.CfnRotationPropsMixin.CoverageTimeProperty |
Python | aws_cdk.cfn_property_mixins.aws_ssmcontacts.CfnRotationPropsMixin.CoverageTimeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssmcontacts » CfnRotationPropsMixin » 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/cfn-property-mixins';
const coverageTimeProperty: ssmcontacts.CfnRotationPropsMixin.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
(optional)
Information about when an on-call rotation shift ends.
startTime?
Type:
string
(optional)
Information about when an on-call rotation shift begins.

.NET
Go
Java
Python
TypeScript