public static interface DescribeDbSnapshotsResponse.Builder extends RdsResponse.Builder, CopyableBuilder<DescribeDbSnapshotsResponse.Builder,DescribeDbSnapshotsResponse>
Modifier and Type | Method and Description |
---|---|
DescribeDbSnapshotsResponse.Builder |
dbSnapshots(Collection<DBSnapshot> dbSnapshots)
A list of DBSnapshot instances.
|
DescribeDbSnapshotsResponse.Builder |
dbSnapshots(Consumer<DBSnapshot.Builder>... dbSnapshots)
A list of DBSnapshot instances.
|
DescribeDbSnapshotsResponse.Builder |
dbSnapshots(DBSnapshot... dbSnapshots)
A list of DBSnapshot instances.
|
DescribeDbSnapshotsResponse.Builder |
marker(String marker)
An optional pagination token provided by a previous request.
|
build
sdkHttpResponse, sdkHttpResponse
copy
applyMutation, build
DescribeDbSnapshotsResponse.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
.
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
.DescribeDbSnapshotsResponse.Builder dbSnapshots(Collection<DBSnapshot> dbSnapshots)
A list of DBSnapshot instances.
dbSnapshots
- A list of DBSnapshot instances.DescribeDbSnapshotsResponse.Builder dbSnapshots(DBSnapshot... dbSnapshots)
A list of DBSnapshot instances.
dbSnapshots
- A list of DBSnapshot instances.DescribeDbSnapshotsResponse.Builder dbSnapshots(Consumer<DBSnapshot.Builder>... dbSnapshots)
A list of DBSnapshot instances.
This is a convenience that creates an instance of theList.Builder
avoiding the need to
create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and its
result is passed to #dbSnapshots(List)
.dbSnapshots
- a consumer that will call methods on List.Builder
#dbSnapshots(List)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.