Interface FileSource.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<FileSource.Builder,FileSource>
,SdkBuilder<FileSource.Builder,FileSource>
,SdkPojo
- Enclosing class:
- FileSource
public static interface FileSource.Builder extends SdkPojo, CopyableBuilder<FileSource.Builder,FileSource>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FileSource.Builder
contentDigest(String contentDigest)
The digest of the file source.FileSource.Builder
contentType(String contentType)
The type of content stored in the file source.FileSource.Builder
s3Uri(String s3Uri)
The Amazon S3 URI for the file source.-
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, sdkFields
-
-
-
-
Method Detail
-
contentType
FileSource.Builder contentType(String contentType)
The type of content stored in the file source.
- Parameters:
contentType
- The type of content stored in the file source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
contentDigest
FileSource.Builder contentDigest(String contentDigest)
The digest of the file source.
- Parameters:
contentDigest
- The digest of the file source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Uri
FileSource.Builder s3Uri(String s3Uri)
The Amazon S3 URI for the file source.
- Parameters:
s3Uri
- The Amazon S3 URI for the file source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-