Interface Indicator.Builder

  • Method Details

    • indicatorType

      Indicator.Builder indicatorType(String indicatorType)

      The type of indicator.

      Parameters:
      indicatorType - The type of indicator.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • indicatorType

      Indicator.Builder indicatorType(IndicatorType indicatorType)

      The type of indicator.

      Parameters:
      indicatorType - The type of indicator.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • indicatorDetail

      Indicator.Builder indicatorDetail(IndicatorDetail indicatorDetail)

      Details about the indicators of compromise that are used to determine if a resource is involved in a security incident. An indicator of compromise (IOC) is an artifact observed in or on a network, system, or environment that can (with a high level of confidence) identify malicious activity or a security incident.

      Parameters:
      indicatorDetail - Details about the indicators of compromise that are used to determine if a resource is involved in a security incident. An indicator of compromise (IOC) is an artifact observed in or on a network, system, or environment that can (with a high level of confidence) identify malicious activity or a security incident.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • indicatorDetail

      default Indicator.Builder indicatorDetail(Consumer<IndicatorDetail.Builder> indicatorDetail)

      Details about the indicators of compromise that are used to determine if a resource is involved in a security incident. An indicator of compromise (IOC) is an artifact observed in or on a network, system, or environment that can (with a high level of confidence) identify malicious activity or a security incident.

      This is a convenience method that creates an instance of the IndicatorDetail.Builder avoiding the need to create one manually via IndicatorDetail.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to indicatorDetail(IndicatorDetail).

      Parameters:
      indicatorDetail - a consumer that will call methods on IndicatorDetail.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: