Interface RefreshSchemasResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<RefreshSchemasResponse.Builder,RefreshSchemasResponse>,DatabaseMigrationResponse.Builder,SdkBuilder<RefreshSchemasResponse.Builder,RefreshSchemasResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- RefreshSchemasResponse
@Mutable @NotThreadSafe public static interface RefreshSchemasResponse.Builder extends DatabaseMigrationResponse.Builder, SdkPojo, CopyableBuilder<RefreshSchemasResponse.Builder,RefreshSchemasResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default RefreshSchemasResponse.BuilderrefreshSchemasStatus(Consumer<RefreshSchemasStatus.Builder> refreshSchemasStatus)The status of the refreshed schema.RefreshSchemasResponse.BuilderrefreshSchemasStatus(RefreshSchemasStatus refreshSchemasStatus)The status of the refreshed schema.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.databasemigration.model.DatabaseMigrationResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
refreshSchemasStatus
RefreshSchemasResponse.Builder refreshSchemasStatus(RefreshSchemasStatus refreshSchemasStatus)
The status of the refreshed schema.
- Parameters:
refreshSchemasStatus- The status of the refreshed schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
refreshSchemasStatus
default RefreshSchemasResponse.Builder refreshSchemasStatus(Consumer<RefreshSchemasStatus.Builder> refreshSchemasStatus)
The status of the refreshed schema.
This is a convenience method that creates an instance of theRefreshSchemasStatus.Builderavoiding the need to create one manually viaRefreshSchemasStatus.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed torefreshSchemasStatus(RefreshSchemasStatus).- Parameters:
refreshSchemasStatus- a consumer that will call methods onRefreshSchemasStatus.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
refreshSchemasStatus(RefreshSchemasStatus)
-
-