You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SecurityHub::Types::Network

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing Network as input to an Aws::Client method, you can use a vanilla Hash:

{
  direction: "IN", # accepts IN, OUT
  protocol: "NonEmptyString",
  open_port_range: {
    begin: 1,
    end: 1,
  },
  source_ip_v4: "NonEmptyString",
  source_ip_v6: "NonEmptyString",
  source_port: 1,
  source_domain: "NonEmptyString",
  source_mac: "NonEmptyString",
  destination_ip_v4: "NonEmptyString",
  destination_ip_v6: "NonEmptyString",
  destination_port: 1,
  destination_domain: "NonEmptyString",
}

The details of network-related information about a finding.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#destination_domainString

The destination domain of network-related information about a finding.

Returns:

  • (String)

    The destination domain of network-related information about a finding.

#destination_ip_v4String

The destination IPv4 address of network-related information about a finding.

Returns:

  • (String)

    The destination IPv4 address of network-related information about a finding.

#destination_ip_v6String

The destination IPv6 address of network-related information about a finding.

Returns:

  • (String)

    The destination IPv6 address of network-related information about a finding.

#destination_portInteger

The destination port of network-related information about a finding.

Returns:

  • (Integer)

    The destination port of network-related information about a finding.

#directionString

The direction of network traffic associated with a finding.

Possible values:

  • IN
  • OUT

Returns:

  • (String)

    The direction of network traffic associated with a finding.

#open_port_rangeTypes::PortRange

The range of open ports that is present on the network.

Returns:

  • (Types::PortRange)

    The range of open ports that is present on the network.

#protocolString

The protocol of network-related information about a finding.

Returns:

  • (String)

    The protocol of network-related information about a finding.

#source_domainString

The source domain of network-related information about a finding.

Returns:

  • (String)

    The source domain of network-related information about a finding.

#source_ip_v4String

The source IPv4 address of network-related information about a finding.

Returns:

  • (String)

    The source IPv4 address of network-related information about a finding.

#source_ip_v6String

The source IPv6 address of network-related information about a finding.

Returns:

  • (String)

    The source IPv6 address of network-related information about a finding.

#source_macString

The source media access control (MAC) address of network-related information about a finding.

Returns:

  • (String)

    The source media access control (MAC) address of network-related information about a finding.

#source_portInteger

The source port of network-related information about a finding.

Returns:

  • (Integer)

    The source port of network-related information about a finding.