interface LimitsPerLabelSetEntryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.APS.CfnWorkspacePropsMixin.LimitsPerLabelSetEntryProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsaps#CfnWorkspacePropsMixin_LimitsPerLabelSetEntryProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.aps.CfnWorkspacePropsMixin.LimitsPerLabelSetEntryProperty |
Python | aws_cdk.cfn_property_mixins.aws_aps.CfnWorkspacePropsMixin.LimitsPerLabelSetEntryProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_aps » CfnWorkspacePropsMixin » LimitsPerLabelSetEntryProperty |
This structure contains the limits that apply to time series that match one label set.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_aps as aps } from '@aws-cdk/cfn-property-mixins';
const limitsPerLabelSetEntryProperty: aps.CfnWorkspacePropsMixin.LimitsPerLabelSetEntryProperty = {
maxSeries: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max | number | The maximum number of active series that can be ingested that match this label set. |
maxSeries?
Type:
number
(optional)
The maximum number of active series that can be ingested that match this label set.
Setting this to 0 causes no label set limit to be enforced, but it does cause Amazon Managed Service for Prometheus to vend label set metrics to CloudWatch

.NET
Go
Java
Python
TypeScript