Interface DescribeDbClusterAutomatedBackupsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribeDbClusterAutomatedBackupsResponse.Builder,DescribeDbClusterAutomatedBackupsResponse>
,RdsResponse.Builder
,SdkBuilder<DescribeDbClusterAutomatedBackupsResponse.Builder,DescribeDbClusterAutomatedBackupsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- DescribeDbClusterAutomatedBackupsResponse
public static interface DescribeDbClusterAutomatedBackupsResponse.Builder extends RdsResponse.Builder, SdkPojo, CopyableBuilder<DescribeDbClusterAutomatedBackupsResponse.Builder,DescribeDbClusterAutomatedBackupsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeDbClusterAutomatedBackupsResponse.Builder
dbClusterAutomatedBackups(Collection<DBClusterAutomatedBackup> dbClusterAutomatedBackups)
A list ofDBClusterAutomatedBackup
backups.DescribeDbClusterAutomatedBackupsResponse.Builder
dbClusterAutomatedBackups(Consumer<DBClusterAutomatedBackup.Builder>... dbClusterAutomatedBackups)
A list ofDBClusterAutomatedBackup
backups.DescribeDbClusterAutomatedBackupsResponse.Builder
dbClusterAutomatedBackups(DBClusterAutomatedBackup... dbClusterAutomatedBackups)
A list ofDBClusterAutomatedBackup
backups.DescribeDbClusterAutomatedBackupsResponse.Builder
marker(String marker)
The pagination token provided in the previous request.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.rds.model.RdsResponse.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
-
marker
DescribeDbClusterAutomatedBackupsResponse.Builder marker(String marker)
The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to
MaxRecords
.- Parameters:
marker
- The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up toMaxRecords
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbClusterAutomatedBackups
DescribeDbClusterAutomatedBackupsResponse.Builder dbClusterAutomatedBackups(Collection<DBClusterAutomatedBackup> dbClusterAutomatedBackups)
A list of
DBClusterAutomatedBackup
backups.- Parameters:
dbClusterAutomatedBackups
- A list ofDBClusterAutomatedBackup
backups.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbClusterAutomatedBackups
DescribeDbClusterAutomatedBackupsResponse.Builder dbClusterAutomatedBackups(DBClusterAutomatedBackup... dbClusterAutomatedBackups)
A list of
DBClusterAutomatedBackup
backups.- Parameters:
dbClusterAutomatedBackups
- A list ofDBClusterAutomatedBackup
backups.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbClusterAutomatedBackups
DescribeDbClusterAutomatedBackupsResponse.Builder dbClusterAutomatedBackups(Consumer<DBClusterAutomatedBackup.Builder>... dbClusterAutomatedBackups)
A list of
This is a convenience method that creates an instance of theDBClusterAutomatedBackup
backups.DBClusterAutomatedBackup.Builder
avoiding the need to create one manually viaDBClusterAutomatedBackup.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#dbClusterAutomatedBackups(List
.) - Parameters:
dbClusterAutomatedBackups
- a consumer that will call methods onDBClusterAutomatedBackup.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#dbClusterAutomatedBackups(java.util.Collection
)
-
-