Interface DescribeReplicationConfigsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeReplicationConfigsResponse.Builder,DescribeReplicationConfigsResponse>,DatabaseMigrationResponse.Builder,SdkBuilder<DescribeReplicationConfigsResponse.Builder,DescribeReplicationConfigsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeReplicationConfigsResponse
public static interface DescribeReplicationConfigsResponse.Builder extends DatabaseMigrationResponse.Builder, SdkPojo, CopyableBuilder<DescribeReplicationConfigsResponse.Builder,DescribeReplicationConfigsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeReplicationConfigsResponse.Buildermarker(String marker)An optional pagination token provided by a previous request.DescribeReplicationConfigsResponse.BuilderreplicationConfigs(Collection<ReplicationConfig> replicationConfigs)Returned configuration parameters that describe each provisioned DMS Serverless replication.DescribeReplicationConfigsResponse.BuilderreplicationConfigs(Consumer<ReplicationConfig.Builder>... replicationConfigs)Returned configuration parameters that describe each provisioned DMS Serverless replication.DescribeReplicationConfigsResponse.BuilderreplicationConfigs(ReplicationConfig... replicationConfigs)Returned configuration parameters that describe each provisioned DMS Serverless replication.-
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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
marker
DescribeReplicationConfigsResponse.Builder marker(String marker)
An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by
MaxRecords.- Parameters:
marker- An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified byMaxRecords.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
replicationConfigs
DescribeReplicationConfigsResponse.Builder replicationConfigs(Collection<ReplicationConfig> replicationConfigs)
Returned configuration parameters that describe each provisioned DMS Serverless replication.
- Parameters:
replicationConfigs- Returned configuration parameters that describe each provisioned DMS Serverless replication.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
replicationConfigs
DescribeReplicationConfigsResponse.Builder replicationConfigs(ReplicationConfig... replicationConfigs)
Returned configuration parameters that describe each provisioned DMS Serverless replication.
- Parameters:
replicationConfigs- Returned configuration parameters that describe each provisioned DMS Serverless replication.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
replicationConfigs
DescribeReplicationConfigsResponse.Builder replicationConfigs(Consumer<ReplicationConfig.Builder>... replicationConfigs)
Returned configuration parameters that describe each provisioned DMS Serverless replication.
This is a convenience method that creates an instance of theReplicationConfig.Builderavoiding the need to create one manually viaReplicationConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#replicationConfigs(List.) - Parameters:
replicationConfigs- a consumer that will call methods onReplicationConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#replicationConfigs(java.util.Collection)
-
-