Class CfnTopicPropsMixin.TopicSingularFilterConstantProperty
A structure that represents a singular filter constant, used in filters to specify a single value to match against.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTopicPropsMixin.TopicSingularFilterConstantProperty : CfnTopicPropsMixin.ITopicSingularFilterConstantProperty
Syntax (vb)
Public Class CfnTopicPropsMixin.TopicSingularFilterConstantProperty Implements CfnTopicPropsMixin.ITopicSingularFilterConstantProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins;
var topicSingularFilterConstantProperty = new TopicSingularFilterConstantProperty {
ConstantType = "constantType",
SingularConstant = "singularConstant"
};
Synopsis
Constructors
| TopicSingularFilterConstantProperty() | A structure that represents a singular filter constant, used in filters to specify a single value to match against. |
Properties
| ConstantType | The type of the singular filter constant. |
| SingularConstant | The value of the singular filter constant. |
Constructors
TopicSingularFilterConstantProperty()
A structure that represents a singular filter constant, used in filters to specify a single value to match against.
public TopicSingularFilterConstantProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins;
var topicSingularFilterConstantProperty = new TopicSingularFilterConstantProperty {
ConstantType = "constantType",
SingularConstant = "singularConstant"
};
Properties
ConstantType
The type of the singular filter constant.
public string? ConstantType { get; set; }
Property Value
Remarks
Valid values for this structure are SINGULAR .
SingularConstant
The value of the singular filter constant.
public string? SingularConstant { get; set; }