Interface ChangeRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ChangeRequest.Builder,ChangeRequest>,SdkBuilder<ChangeRequest.Builder,ChangeRequest>,SdkPojo
- Enclosing class:
- ChangeRequest
public static interface ChangeRequest.Builder extends SdkPojo, CopyableBuilder<ChangeRequest.Builder,ChangeRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ChangeRequest.BuilderchangeType(String changeType)Defines the type of change request.ChangeRequest.BuilderchangeType(ChangeType changeType)Defines the type of change request.ChangeRequest.BuilderdbPath(String dbPath)Defines the path within the database directory.ChangeRequest.Builders3Path(String s3Path)Defines the S3 path of the source file that is required to add or update files in a database.-
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
-
changeType
ChangeRequest.Builder changeType(String changeType)
Defines the type of change request. A
changeTypecan have the following values:-
PUT – Adds or updates files in a database.
-
DELETE – Deletes files in a database.
- Parameters:
changeType- Defines the type of change request. AchangeTypecan have the following values:-
PUT – Adds or updates files in a database.
-
DELETE – Deletes files in a database.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChangeType,ChangeType
-
-
changeType
ChangeRequest.Builder changeType(ChangeType changeType)
Defines the type of change request. A
changeTypecan have the following values:-
PUT – Adds or updates files in a database.
-
DELETE – Deletes files in a database.
- Parameters:
changeType- Defines the type of change request. AchangeTypecan have the following values:-
PUT – Adds or updates files in a database.
-
DELETE – Deletes files in a database.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChangeType,ChangeType
-
-
s3Path
ChangeRequest.Builder s3Path(String s3Path)
Defines the S3 path of the source file that is required to add or update files in a database.
- Parameters:
s3Path- Defines the S3 path of the source file that is required to add or update files in a database.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbPath
ChangeRequest.Builder dbPath(String dbPath)
Defines the path within the database directory.
- Parameters:
dbPath- Defines the path within the database directory.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-