Interface TestMigrationRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<TestMigrationRequest.Builder,TestMigrationRequest>,ElastiCacheRequest.Builder,SdkBuilder<TestMigrationRequest.Builder,TestMigrationRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- TestMigrationRequest
@Mutable @NotThreadSafe public static interface TestMigrationRequest.Builder extends ElastiCacheRequest.Builder, SdkPojo, CopyableBuilder<TestMigrationRequest.Builder,TestMigrationRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TestMigrationRequest.BuildercustomerNodeEndpointList(Collection<CustomerNodeEndpoint> customerNodeEndpointList)List of endpoints from which data should be migrated.TestMigrationRequest.BuildercustomerNodeEndpointList(Consumer<CustomerNodeEndpoint.Builder>... customerNodeEndpointList)List of endpoints from which data should be migrated.TestMigrationRequest.BuildercustomerNodeEndpointList(CustomerNodeEndpoint... customerNodeEndpointList)List of endpoints from which data should be migrated.TestMigrationRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)TestMigrationRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)TestMigrationRequest.BuilderreplicationGroupId(String replicationGroupId)The ID of the replication group to which data is to be migrated.-
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.elasticache.model.ElastiCacheRequest.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
-
replicationGroupId
TestMigrationRequest.Builder replicationGroupId(String replicationGroupId)
The ID of the replication group to which data is to be migrated.
- Parameters:
replicationGroupId- The ID of the replication group to which data is to be migrated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customerNodeEndpointList
TestMigrationRequest.Builder customerNodeEndpointList(Collection<CustomerNodeEndpoint> customerNodeEndpointList)
List of endpoints from which data should be migrated. List should have only one element.
- Parameters:
customerNodeEndpointList- List of endpoints from which data should be migrated. List should have only one element.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customerNodeEndpointList
TestMigrationRequest.Builder customerNodeEndpointList(CustomerNodeEndpoint... customerNodeEndpointList)
List of endpoints from which data should be migrated. List should have only one element.
- Parameters:
customerNodeEndpointList- List of endpoints from which data should be migrated. List should have only one element.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customerNodeEndpointList
TestMigrationRequest.Builder customerNodeEndpointList(Consumer<CustomerNodeEndpoint.Builder>... customerNodeEndpointList)
List of endpoints from which data should be migrated. List should have only one element.
This is a convenience method that creates an instance of theCustomerNodeEndpoint.Builderavoiding the need to create one manually viaCustomerNodeEndpoint.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#customerNodeEndpointList(List.) - Parameters:
customerNodeEndpointList- a consumer that will call methods onCustomerNodeEndpoint.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#customerNodeEndpointList(java.util.Collection)
-
overrideConfiguration
TestMigrationRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
TestMigrationRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-