aws-cdk-lib.aws_opsworks.CfnInstance.TimeBasedAutoScalingProperty

interface TimeBasedAutoScalingProperty

LanguageType name
.NETAmazon.CDK.AWS.OpsWorks.CfnInstance.TimeBasedAutoScalingProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsopsworks#CfnInstance_TimeBasedAutoScalingProperty
Javasoftware.amazon.awscdk.services.opsworks.CfnInstance.TimeBasedAutoScalingProperty
Pythonaws_cdk.aws_opsworks.CfnInstance.TimeBasedAutoScalingProperty
TypeScript aws-cdk-lib » 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 { aws_opsworks as opsworks } from 'aws-cdk-lib';
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

NameTypeDescription
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.