interface ExclusionWindowProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApplicationSignals.Mixins.CfnServiceLevelObjectivePropsMixin.ExclusionWindowProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapplicationsignals/mixins#CfnServiceLevelObjectivePropsMixin_ExclusionWindowProperty |
Java | software.amazon.awscdk.mixins.preview.services.applicationsignals.mixins.CfnServiceLevelObjectivePropsMixin.ExclusionWindowProperty |
Python | aws_cdk.mixins_preview.aws_applicationsignals.mixins.CfnServiceLevelObjectivePropsMixin.ExclusionWindowProperty |
TypeScript | @aws-cdk/mixins-preview » aws_applicationsignals » mixins » CfnServiceLevelObjectivePropsMixin » ExclusionWindowProperty |
The time window to be excluded from the SLO performance metrics.
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 exclusionWindowProperty: applicationsignals_mixins.CfnServiceLevelObjectivePropsMixin.ExclusionWindowProperty = {
reason: 'reason',
recurrenceRule: {
expression: 'expression',
},
startTime: 'startTime',
window: {
duration: 123,
durationUnit: 'durationUnit',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| reason? | string | The reason for the time exclusion windows. |
| recurrence | IResolvable | Recurrence | The recurrence rule for the time exclusion window. |
| start | string | The start time of the time exclusion window. |
| window? | IResolvable | Window | The time exclusion window. |
reason?
Type:
string
(optional, default: "No reason")
The reason for the time exclusion windows.
For example, maintenance.
recurrenceRule?
Type:
IResolvable | Recurrence
(optional)
The recurrence rule for the time exclusion window.
startTime?
Type:
string
(optional)
The start time of the time exclusion window.
window?
Type:
IResolvable | Window
(optional)
The time exclusion window.

.NET
Go
Java
Python
TypeScript