interface RollingIntervalProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_applicationsignals.CfnServiceLevelObjective.RollingIntervalProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsapplicationsignals#CfnServiceLevelObjective_RollingIntervalProperty |
Java | software.amazon.awscdk.services.applicationsignals.CfnServiceLevelObjective.RollingIntervalProperty |
Python | aws_cdk.aws_applicationsignals.CfnServiceLevelObjective.RollingIntervalProperty |
TypeScript | aws-cdk-lib » aws_applicationsignals » CfnServiceLevelObjective » RollingIntervalProperty |
If the interval for this SLO is a rolling interval, this structure contains the interval specifications.
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-lib';
const rollingIntervalProperty: applicationsignals.CfnServiceLevelObjective.RollingIntervalProperty = {
duration: 123,
durationUnit: 'durationUnit',
};
Properties
| Name | Type | Description |
|---|---|---|
| duration | number | Specifies the duration of each rolling interval. |
| duration | string | Specifies the rolling interval unit. |
duration
Type:
number
Specifies the duration of each rolling interval.
For example, if Duration is 7 and DurationUnit is DAY , each rolling interval is seven days.
durationUnit
Type:
string
Specifies the rolling interval unit.

.NET
Go
Java
Python
TypeScript