Show / Hide Table of Contents

Class FilterReference

A reference to a Filter resource.

Inheritance
object
FilterReference
Implements
IFilterReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Interfaces.GuardDuty
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class FilterReference : IFilterReference
Syntax (vb)
Public Class FilterReference Implements IFilterReference
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.Interfaces.GuardDuty;

            var filterReference = new FilterReference {
                DetectorId = "detectorId",
                FilterName = "filterName"
            };

Synopsis

Constructors

FilterReference()

A reference to a Filter resource.

Properties

DetectorId

The DetectorId of the Filter resource.

FilterName

The Name of the Filter resource.

Constructors

FilterReference()

A reference to a Filter resource.

public FilterReference()
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.Interfaces.GuardDuty;

            var filterReference = new FilterReference {
                DetectorId = "detectorId",
                FilterName = "filterName"
            };

Properties

DetectorId

The DetectorId of the Filter resource.

public string DetectorId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

FilterName

The Name of the Filter resource.

public string FilterName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IFilterReference
Back to top Generated by DocFX