Interface RecognizeCelebritiesRequest.Builder

    • Method Detail

      • image

        RecognizeCelebritiesRequest.Builder image​(Image image)

        The input image as base64-encoded bytes or an S3 object. If you use the AWS CLI to call Amazon Rekognition operations, passing base64-encoded image bytes is not supported.

        If you are using an AWS SDK to call Amazon Rekognition, you might not need to base64-encode image bytes passed using the Bytes field. For more information, see Images in the Amazon Rekognition developer guide.

        Parameters:
        image - The input image as base64-encoded bytes or an S3 object. If you use the AWS CLI to call Amazon Rekognition operations, passing base64-encoded image bytes is not supported.

        If you are using an AWS SDK to call Amazon Rekognition, you might not need to base64-encode image bytes passed using the Bytes field. For more information, see Images in the Amazon Rekognition developer guide.

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

        default RecognizeCelebritiesRequest.Builder image​(Consumer<Image.Builder> image)

        The input image as base64-encoded bytes or an S3 object. If you use the AWS CLI to call Amazon Rekognition operations, passing base64-encoded image bytes is not supported.

        If you are using an AWS SDK to call Amazon Rekognition, you might not need to base64-encode image bytes passed using the Bytes field. For more information, see Images in the Amazon Rekognition developer guide.

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

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to image(Image).

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