Class FilterReference
A reference to a Filter resource.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
FilterName
The Name of the Filter resource.
public string FilterName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated