Interface UpdateOutput.Builder

  • Method Details

    • name

      The name start here

      Parameters:
      name - The name start here
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • outputConfig

      UpdateOutput.Builder outputConfig(OutputConfig outputConfig)

      A typed property for an output in a feed. It is used in the UpdateFeed action. It identifies the action for Elemental Inference to perform. It also provides a repository for the results of that action. For example, CroppingConfig output will contain the metadata for the crop feature.

      Parameters:
      outputConfig - A typed property for an output in a feed. It is used in the UpdateFeed action. It identifies the action for Elemental Inference to perform. It also provides a repository for the results of that action. For example, CroppingConfig output will contain the metadata for the crop feature.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • outputConfig

      default UpdateOutput.Builder outputConfig(Consumer<OutputConfig.Builder> outputConfig)

      A typed property for an output in a feed. It is used in the UpdateFeed action. It identifies the action for Elemental Inference to perform. It also provides a repository for the results of that action. For example, CroppingConfig output will contain the metadata for the crop feature.

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

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

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

      UpdateOutput.Builder status(String status)

      The status of the output.

      Parameters:
      status - The status of the output.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • status

      The status of the output.

      Parameters:
      status - The status of the output.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • description

      UpdateOutput.Builder description(String description)

      A description of the output.

      Parameters:
      description - A description of the output.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • fromAssociation

      UpdateOutput.Builder fromAssociation(Boolean fromAssociation)

      This property is set by the service when you add the output to the feed, and indicates how you added the output. True means that you used the AssociateFeed operation. False means that you used the CreateFeed or UpdateFeed operation. Use GetFeed to obtain the value. If the value is True, include this field here with a value of True. If the value is False, omit the field here.

      Parameters:
      fromAssociation - This property is set by the service when you add the output to the feed, and indicates how you added the output. True means that you used the AssociateFeed operation. False means that you used the CreateFeed or UpdateFeed operation. Use GetFeed to obtain the value. If the value is True, include this field here with a value of True. If the value is False, omit the field here.
      Returns:
      Returns a reference to this object so that method calls can be chained together.