interface LustreMaintenanceTimeProps
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.FSx.LustreMaintenanceTimeProps | 
  Java | software.amazon.awscdk.services.fsx.LustreMaintenanceTimeProps | 
  Python | aws_cdk.aws_fsx.LustreMaintenanceTimeProps | 
  TypeScript (source) | @aws-cdk/aws-fsx » LustreMaintenanceTimeProps | 
Properties required for setting up a weekly maintenance time.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as fsx from '@aws-cdk/aws-fsx';
const lustreMaintenanceTimeProps: fsx.LustreMaintenanceTimeProps = {
  day: fsx.Weekday.MONDAY,
  hour: 123,
  minute: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| day | Weekday | The day of the week for maintenance to be performed. | 
| hour | number | The hour of the day (from 0-24) for maintenance to be performed. | 
| minute | number | The minute of the hour (from 0-59) for maintenance to be performed. | 
day
Type:
Weekday
The day of the week for maintenance to be performed.
hour
Type:
number
The hour of the day (from 0-24) for maintenance to be performed.
minute
Type:
number
The minute of the hour (from 0-59) for maintenance to be performed.

 .NET
 Java
 Python
 TypeScript (