interface RecurrenceRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ApplicationSignals.CfnServiceLevelObjectivePropsMixin.RecurrenceRuleProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapplicationsignals#CfnServiceLevelObjectivePropsMixin_RecurrenceRuleProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.applicationsignals.CfnServiceLevelObjectivePropsMixin.RecurrenceRuleProperty |
Python | aws_cdk.cfn_property_mixins.aws_applicationsignals.CfnServiceLevelObjectivePropsMixin.RecurrenceRuleProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_applicationsignals » 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 { aws_applicationsignals as applicationsignals } from '@aws-cdk/cfn-property-mixins';
const recurrenceRuleProperty: applicationsignals.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