Interface DetectorEvents.GuardDutyFinding.RemoteIpDetails1

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
DetectorEvents.GuardDutyFinding.RemoteIpDetails1.Jsii$Proxy
Enclosing class:
DetectorEvents.GuardDutyFinding

@Stability(Experimental) public static interface DetectorEvents.GuardDutyFinding.RemoteIpDetails1 extends software.amazon.jsii.JsiiSerializable
(experimental) Type definition for RemoteIpDetails_1.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.guardduty.events.*;
 RemoteIpDetails1 remoteIpDetails1 = RemoteIpDetails1.builder()
         .city(City1.builder()
                 .cityName(List.of("cityName"))
                 .build())
         .country(Country1.builder()
                 .countryName(List.of("countryName"))
                 .build())
         .geoLocation(GeoLocation.builder()
                 .lat(List.of("lat"))
                 .lon(List.of("lon"))
                 .build())
         .ipAddressV4(List.of("ipAddressV4"))
         .organization(Organization1.builder()
                 .asn(List.of("asn"))
                 .asnOrg(List.of("asnOrg"))
                 .isp(List.of("isp"))
                 .org(List.of("org"))
                 .build())
         .build();
 
  • Method Details

    • getCity

      @Stability(Experimental) @Nullable default DetectorEvents.GuardDutyFinding.City1 getCity()
      (experimental) 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.

      Default: - Do not filter on this field

    • getCountry

      @Stability(Experimental) @Nullable default DetectorEvents.GuardDutyFinding.Country1 getCountry()
      (experimental) 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.

      Default: - Do not filter on this field

    • getGeoLocation

      @Stability(Experimental) @Nullable default DetectorEvents.GuardDutyFinding.GeoLocation getGeoLocation()
      (experimental) 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.

      Default: - Do not filter on this field

    • getIpAddressV4

      @Stability(Experimental) @Nullable default List<String> getIpAddressV4()
      (experimental) 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.

      Default: - Do not filter on this field

    • getOrganization

      @Stability(Experimental) @Nullable default DetectorEvents.GuardDutyFinding.Organization1 getOrganization()
      (experimental) 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.

      Default: - Do not filter on this field

    • builder

      @Stability(Experimental) static DetectorEvents.GuardDutyFinding.RemoteIpDetails1.Builder builder()
      Returns:
      a DetectorEvents.GuardDutyFinding.RemoteIpDetails1.Builder of DetectorEvents.GuardDutyFinding.RemoteIpDetails1