Interface EnrichmentJobConfiguration.Builder

  • Method Details

    • eventDetection

      EnrichmentJobConfiguration.Builder eventDetection(EventDetection eventDetection)

      Event detection configuration that generates embeddings from video time-series data enabling natural language similarity search on events. The service processes video data and creates embeddings stored in IoT SiteWise for semantic querying.

      Parameters:
      eventDetection - Event detection configuration that generates embeddings from video time-series data enabling natural language similarity search on events. The service processes video data and creates embeddings stored in IoT SiteWise for semantic querying.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • eventDetection

      default EnrichmentJobConfiguration.Builder eventDetection(Consumer<EventDetection.Builder> eventDetection)

      Event detection configuration that generates embeddings from video time-series data enabling natural language similarity search on events. The service processes video data and creates embeddings stored in IoT SiteWise for semantic querying.

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

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

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