Interface CreateHumanTaskUiRequest.Builder

    • Method Detail

      • humanTaskUiName

        CreateHumanTaskUiRequest.Builder humanTaskUiName​(String humanTaskUiName)

        The name of the user interface you are creating.

        Parameters:
        humanTaskUiName - The name of the user interface you are creating.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • uiTemplate

        CreateHumanTaskUiRequest.Builder uiTemplate​(UiTemplate uiTemplate)
        Sets the value of the UiTemplate property for this object.
        Parameters:
        uiTemplate - The new value for the UiTemplate property for this object.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        CreateHumanTaskUiRequest.Builder tags​(Collection<Tag> tags)

        An array of key-value pairs that contain metadata to help you categorize and organize a human review workflow user interface. Each tag consists of a key and a value, both of which you define.

        Parameters:
        tags - An array of key-value pairs that contain metadata to help you categorize and organize a human review workflow user interface. Each tag consists of a key and a value, both of which you define.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        CreateHumanTaskUiRequest.Builder tags​(Tag... tags)

        An array of key-value pairs that contain metadata to help you categorize and organize a human review workflow user interface. Each tag consists of a key and a value, both of which you define.

        Parameters:
        tags - An array of key-value pairs that contain metadata to help you categorize and organize a human review workflow user interface. Each tag consists of a key and a value, both of which you define.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        CreateHumanTaskUiRequest.Builder tags​(Consumer<Tag.Builder>... tags)

        An array of key-value pairs that contain metadata to help you categorize and organize a human review workflow user interface. Each tag consists of a key and a value, both of which you define.

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

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #tags(List).

        Parameters:
        tags - a consumer that will call methods on Tag.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #tags(java.util.Collection)