Class GuardDutyFinding.RemotePortDetails
(experimental) Type definition for RemotePortDetails.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class GuardDutyFinding.RemotePortDetails : GuardDutyFinding.IRemotePortDetails
Syntax (vb)
Public Class GuardDutyFinding.RemotePortDetails Implements GuardDutyFinding.IRemotePortDetails
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 remotePortDetails = new RemotePortDetails {
Port = new [] { "port" },
PortName = new [] { "portName" }
};
Synopsis
Constructors
| RemotePortDetails() | (experimental) Type definition for RemotePortDetails. |
Properties
| Port | (experimental) port property. |
| PortName | (experimental) portName property. |
Constructors
RemotePortDetails()
(experimental) Type definition for RemotePortDetails.
public RemotePortDetails()
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 remotePortDetails = new RemotePortDetails {
Port = new [] { "port" },
PortName = new [] { "portName" }
};
Properties
Port
(experimental) port property.
public string[]? Port { get; set; }
Property Value
string[]
Remarks
Specify an array of string values to match this event if the actual value of port 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
PortName
(experimental) portName property.
public string[]? PortName { get; set; }
Property Value
string[]
Remarks
Specify an array of string values to match this event if the actual value of portName 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