Interface CfnEnvironmentPropsMixin.MaintenanceWindowProperty

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

@Stability(Stable) public static interface CfnEnvironmentPropsMixin.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.cfnpropertymixins.services.workspacesthinclient.*;
 MaintenanceWindowProperty maintenanceWindowProperty = MaintenanceWindowProperty.builder()
         .applyTimeOf("applyTimeOf")
         .daysOfTheWeek(List.of("daysOfTheWeek"))
         .endTimeHour(123)
         .endTimeMinute(123)
         .startTimeHour(123)
         .startTimeMinute(123)
         .type("type")
         .build();
 

See Also: