Interface CreateExperimentRequest.Builder

    • Method Detail

      • experimentName

        CreateExperimentRequest.Builder experimentName​(String experimentName)

        The name of the experiment. The name must be unique in your Amazon Web Services account and is not case-sensitive.

        Parameters:
        experimentName - The name of the experiment. The name must be unique in your Amazon Web Services account and is not case-sensitive.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • displayName

        CreateExperimentRequest.Builder displayName​(String displayName)

        The name of the experiment as displayed. The name doesn't need to be unique. If you don't specify DisplayName, the value in ExperimentName is displayed.

        Parameters:
        displayName - The name of the experiment as displayed. The name doesn't need to be unique. If you don't specify DisplayName, the value in ExperimentName is displayed.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • description

        CreateExperimentRequest.Builder description​(String description)

        The description of the experiment.

        Parameters:
        description - The description of the experiment.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

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

        A list of tags to associate with the experiment. You can use Search API to search on the tags.

        Parameters:
        tags - A list of tags to associate with the experiment. You can use Search API to search on the tags.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        CreateExperimentRequest.Builder tags​(Tag... tags)

        A list of tags to associate with the experiment. You can use Search API to search on the tags.

        Parameters:
        tags - A list of tags to associate with the experiment. You can use Search API to search on the tags.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

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

        A list of tags to associate with the experiment. You can use Search API to search on the tags.

        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)