Interface AnalysisReportSummary.Builder

    • Method Detail

      • analysisReportId

        AnalysisReportSummary.Builder analysisReportId​(String analysisReportId)

        The name of the analysis report.

        Parameters:
        analysisReportId - The name of the analysis report.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • createTime

        AnalysisReportSummary.Builder createTime​(Instant createTime)

        The time you created the analysis report.

        Parameters:
        createTime - The time you created the analysis report.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • startTime

        AnalysisReportSummary.Builder startTime​(Instant startTime)

        The start time of the analysis in the report.

        Parameters:
        startTime - The start time of the analysis in the report.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • endTime

        AnalysisReportSummary.Builder endTime​(Instant endTime)

        The end time of the analysis in the report.

        Parameters:
        endTime - The end time of the analysis in the report.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

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

        List of all the tags added to the analysis report.

        Parameters:
        tags - List of all the tags added to the analysis report.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        AnalysisReportSummary.Builder tags​(Tag... tags)

        List of all the tags added to the analysis report.

        Parameters:
        tags - List of all the tags added to the analysis report.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

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

        List of all the tags added to the analysis report.

        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)