Interface ByteContentDoc.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ByteContentDoc.Builder,ByteContentDoc>,SdkBuilder<ByteContentDoc.Builder,ByteContentDoc>,SdkPojo
- Enclosing class:
- ByteContentDoc
@Mutable @NotThreadSafe public static interface ByteContentDoc.Builder extends SdkPojo, CopyableBuilder<ByteContentDoc.Builder,ByteContentDoc>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ByteContentDoc.BuildercontentType(String contentType)The MIME type of the document contained in the wrapper object.ByteContentDoc.Builderdata(SdkBytes data)The byte value of the file to upload, encoded as a Base-64 string.ByteContentDoc.Builderidentifier(String identifier)The file name of the document contained in the wrapper object.-
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
-
contentType
ByteContentDoc.Builder contentType(String contentType)
The MIME type of the document contained in the wrapper object.
- Parameters:
contentType- The MIME type of the document contained in the wrapper object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
data
ByteContentDoc.Builder data(SdkBytes data)
The byte value of the file to upload, encoded as a Base-64 string.
- Parameters:
data- The byte value of the file to upload, encoded as a Base-64 string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
identifier
ByteContentDoc.Builder identifier(String identifier)
The file name of the document contained in the wrapper object.
- Parameters:
identifier- The file name of the document contained in the wrapper object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-