Interface FileUploadCard.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FileUploadCard.Builder,FileUploadCard>,SdkBuilder<FileUploadCard.Builder,FileUploadCard>,SdkPojo
- Enclosing class:
- FileUploadCard
public static interface FileUploadCard.Builder extends SdkPojo, CopyableBuilder<FileUploadCard.Builder,FileUploadCard>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FileUploadCard.BuilderallowOverride(Boolean allowOverride)A flag indicating if the user can override the default file for the upload card.FileUploadCard.Builderdependencies(String... dependencies)Any dependencies or requirements for the file upload card.FileUploadCard.Builderdependencies(Collection<String> dependencies)Any dependencies or requirements for the file upload card.FileUploadCard.BuilderfileId(String fileId)The unique identifier of the file associated with the card.FileUploadCard.Builderfilename(String filename)The name of the file being uploaded.FileUploadCard.Builderid(String id)The unique identifier of the file upload card.FileUploadCard.Buildertitle(String title)The title of the file upload card.FileUploadCard.Buildertype(String type)The type of the card.FileUploadCard.Buildertype(CardType type)The type of the card.-
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
-
id
FileUploadCard.Builder id(String id)
The unique identifier of the file upload card.
- Parameters:
id- The unique identifier of the file upload card.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
title
FileUploadCard.Builder title(String title)
The title of the file upload card.
- Parameters:
title- The title of the file upload card.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dependencies
FileUploadCard.Builder dependencies(Collection<String> dependencies)
Any dependencies or requirements for the file upload card.
- Parameters:
dependencies- Any dependencies or requirements for the file upload card.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dependencies
FileUploadCard.Builder dependencies(String... dependencies)
Any dependencies or requirements for the file upload card.
- Parameters:
dependencies- Any dependencies or requirements for the file upload card.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
FileUploadCard.Builder type(String type)
The type of the card.
-
type
FileUploadCard.Builder type(CardType type)
The type of the card.
-
filename
FileUploadCard.Builder filename(String filename)
The name of the file being uploaded.
- Parameters:
filename- The name of the file being uploaded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fileId
FileUploadCard.Builder fileId(String fileId)
The unique identifier of the file associated with the card.
- Parameters:
fileId- The unique identifier of the file associated with the card.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allowOverride
FileUploadCard.Builder allowOverride(Boolean allowOverride)
A flag indicating if the user can override the default file for the upload card.
- Parameters:
allowOverride- A flag indicating if the user can override the default file for the upload card.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-