Interface DescribeDbSubnetGroupsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeDbSubnetGroupsResponse.Builder,DescribeDbSubnetGroupsResponse>,DocDbResponse.Builder,SdkBuilder<DescribeDbSubnetGroupsResponse.Builder,DescribeDbSubnetGroupsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeDbSubnetGroupsResponse
public static interface DescribeDbSubnetGroupsResponse.Builder extends DocDbResponse.Builder, SdkPojo, CopyableBuilder<DescribeDbSubnetGroupsResponse.Builder,DescribeDbSubnetGroupsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeDbSubnetGroupsResponse.BuilderdbSubnetGroups(Collection<DBSubnetGroup> dbSubnetGroups)Detailed information about one or more subnet groups.DescribeDbSubnetGroupsResponse.BuilderdbSubnetGroups(Consumer<DBSubnetGroup.Builder>... dbSubnetGroups)Detailed information about one or more subnet groups.DescribeDbSubnetGroupsResponse.BuilderdbSubnetGroups(DBSubnetGroup... dbSubnetGroups)Detailed information about one or more subnet groups.DescribeDbSubnetGroupsResponse.Buildermarker(String marker)An optional pagination token provided by a previous request.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.docdb.model.DocDbResponse.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
DescribeDbSubnetGroupsResponse.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.
-
dbSubnetGroups
DescribeDbSubnetGroupsResponse.Builder dbSubnetGroups(Collection<DBSubnetGroup> dbSubnetGroups)
Detailed information about one or more subnet groups.
- Parameters:
dbSubnetGroups- Detailed information about one or more subnet groups.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbSubnetGroups
DescribeDbSubnetGroupsResponse.Builder dbSubnetGroups(DBSubnetGroup... dbSubnetGroups)
Detailed information about one or more subnet groups.
- Parameters:
dbSubnetGroups- Detailed information about one or more subnet groups.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbSubnetGroups
DescribeDbSubnetGroupsResponse.Builder dbSubnetGroups(Consumer<DBSubnetGroup.Builder>... dbSubnetGroups)
Detailed information about one or more subnet groups.
This is a convenience method that creates an instance of theDBSubnetGroup.Builderavoiding the need to create one manually viaDBSubnetGroup.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#dbSubnetGroups(List.) - Parameters:
dbSubnetGroups- a consumer that will call methods onDBSubnetGroup.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#dbSubnetGroups(java.util.Collection)
-
-