interface RemoteIpDetails4
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Events.DetectorEvents.GuardDutyFinding.RemoteIpDetails4 |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/events#DetectorEvents_GuardDutyFinding_RemoteIpDetails4 |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.events.DetectorEvents.GuardDutyFinding.RemoteIpDetails4 |
Python | aws_cdk.mixins_preview.aws_guardduty.events.DetectorEvents.GuardDutyFinding.RemoteIpDetails4 |
TypeScript | @aws-cdk/mixins-preview ยป aws_guardduty ยป events ยป DetectorEvents ยป GuardDutyFinding ยป RemoteIpDetails4 |
Type definition for RemoteIpDetails_4.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as guardduty_events } from '@aws-cdk/mixins-preview/aws-guardduty';
const remoteIpDetails4: guardduty_events.DetectorEvents.GuardDutyFinding.RemoteIpDetails4 = {
city: {
cityName: ['cityName'],
},
country: {
countryName: ['countryName'],
},
geoLocation: {
lat: ['lat'],
lon: ['lon'],
},
ipAddressV4: ['ipAddressV4'],
organization: {
asn: ['asn'],
asnOrg: ['asnOrg'],
isp: ['isp'],
org: ['org'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| city? | City4 | city property. |
| country? | Country4 | country property. |
| geo | Geo | geoLocation property. |
| ip | string[] | ipAddressV4 property. |
| organization? | Organization4 | organization property. |
city?
Type:
City4
(optional, default: Do not filter on this field)
city property.
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.
country?
Type:
Country4
(optional, default: Do not filter on this field)
country property.
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.
geoLocation?
Type:
Geo
(optional, default: Do not filter on this field)
geoLocation property.
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.
ipAddressV4?
Type:
string[]
(optional, default: Do not filter on this field)
ipAddressV4 property.
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.
organization?
Type:
Organization4
(optional, default: Do not filter on this field)
organization property.
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.

.NET
Go
Java
Python
TypeScript