Interface CfnTelemetryRule.AdvancedFieldSelectorProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTelemetryRule.AdvancedFieldSelectorProperty.Jsii$Proxy
- Enclosing class:
CfnTelemetryRule
@Stability(Stable)
public static interface CfnTelemetryRule.AdvancedFieldSelectorProperty
extends software.amazon.jsii.JsiiSerializable
Defines criteria for selecting resources based on field values.
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.observabilityadmin.*;
AdvancedFieldSelectorProperty advancedFieldSelectorProperty = AdvancedFieldSelectorProperty.builder()
.endsWith(List.of("endsWith"))
.equalTo(List.of("equalTo"))
.field("field")
.notEndsWith(List.of("notEndsWith"))
.notEquals(List.of("notEquals"))
.notStartsWith(List.of("notStartsWith"))
.startsWith(List.of("startsWith"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTelemetryRule.AdvancedFieldSelectorPropertystatic final classAn implementation forCfnTelemetryRule.AdvancedFieldSelectorProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Matches if the field value ends with the specified value.Matches if the field value equals the specified value.default StringgetField()The name of the field to use for selection.Matches if the field value does not end with the specified value.Matches if the field value does not equal the specified value.Matches if the field value does not start with the specified value.Matches if the field value starts with the specified value.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEndsWith
Matches if the field value ends with the specified value.- See Also:
-
getEqualTo
Matches if the field value equals the specified value.- See Also:
-
getField
The name of the field to use for selection.- See Also:
-
getNotEndsWith
Matches if the field value does not end with the specified value.- See Also:
-
getNotEquals
Matches if the field value does not equal the specified value.- See Also:
-
getNotStartsWith
Matches if the field value does not start with the specified value.- See Also:
-
getStartsWith
Matches if the field value starts with the specified value.- See Also:
-
builder
-