Class GuardDutyFinding.RemoteIpDetails
(experimental) Type definition for RemoteIpDetails.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class GuardDutyFinding.RemoteIpDetails : GuardDutyFinding.IRemoteIpDetails
Syntax (vb)
Public Class GuardDutyFinding.RemoteIpDetails Implements GuardDutyFinding.IRemoteIpDetails
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 remoteIpDetails = new RemoteIpDetails {
City = new City {
CityName = new [] { "cityName" }
},
Country = new Country {
CountryName = new [] { "countryName" }
},
GeoLocation = new GeoLocation {
Lat = new [] { "lat" },
Lon = new [] { "lon" }
},
IpAddressV4 = new [] { "ipAddressV4" },
Organization = new Organization {
Asn = new [] { "asn" },
AsnOrg = new [] { "asnOrg" },
Isp = new [] { "isp" },
Org = new [] { "org" }
}
};
Synopsis
Constructors
| RemoteIpDetails() | (experimental) Type definition for RemoteIpDetails. |
Properties
| City | (experimental) city property. |
| Country | (experimental) country property. |
| GeoLocation | (experimental) geoLocation property. |
| IpAddressV4 | (experimental) ipAddressV4 property. |
| Organization | (experimental) organization property. |
Constructors
RemoteIpDetails()
(experimental) Type definition for RemoteIpDetails.
public RemoteIpDetails()
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 remoteIpDetails = new RemoteIpDetails {
City = new City {
CityName = new [] { "cityName" }
},
Country = new Country {
CountryName = new [] { "countryName" }
},
GeoLocation = new GeoLocation {
Lat = new [] { "lat" },
Lon = new [] { "lon" }
},
IpAddressV4 = new [] { "ipAddressV4" },
Organization = new Organization {
Asn = new [] { "asn" },
AsnOrg = new [] { "asnOrg" },
Isp = new [] { "isp" },
Org = new [] { "org" }
}
};
Properties
City
(experimental) city property.
public GuardDutyFinding.ICity? City { get; set; }
Property Value
Remarks
Specify an array of string values to match this event if the actual value of city 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
Country
(experimental) country property.
public GuardDutyFinding.ICountry? Country { get; set; }
Property Value
Remarks
Specify an array of string values to match this event if the actual value of country 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
GeoLocation
(experimental) geoLocation property.
public GuardDutyFinding.IGeoLocation? GeoLocation { get; set; }
Property Value
Remarks
Specify an array of string values to match this event if the actual value of geoLocation 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
IpAddressV4
(experimental) ipAddressV4 property.
public string[]? IpAddressV4 { get; set; }
Property Value
string[]
Remarks
Specify an array of string values to match this event if the actual value of ipAddressV4 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
Organization
(experimental) organization property.
public GuardDutyFinding.IOrganization? Organization { get; set; }
Property Value
GuardDutyFinding.IOrganization
Remarks
Specify an array of string values to match this event if the actual value of organization 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