Interface DeleteBuildBatchResponse.Builder

All Superinterfaces:
AwsResponse.Builder, Buildable, CodeBuildResponse.Builder, CopyableBuilder<DeleteBuildBatchResponse.Builder,DeleteBuildBatchResponse>, SdkBuilder<DeleteBuildBatchResponse.Builder,DeleteBuildBatchResponse>, SdkPojo, SdkResponse.Builder
Enclosing class:
DeleteBuildBatchResponse

public static interface DeleteBuildBatchResponse.Builder extends CodeBuildResponse.Builder, SdkPojo, CopyableBuilder<DeleteBuildBatchResponse.Builder,DeleteBuildBatchResponse>
  • Method Details

    • statusCode

      DeleteBuildBatchResponse.Builder statusCode(String statusCodeValue)

      The status code.

      Parameters:
      statusCodeValue - The status code.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • buildsDeleted

      DeleteBuildBatchResponse.Builder buildsDeleted(Collection<String> buildsDeleted)

      An array of strings that contain the identifiers of the builds that were deleted.

      Parameters:
      buildsDeleted - An array of strings that contain the identifiers of the builds that were deleted.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • buildsDeleted

      DeleteBuildBatchResponse.Builder buildsDeleted(String... buildsDeleted)

      An array of strings that contain the identifiers of the builds that were deleted.

      Parameters:
      buildsDeleted - An array of strings that contain the identifiers of the builds that were deleted.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • buildsNotDeleted

      DeleteBuildBatchResponse.Builder buildsNotDeleted(Collection<BuildNotDeleted> buildsNotDeleted)

      An array of BuildNotDeleted objects that specify the builds that could not be deleted.

      Parameters:
      buildsNotDeleted - An array of BuildNotDeleted objects that specify the builds that could not be deleted.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • buildsNotDeleted

      DeleteBuildBatchResponse.Builder buildsNotDeleted(BuildNotDeleted... buildsNotDeleted)

      An array of BuildNotDeleted objects that specify the builds that could not be deleted.

      Parameters:
      buildsNotDeleted - An array of BuildNotDeleted objects that specify the builds that could not be deleted.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • buildsNotDeleted

      DeleteBuildBatchResponse.Builder buildsNotDeleted(Consumer<BuildNotDeleted.Builder>... buildsNotDeleted)

      An array of BuildNotDeleted objects that specify the builds that could not be deleted.

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

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to buildsNotDeleted(List<BuildNotDeleted>).

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