aws-cdk-lib.aws_fsx.LustreMaintenanceTimeProps

interface LustreMaintenanceTimeProps

LanguageType name
.NETAmazon.CDK.AWS.FSx.LustreMaintenanceTimeProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsfsx#LustreMaintenanceTimeProps
Javasoftware.amazon.awscdk.services.fsx.LustreMaintenanceTimeProps
Pythonaws_cdk.aws_fsx.LustreMaintenanceTimeProps
TypeScript (source)aws-cdk-lib » 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 { aws_fsx as fsx } from 'aws-cdk-lib';
const lustreMaintenanceTimeProps: fsx.LustreMaintenanceTimeProps = {
  day: fsx.Weekday.MONDAY,
  hour: 123,
  minute: 123,
};

Properties

NameTypeDescription
dayWeekdayThe day of the week for maintenance to be performed.
hournumberThe hour of the day (from 0-24) for maintenance to be performed.
minutenumberThe 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.