Interface CfnEnvironment.MaintenanceWindowProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEnvironment.MaintenanceWindowProperty.Jsii$Proxy
Enclosing class:
CfnEnvironment

@Stability(Stable) public static interface CfnEnvironment.MaintenanceWindowProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.workspacesthinclient.*;
 MaintenanceWindowProperty maintenanceWindowProperty = MaintenanceWindowProperty.builder()
         .type("type")
         // the properties below are optional
         .applyTimeOf("applyTimeOf")
         .daysOfTheWeek(List.of("daysOfTheWeek"))
         .endTimeHour(123)
         .endTimeMinute(123)
         .startTimeHour(123)
         .startTimeMinute(123)
         .build();
 

See Also: