Interface ReloadTablesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<ReloadTablesRequest.Builder,ReloadTablesRequest>,DatabaseMigrationRequest.Builder,SdkBuilder<ReloadTablesRequest.Builder,ReloadTablesRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ReloadTablesRequest
@Mutable @NotThreadSafe public static interface ReloadTablesRequest.Builder extends DatabaseMigrationRequest.Builder, SdkPojo, CopyableBuilder<ReloadTablesRequest.Builder,ReloadTablesRequest>
-
-
Method Summary
-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.databasemigration.model.DatabaseMigrationRequest.Builder
build
-
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
-
replicationTaskArn
ReloadTablesRequest.Builder replicationTaskArn(String replicationTaskArn)
The Amazon Resource Name (ARN) of the replication task.
- Parameters:
replicationTaskArn- The Amazon Resource Name (ARN) of the replication task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tablesToReload
ReloadTablesRequest.Builder tablesToReload(Collection<TableToReload> tablesToReload)
The name and schema of the table to be reloaded.
- Parameters:
tablesToReload- The name and schema of the table to be reloaded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tablesToReload
ReloadTablesRequest.Builder tablesToReload(TableToReload... tablesToReload)
The name and schema of the table to be reloaded.
- Parameters:
tablesToReload- The name and schema of the table to be reloaded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tablesToReload
ReloadTablesRequest.Builder tablesToReload(Consumer<TableToReload.Builder>... tablesToReload)
The name and schema of the table to be reloaded.
This is a convenience method that creates an instance of theTableToReload.Builderavoiding the need to create one manually viaTableToReload.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tablesToReload(List.) - Parameters:
tablesToReload- a consumer that will call methods onTableToReload.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tablesToReload(java.util.Collection)
-
reloadOption
ReloadTablesRequest.Builder reloadOption(String reloadOption)
Options for reload. Specify
data-reloadto reload the data and re-validate it if validation is enabled. Specifyvalidate-onlyto re-validate the table. This option applies only when validation is enabled for the task.Valid values: data-reload, validate-only
Default value is data-reload.
- Parameters:
reloadOption- Options for reload. Specifydata-reloadto reload the data and re-validate it if validation is enabled. Specifyvalidate-onlyto re-validate the table. This option applies only when validation is enabled for the task.Valid values: data-reload, validate-only
Default value is data-reload.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ReloadOptionValue,ReloadOptionValue
-
reloadOption
ReloadTablesRequest.Builder reloadOption(ReloadOptionValue reloadOption)
Options for reload. Specify
data-reloadto reload the data and re-validate it if validation is enabled. Specifyvalidate-onlyto re-validate the table. This option applies only when validation is enabled for the task.Valid values: data-reload, validate-only
Default value is data-reload.
- Parameters:
reloadOption- Options for reload. Specifydata-reloadto reload the data and re-validate it if validation is enabled. Specifyvalidate-onlyto re-validate the table. This option applies only when validation is enabled for the task.Valid values: data-reload, validate-only
Default value is data-reload.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ReloadOptionValue,ReloadOptionValue
-
overrideConfiguration
ReloadTablesRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ReloadTablesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-