Interface SchemaConversionRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SchemaConversionRequest.Builder,SchemaConversionRequest>,SdkBuilder<SchemaConversionRequest.Builder,SchemaConversionRequest>,SdkPojo
- Enclosing class:
- SchemaConversionRequest
public static interface SchemaConversionRequest.Builder extends SdkPojo, CopyableBuilder<SchemaConversionRequest.Builder,SchemaConversionRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default SchemaConversionRequest.Buildererror(Consumer<ErrorDetails.Builder> error)Sets the value of the Error property for this object.SchemaConversionRequest.Buildererror(ErrorDetails error)Sets the value of the Error property for this object.default SchemaConversionRequest.BuilderexportSqlDetails(Consumer<ExportSqlDetails.Builder> exportSqlDetails)Sets the value of the ExportSqlDetails property for this object.SchemaConversionRequest.BuilderexportSqlDetails(ExportSqlDetails exportSqlDetails)Sets the value of the ExportSqlDetails property for this object.SchemaConversionRequest.BuildermigrationProjectArn(String migrationProjectArn)The migration project ARN.SchemaConversionRequest.BuilderrequestIdentifier(String requestIdentifier)The identifier for the schema conversion action.SchemaConversionRequest.Builderstatus(String status)The schema conversion action status.-
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
-
status
SchemaConversionRequest.Builder status(String status)
The schema conversion action status.
- Parameters:
status- The schema conversion action status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
requestIdentifier
SchemaConversionRequest.Builder requestIdentifier(String requestIdentifier)
The identifier for the schema conversion action.
- Parameters:
requestIdentifier- The identifier for the schema conversion action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
migrationProjectArn
SchemaConversionRequest.Builder migrationProjectArn(String migrationProjectArn)
The migration project ARN.
- Parameters:
migrationProjectArn- The migration project ARN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
error
SchemaConversionRequest.Builder error(ErrorDetails error)
Sets the value of the Error property for this object.- Parameters:
error- The new value for the Error property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
error
default SchemaConversionRequest.Builder error(Consumer<ErrorDetails.Builder> error)
Sets the value of the Error property for this object. This is a convenience method that creates an instance of theErrorDetails.Builderavoiding the need to create one manually viaErrorDetails.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toerror(ErrorDetails).- Parameters:
error- a consumer that will call methods onErrorDetails.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
error(ErrorDetails)
-
exportSqlDetails
SchemaConversionRequest.Builder exportSqlDetails(ExportSqlDetails exportSqlDetails)
Sets the value of the ExportSqlDetails property for this object.- Parameters:
exportSqlDetails- The new value for the ExportSqlDetails property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exportSqlDetails
default SchemaConversionRequest.Builder exportSqlDetails(Consumer<ExportSqlDetails.Builder> exportSqlDetails)
Sets the value of the ExportSqlDetails property for this object. This is a convenience method that creates an instance of theExportSqlDetails.Builderavoiding the need to create one manually viaExportSqlDetails.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toexportSqlDetails(ExportSqlDetails).- Parameters:
exportSqlDetails- a consumer that will call methods onExportSqlDetails.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
exportSqlDetails(ExportSqlDetails)
-
-