Interface CfnTopic.TopicSingularFilterConstantProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTopic.TopicSingularFilterConstantProperty.Jsii$Proxy
- Enclosing class:
CfnTopic
@Stability(Stable)
public static interface CfnTopic.TopicSingularFilterConstantProperty
extends software.amazon.jsii.JsiiSerializable
A structure that represents a singular filter constant, used in filters to specify a single value to match against.
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.quicksight.*;
TopicSingularFilterConstantProperty topicSingularFilterConstantProperty = TopicSingularFilterConstantProperty.builder()
.constantType("constantType")
.singularConstant("singularConstant")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTopic.TopicSingularFilterConstantPropertystatic final classAn implementation forCfnTopic.TopicSingularFilterConstantProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConstantType
The type of the singular filter constant.Valid values for this structure are
SINGULAR.- See Also:
-
getSingularConstant
The value of the singular filter constant.- See Also:
-
builder
-