Show / Hide Table of Contents

Class GuardDutyFinding.PortProbeActionItem

(experimental) Type definition for PortProbeActionItem.

Inheritance
object
GuardDutyFinding.PortProbeActionItem
Implements
GuardDutyFinding.IPortProbeActionItem
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 GuardDutyFinding.PortProbeActionItem : GuardDutyFinding.IPortProbeActionItem
Syntax (vb)
Public Class GuardDutyFinding.PortProbeActionItem Implements GuardDutyFinding.IPortProbeActionItem
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 portProbeActionItem = new PortProbeActionItem {
                 LocalIpDetails = new LocalIpDetails1 {
                     IpAddressV4 = new [] { "ipAddressV4" }
                 },
                 LocalPortDetails = new LocalPortDetails1 {
                     Port = new [] { "port" },
                     PortName = new [] { "portName" }
                 },
                 RemoteIpDetails = new RemoteIpDetails4 {
                     City = new City4 {
                         CityName = new [] { "cityName" }
                     },
                     Country = new Country4 {
                         CountryName = new [] { "countryName" }
                     },
                     GeoLocation = new GeoLocation1 {
                         Lat = new [] { "lat" },
                         Lon = new [] { "lon" }
                     },
                     IpAddressV4 = new [] { "ipAddressV4" },
                     Organization = new Organization4 {
                         Asn = new [] { "asn" },
                         AsnOrg = new [] { "asnOrg" },
                         Isp = new [] { "isp" },
                         Org = new [] { "org" }
                     }
                 }
             };

Synopsis

Constructors

PortProbeActionItem()

(experimental) Type definition for PortProbeActionItem.

Properties

LocalIpDetails

(experimental) localIpDetails property.

LocalPortDetails

(experimental) localPortDetails property.

RemoteIpDetails

(experimental) remoteIpDetails property.

Constructors

PortProbeActionItem()

(experimental) Type definition for PortProbeActionItem.

public PortProbeActionItem()
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 portProbeActionItem = new PortProbeActionItem {
                 LocalIpDetails = new LocalIpDetails1 {
                     IpAddressV4 = new [] { "ipAddressV4" }
                 },
                 LocalPortDetails = new LocalPortDetails1 {
                     Port = new [] { "port" },
                     PortName = new [] { "portName" }
                 },
                 RemoteIpDetails = new RemoteIpDetails4 {
                     City = new City4 {
                         CityName = new [] { "cityName" }
                     },
                     Country = new Country4 {
                         CountryName = new [] { "countryName" }
                     },
                     GeoLocation = new GeoLocation1 {
                         Lat = new [] { "lat" },
                         Lon = new [] { "lon" }
                     },
                     IpAddressV4 = new [] { "ipAddressV4" },
                     Organization = new Organization4 {
                         Asn = new [] { "asn" },
                         AsnOrg = new [] { "asnOrg" },
                         Isp = new [] { "isp" },
                         Org = new [] { "org" }
                     }
                 }
             };

Properties

LocalIpDetails

(experimental) localIpDetails property.

public GuardDutyFinding.ILocalIpDetails1? LocalIpDetails { get; set; }
Property Value

GuardDutyFinding.ILocalIpDetails1

Remarks

Specify an array of string values to match this event if the actual value of localIpDetails 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

LocalPortDetails

(experimental) localPortDetails property.

public GuardDutyFinding.ILocalPortDetails1? LocalPortDetails { get; set; }
Property Value

GuardDutyFinding.ILocalPortDetails1

Remarks

Specify an array of string values to match this event if the actual value of localPortDetails 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

RemoteIpDetails

(experimental) remoteIpDetails property.

public GuardDutyFinding.IRemoteIpDetails4? RemoteIpDetails { get; set; }
Property Value

GuardDutyFinding.IRemoteIpDetails4

Remarks

Specify an array of string values to match this event if the actual value of remoteIpDetails 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

GuardDutyFinding.IPortProbeActionItem
Back to top Generated by DocFX