Interface CfnWorkspace.LimitsPerLabelSetProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkspace.LimitsPerLabelSetProperty.Jsii$Proxy
- Enclosing class:
CfnWorkspace
@Stability(Stable)
public static interface CfnWorkspace.LimitsPerLabelSetProperty
extends software.amazon.jsii.JsiiSerializable
Label set and its associated limits.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.aps.*;
LimitsPerLabelSetProperty limitsPerLabelSetProperty = LimitsPerLabelSetProperty.builder()
.labelSet(List.of(LabelProperty.builder()
.name("name")
.value("value")
.build()))
.limits(LimitsPerLabelSetEntryProperty.builder()
.maxSeries(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkspace.LimitsPerLabelSetPropertystatic final classAn implementation forCfnWorkspace.LimitsPerLabelSetProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()An array of series labels.Limits that can be applied to a label set.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLabelSet
An array of series labels.- See Also:
-
getLimits
Limits that can be applied to a label set.- See Also:
-
builder
-