Interface UpdateReportGroupRequest.Builder

    • Method Detail

      • arn

        UpdateReportGroupRequest.Builder arn​(String arn)

        The ARN of the report group to update.

        Parameters:
        arn - The ARN of the report group to update.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • exportConfig

        UpdateReportGroupRequest.Builder exportConfig​(ReportExportConfig exportConfig)

        Used to specify an updated export type. Valid values are:

        • S3: The report results are exported to an S3 bucket.

        • NO_EXPORT: The report results are not exported.

        Parameters:
        exportConfig - Used to specify an updated export type. Valid values are:

        • S3: The report results are exported to an S3 bucket.

        • NO_EXPORT: The report results are not exported.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

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

        An updated list of tag key and value pairs associated with this report group.

        These tags are available for use by Amazon Web Services services that support CodeBuild report group tags.

        Parameters:
        tags - An updated list of tag key and value pairs associated with this report group.

        These tags are available for use by Amazon Web Services services that support CodeBuild report group tags.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        UpdateReportGroupRequest.Builder tags​(Tag... tags)

        An updated list of tag key and value pairs associated with this report group.

        These tags are available for use by Amazon Web Services services that support CodeBuild report group tags.

        Parameters:
        tags - An updated list of tag key and value pairs associated with this report group.

        These tags are available for use by Amazon Web Services services that support CodeBuild report group tags.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

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

        An updated list of tag key and value pairs associated with this report group.

        These tags are available for use by Amazon Web Services services that support CodeBuild report group 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)