interface TimeBasedAutoScalingProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.OpsWorks.CfnInstance.TimeBasedAutoScalingProperty | 
|  Java | software.amazon.awscdk.services.opsworks.CfnInstance.TimeBasedAutoScalingProperty | 
|  Python | aws_cdk.aws_opsworks.CfnInstance.TimeBasedAutoScalingProperty | 
|  TypeScript | @aws-cdk/aws-opsworks»CfnInstance»TimeBasedAutoScalingProperty | 
Describes an instance's time-based auto scaling configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as opsworks from '@aws-cdk/aws-opsworks';
const timeBasedAutoScalingProperty: opsworks.CfnInstance.TimeBasedAutoScalingProperty = {
  friday: {
    fridayKey: 'friday',
  },
  monday: {
    mondayKey: 'monday',
  },
  saturday: {
    saturdayKey: 'saturday',
  },
  sunday: {
    sundayKey: 'sunday',
  },
  thursday: {
    thursdayKey: 'thursday',
  },
  tuesday: {
    tuesdayKey: 'tuesday',
  },
  wednesday: {
    wednesdayKey: 'wednesday',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| friday? | IResolvable | { [string]: string } | The schedule for Friday. | 
| monday? | IResolvable | { [string]: string } | The schedule for Monday. | 
| saturday? | IResolvable | { [string]: string } | The schedule for Saturday. | 
| sunday? | IResolvable | { [string]: string } | The schedule for Sunday. | 
| thursday? | IResolvable | { [string]: string } | The schedule for Thursday. | 
| tuesday? | IResolvable | { [string]: string } | The schedule for Tuesday. | 
| wednesday? | IResolvable | { [string]: string } | The schedule for Wednesday. | 
friday?
Type:
IResolvable | { [string]: string }
(optional)
The schedule for Friday.
monday?
Type:
IResolvable | { [string]: string }
(optional)
The schedule for Monday.
saturday?
Type:
IResolvable | { [string]: string }
(optional)
The schedule for Saturday.
sunday?
Type:
IResolvable | { [string]: string }
(optional)
The schedule for Sunday.
thursday?
Type:
IResolvable | { [string]: string }
(optional)
The schedule for Thursday.
tuesday?
Type:
IResolvable | { [string]: string }
(optional)
The schedule for Tuesday.
wednesday?
Type:
IResolvable | { [string]: string }
(optional)
The schedule for Wednesday.
