Interface ColumnRestriction
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ColumnRestriction.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:38.093Z")
@Stability(Stable)
public interface ColumnRestriction
extends software.amazon.jsii.JsiiSerializable
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.logs.*; ColumnRestriction columnRestriction = ColumnRestriction.builder() .comparison("comparison") // the properties below are optional .numberValue(123) .stringValue("stringValue") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forColumnRestriction
static final class
An implementation forColumnRestriction
-
Method Summary
Modifier and TypeMethodDescriptionstatic ColumnRestriction.Builder
builder()
Comparison operator to use.default Number
Number value to compare to.default String
String value to compare to.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComparison
Comparison operator to use. -
getNumberValue
Number value to compare to.Exactly one of 'stringValue' and 'numberValue' must be set.
-
getStringValue
String value to compare to.Exactly one of 'stringValue' and 'numberValue' must be set.
-
builder
- Returns:
- a
ColumnRestriction.Builder
ofColumnRestriction
-