interface MaintenanceWindowProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_workspacesthinclient.CfnEnvironment.MaintenanceWindowProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsworkspacesthinclient#CfnEnvironment_MaintenanceWindowProperty |
![]() | software.amazon.awscdk.services.workspacesthinclient.CfnEnvironment.MaintenanceWindowProperty |
![]() | aws_cdk.aws_workspacesthinclient.CfnEnvironment.MaintenanceWindowProperty |
![]() | aws-cdk-lib » aws_workspacesthinclient » CfnEnvironment » MaintenanceWindowProperty |
Describes the maintenance window for a thin client device.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_workspacesthinclient as workspacesthinclient } from 'aws-cdk-lib';
const maintenanceWindowProperty: workspacesthinclient.CfnEnvironment.MaintenanceWindowProperty = {
type: 'type',
// the properties below are optional
applyTimeOf: 'applyTimeOf',
daysOfTheWeek: ['daysOfTheWeek'],
endTimeHour: 123,
endTimeMinute: 123,
startTimeHour: 123,
startTimeMinute: 123,
};
Properties
Name | Type | Description |
---|---|---|
type | string | An option to select the default or custom maintenance window. |
apply | string | The option to set the maintenance window during the device local time or Universal Coordinated Time (UTC). |
days | string[] | The days of the week during which the maintenance window is open. |
end | number | The hour for the maintenance window end ( 00 - 23 ). |
end | number | The minutes for the maintenance window end ( 00 - 59 ). |
start | number | The hour for the maintenance window start ( 00 - 23 ). |
start | number | The minutes past the hour for the maintenance window start ( 00 - 59 ). |
type
Type:
string
An option to select the default or custom maintenance window.
applyTimeOf?
Type:
string
(optional)
The option to set the maintenance window during the device local time or Universal Coordinated Time (UTC).
daysOfTheWeek?
Type:
string[]
(optional)
The days of the week during which the maintenance window is open.
endTimeHour?
Type:
number
(optional)
The hour for the maintenance window end ( 00
- 23
).
endTimeMinute?
Type:
number
(optional)
The minutes for the maintenance window end ( 00
- 59
).
startTimeHour?
Type:
number
(optional)
The hour for the maintenance window start ( 00
- 23
).
startTimeMinute?
Type:
number
(optional)
The minutes past the hour for the maintenance window start ( 00
- 59
).