interface MaintenanceScheduleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Timestream.CfnInfluxDBInstancePropsMixin.MaintenanceScheduleProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstimestream#CfnInfluxDBInstancePropsMixin_MaintenanceScheduleProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.timestream.CfnInfluxDBInstancePropsMixin.MaintenanceScheduleProperty |
Python | aws_cdk.cfn_property_mixins.aws_timestream.CfnInfluxDBInstancePropsMixin.MaintenanceScheduleProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_timestream » CfnInfluxDBInstancePropsMixin » MaintenanceScheduleProperty |
The maintenance schedule for the InfluxDB instance.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_timestream as timestream } from '@aws-cdk/cfn-property-mixins';
const maintenanceScheduleProperty: timestream.CfnInfluxDBInstancePropsMixin.MaintenanceScheduleProperty = {
preferredMaintenanceWindow: 'preferredMaintenanceWindow',
timezone: 'timezone',
};
Properties
| Name | Type | Description |
|---|---|---|
| preferred | string | The preferred maintenance window in format ddd:HH:MM-ddd:HH:MM. |
| timezone? | string | The IANA timezone identifier for the maintenance schedule. |
preferredMaintenanceWindow?
Type:
string
(optional)
The preferred maintenance window in format ddd:HH:MM-ddd:HH:MM.
timezone?
Type:
string
(optional)
The IANA timezone identifier for the maintenance schedule.

.NET
Go
Java
Python
TypeScript