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: