Show / Hide Table of Contents

Class DetectorEvents.GuardDutyFinding.ThreatDetectedByNameItem

(experimental) Type definition for ThreatDetectedByNameItem.

Inheritance
object
DetectorEvents.GuardDutyFinding.ThreatDetectedByNameItem
Implements
DetectorEvents.GuardDutyFinding.IThreatDetectedByNameItem
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class DetectorEvents.GuardDutyFinding.ThreatDetectedByNameItem : DetectorEvents.GuardDutyFinding.IThreatDetectedByNameItem
Syntax (vb)
Public Class DetectorEvents.GuardDutyFinding.ThreatDetectedByNameItem Implements DetectorEvents.GuardDutyFinding.IThreatDetectedByNameItem
Remarks

Stability: Experimental

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.GuardDuty.Events;

             var threatDetectedByNameItem = new ThreatDetectedByNameItem {
                 FilePaths = new [] { new ThreatDetectedByNameItemItem {
                     FileName = new [] { "fileName" },
                     FilePath = new [] { "filePath" },
                     Hash = new [] { "hash" },
                     VolumeArn = new [] { "volumeArn" }
                 } },
                 ItemCount = new [] { "itemCount" },
                 Name = new [] { "name" },
                 Severity = new [] { "severity" }
             };

Synopsis

Constructors

ThreatDetectedByNameItem()

(experimental) Type definition for ThreatDetectedByNameItem.

Properties

FilePaths

(experimental) filePaths property.

ItemCount

(experimental) itemCount property.

Name

(experimental) name property.

Severity

(experimental) severity property.

Constructors

ThreatDetectedByNameItem()

(experimental) Type definition for ThreatDetectedByNameItem.

public ThreatDetectedByNameItem()
Remarks

Stability: Experimental

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.GuardDuty.Events;

             var threatDetectedByNameItem = new ThreatDetectedByNameItem {
                 FilePaths = new [] { new ThreatDetectedByNameItemItem {
                     FileName = new [] { "fileName" },
                     FilePath = new [] { "filePath" },
                     Hash = new [] { "hash" },
                     VolumeArn = new [] { "volumeArn" }
                 } },
                 ItemCount = new [] { "itemCount" },
                 Name = new [] { "name" },
                 Severity = new [] { "severity" }
             };

Properties

FilePaths

(experimental) filePaths property.

public DetectorEvents.GuardDutyFinding.IThreatDetectedByNameItemItem[]? FilePaths { get; set; }
Property Value

IThreatDetectedByNameItemItem[]

Remarks

Specify an array of string values to match this event if the actual value of filePaths is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

ItemCount

(experimental) itemCount property.

public string[]? ItemCount { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of itemCount is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

Name

(experimental) name property.

public string[]? Name { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

Severity

(experimental) severity property.

public string[]? Severity { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of severity is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

Implements

DetectorEvents.GuardDutyFinding.IThreatDetectedByNameItem
Back to top Generated by DocFX