interface RollingIntervalProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ApplicationSignals.CfnServiceLevelObjectivePropsMixin.RollingIntervalProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapplicationsignals#CfnServiceLevelObjectivePropsMixin_RollingIntervalProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.applicationsignals.CfnServiceLevelObjectivePropsMixin.RollingIntervalProperty |
Python | aws_cdk.cfn_property_mixins.aws_applicationsignals.CfnServiceLevelObjectivePropsMixin.RollingIntervalProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_applicationsignals » CfnServiceLevelObjectivePropsMixin » 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/cfn-property-mixins';
const rollingIntervalProperty: applicationsignals.CfnServiceLevelObjectivePropsMixin.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
(optional)
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
(optional)
Specifies the rolling interval unit.

.NET
Go
Java
Python
TypeScript