Interface ConnectorFileTransferResult.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConnectorFileTransferResult.Builder,ConnectorFileTransferResult>,SdkBuilder<ConnectorFileTransferResult.Builder,ConnectorFileTransferResult>,SdkPojo
- Enclosing class:
- ConnectorFileTransferResult
public static interface ConnectorFileTransferResult.Builder extends SdkPojo, CopyableBuilder<ConnectorFileTransferResult.Builder,ConnectorFileTransferResult>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectorFileTransferResult.BuilderfailureCode(String failureCode)For transfers that fail, this parameter contains a code indicating the reason.ConnectorFileTransferResult.BuilderfailureMessage(String failureMessage)For transfers that fail, this parameter describes the reason for the failure.ConnectorFileTransferResult.BuilderfilePath(String filePath)The filename and path to where the file was sent to or retrieved from.ConnectorFileTransferResult.BuilderstatusCode(String statusCode)The current status for the transfer.ConnectorFileTransferResult.BuilderstatusCode(TransferTableStatus statusCode)The current status for the transfer.-
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
-
filePath
ConnectorFileTransferResult.Builder filePath(String filePath)
The filename and path to where the file was sent to or retrieved from.
- Parameters:
filePath- The filename and path to where the file was sent to or retrieved from.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statusCode
ConnectorFileTransferResult.Builder statusCode(String statusCode)
The current status for the transfer.
- Parameters:
statusCode- The current status for the transfer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TransferTableStatus,TransferTableStatus
-
statusCode
ConnectorFileTransferResult.Builder statusCode(TransferTableStatus statusCode)
The current status for the transfer.
- Parameters:
statusCode- The current status for the transfer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TransferTableStatus,TransferTableStatus
-
failureCode
ConnectorFileTransferResult.Builder failureCode(String failureCode)
For transfers that fail, this parameter contains a code indicating the reason. For example,
RETRIEVE_FILE_NOT_FOUND- Parameters:
failureCode- For transfers that fail, this parameter contains a code indicating the reason. For example,RETRIEVE_FILE_NOT_FOUND- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failureMessage
ConnectorFileTransferResult.Builder failureMessage(String failureMessage)
For transfers that fail, this parameter describes the reason for the failure.
- Parameters:
failureMessage- For transfers that fail, this parameter describes the reason for the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-