interface ScheduleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ComputeOptimizer.CfnAutomationRule.ScheduleProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscomputeoptimizer#CfnAutomationRule_ScheduleProperty |
Java | software.amazon.awscdk.services.computeoptimizer.CfnAutomationRule.ScheduleProperty |
Python | aws_cdk.aws_computeoptimizer.CfnAutomationRule.ScheduleProperty |
TypeScript | aws-cdk-lib » aws_computeoptimizer » CfnAutomationRule » ScheduleProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_computeoptimizer as computeoptimizer } from 'aws-cdk-lib';
const scheduleProperty: computeoptimizer.CfnAutomationRule.ScheduleProperty = {
executionWindowInMinutes: 123,
scheduleExpression: 'scheduleExpression',
scheduleExpressionTimezone: 'scheduleExpressionTimezone',
};
Properties
| Name | Type | Description |
|---|---|---|
| execution | number | Execution window duration in minutes. |
| schedule | string | Schedule expression (e.g., cron or rate expression). |
| schedule | string | IANA timezone identifier. |
executionWindowInMinutes?
Type:
number
(optional)
Execution window duration in minutes.
scheduleExpression?
Type:
string
(optional)
Schedule expression (e.g., cron or rate expression).
scheduleExpressionTimezone?
Type:
string
(optional)
IANA timezone identifier.

.NET
Go
Java
Python
TypeScript