LustreMaintenanceTimeProps

class aws_cdk.aws_fsx.LustreMaintenanceTimeProps(*, day, hour, minute)

Bases: object

Properties required for setting up a weekly maintenance time.

Parameters:
  • day (Weekday) – The day of the week for maintenance to be performed.

  • hour (Union[int, float]) – The hour of the day (from 0-24) for maintenance to be performed.

  • minute (Union[int, float]) – The minute of the hour (from 0-59) for maintenance to be performed.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_fsx as fsx

lustre_maintenance_time_props = fsx.LustreMaintenanceTimeProps(
    day=fsx.Weekday.MONDAY,
    hour=123,
    minute=123
)

Attributes

day

The day of the week for maintenance to be performed.

hour

The hour of the day (from 0-24) for maintenance to be performed.

minute

The minute of the hour (from 0-59) for maintenance to be performed.