interface RecurrenceRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApplicationSignals.Mixins.CfnServiceLevelObjectivePropsMixin.RecurrenceRuleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapplicationsignals/mixins#CfnServiceLevelObjectivePropsMixin_RecurrenceRuleProperty |
Java | software.amazon.awscdk.mixins.preview.services.applicationsignals.mixins.CfnServiceLevelObjectivePropsMixin.RecurrenceRuleProperty |
Python | aws_cdk.mixins_preview.aws_applicationsignals.mixins.CfnServiceLevelObjectivePropsMixin.RecurrenceRuleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_applicationsignals » mixins » CfnServiceLevelObjectivePropsMixin » RecurrenceRuleProperty |
The recurrence rule for the time exclusion window.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as applicationsignals_mixins } from '@aws-cdk/mixins-preview/aws-applicationsignals';
const recurrenceRuleProperty: applicationsignals_mixins.CfnServiceLevelObjectivePropsMixin.RecurrenceRuleProperty = {
expression: 'expression',
};
Properties
| Name | Type | Description |
|---|---|---|
| expression? | string | The following two rules are supported:. |
expression?
Type:
string
(optional)
The following two rules are supported:.
- rate(value unit) - The value must be a positive integer and the unit can be hour|day|month.
- cron - An expression which consists of six fields separated by white spaces: (minutes hours day_of_month month day_of_week year).

.NET
Go
Java
Python
TypeScript