Show / Hide Table of Contents

Class CfnPipePropsMixin.FilterCriteriaProperty

The collection of event patterns used to filter events.

Inheritance
object
CfnPipePropsMixin.FilterCriteriaProperty
Implements
CfnPipePropsMixin.IFilterCriteriaProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Pipes
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnPipePropsMixin.FilterCriteriaProperty : CfnPipePropsMixin.IFilterCriteriaProperty
Syntax (vb)
Public Class CfnPipePropsMixin.FilterCriteriaProperty Implements CfnPipePropsMixin.IFilterCriteriaProperty
Remarks

To remove a filter, specify a FilterCriteria object with an empty array of Filter objects.

For more information, see Events and Event Patterns in the Amazon EventBridge User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-filtercriteria.html

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.CfnPropertyMixins.AWS.Pipes;

             var filterCriteriaProperty = new FilterCriteriaProperty {
                 Filters = new [] { new FilterProperty {
                     Pattern = "pattern"
                 } }
             };

Synopsis

Constructors

FilterCriteriaProperty()

The collection of event patterns used to filter events.

Properties

Filters

The event patterns.

Constructors

FilterCriteriaProperty()

The collection of event patterns used to filter events.

public FilterCriteriaProperty()
Remarks

To remove a filter, specify a FilterCriteria object with an empty array of Filter objects.

For more information, see Events and Event Patterns in the Amazon EventBridge User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-filtercriteria.html

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.CfnPropertyMixins.AWS.Pipes;

             var filterCriteriaProperty = new FilterCriteriaProperty {
                 Filters = new [] { new FilterProperty {
                     Pattern = "pattern"
                 } }
             };

Properties

Filters

The event patterns.

public object? Filters { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-filtercriteria.html#cfn-pipes-pipe-filtercriteria-filters

Type union: either IResolvable or (either IResolvable or CfnPipePropsMixin.IFilterProperty)[]

Implements

CfnPipePropsMixin.IFilterCriteriaProperty
Back to top Generated by DocFX