Interface DescribeDbSubnetGroupsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeDbSubnetGroupsResponse.Builder,DescribeDbSubnetGroupsResponse>,RdsResponse.Builder,SdkBuilder<DescribeDbSubnetGroupsResponse.Builder,DescribeDbSubnetGroupsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeDbSubnetGroupsResponse
public static interface DescribeDbSubnetGroupsResponse.Builder extends RdsResponse.Builder, SdkPojo, CopyableBuilder<DescribeDbSubnetGroupsResponse.Builder,DescribeDbSubnetGroupsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeDbSubnetGroupsResponse.BuilderdbSubnetGroups(Collection<DBSubnetGroup> dbSubnetGroups)A list ofDBSubnetGroupinstances.DescribeDbSubnetGroupsResponse.BuilderdbSubnetGroups(Consumer<DBSubnetGroup.Builder>... dbSubnetGroups)A list ofDBSubnetGroupinstances.DescribeDbSubnetGroupsResponse.BuilderdbSubnetGroups(DBSubnetGroup... dbSubnetGroups)A list ofDBSubnetGroupinstances.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.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
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)
A list of
DBSubnetGroupinstances.- Parameters:
dbSubnetGroups- A list ofDBSubnetGroupinstances.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbSubnetGroups
DescribeDbSubnetGroupsResponse.Builder dbSubnetGroups(DBSubnetGroup... dbSubnetGroups)
A list of
DBSubnetGroupinstances.- Parameters:
dbSubnetGroups- A list ofDBSubnetGroupinstances.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbSubnetGroups
DescribeDbSubnetGroupsResponse.Builder dbSubnetGroups(Consumer<DBSubnetGroup.Builder>... dbSubnetGroups)
A list of
This is a convenience method that creates an instance of theDBSubnetGroupinstances.DBSubnetGroup.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)
-
-