Interface TestMigrationRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<TestMigrationRequest.Builder,TestMigrationRequest>
,ElastiCacheRequest.Builder
,SdkBuilder<TestMigrationRequest.Builder,TestMigrationRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- TestMigrationRequest
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.Builder
customerNodeEndpointList(Collection<CustomerNodeEndpoint> customerNodeEndpointList)
List of endpoints from which data should be migrated.TestMigrationRequest.Builder
customerNodeEndpointList(Consumer<CustomerNodeEndpoint.Builder>... customerNodeEndpointList)
List of endpoints from which data should be migrated.TestMigrationRequest.Builder
customerNodeEndpointList(CustomerNodeEndpoint... customerNodeEndpointList)
List of endpoints from which data should be migrated.TestMigrationRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
TestMigrationRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
TestMigrationRequest.Builder
replicationGroupId(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, 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.Builder
avoiding the need to create one manually viaCustomerNodeEndpoint.builder()
.When the
Consumer
completes,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:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
TestMigrationRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-