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