Interface InputImage.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InputImage.Builder,InputImage>,SdkBuilder<InputImage.Builder,InputImage>,SdkPojo
- Enclosing class:
- InputImage
@Mutable @NotThreadSafe public static interface InputImage.Builder extends SdkPojo, CopyableBuilder<InputImage.Builder,InputImage>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputImage.Builderformat(String format)The format of the input image.InputImage.Builderformat(InputImageFormat format)The format of the input image.InputImage.BuilderinlineContent(SdkBytes inlineContent)The base64-encoded image data for inline image content.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
format
InputImage.Builder format(String format)
The format of the input image. Supported formats include png, gif, jpeg, and webp.
- Parameters:
format- The format of the input image. Supported formats include png, gif, jpeg, and webp.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
InputImageFormat,InputImageFormat
-
format
InputImage.Builder format(InputImageFormat format)
The format of the input image. Supported formats include png, gif, jpeg, and webp.
- Parameters:
format- The format of the input image. Supported formats include png, gif, jpeg, and webp.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
InputImageFormat,InputImageFormat
-
inlineContent
InputImage.Builder inlineContent(SdkBytes inlineContent)
The base64-encoded image data for inline image content. Maximum size is 5MB.
- Parameters:
inlineContent- The base64-encoded image data for inline image content. Maximum size is 5MB.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-