Interface DescribeDbClusterParameterGroupsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeDbClusterParameterGroupsResponse.Builder,DescribeDbClusterParameterGroupsResponse>,RdsResponse.Builder,SdkBuilder<DescribeDbClusterParameterGroupsResponse.Builder,DescribeDbClusterParameterGroupsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeDbClusterParameterGroupsResponse
public static interface DescribeDbClusterParameterGroupsResponse.Builder extends RdsResponse.Builder, SdkPojo, CopyableBuilder<DescribeDbClusterParameterGroupsResponse.Builder,DescribeDbClusterParameterGroupsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeDbClusterParameterGroupsResponse.BuilderdbClusterParameterGroups(Collection<DBClusterParameterGroup> dbClusterParameterGroups)A list of DB cluster parameter groups.DescribeDbClusterParameterGroupsResponse.BuilderdbClusterParameterGroups(Consumer<DBClusterParameterGroup.Builder>... dbClusterParameterGroups)A list of DB cluster parameter groups.DescribeDbClusterParameterGroupsResponse.BuilderdbClusterParameterGroups(DBClusterParameterGroup... dbClusterParameterGroups)A list of DB cluster parameter groups.DescribeDbClusterParameterGroupsResponse.Buildermarker(String marker)An optional pagination token provided by a previousDescribeDBClusterParameterGroupsrequest.-
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
DescribeDbClusterParameterGroupsResponse.Builder marker(String marker)
An optional pagination token provided by a previous
DescribeDBClusterParameterGroupsrequest. If this parameter is specified, the response includes only records beyond the marker, up to the value specified byMaxRecords.- Parameters:
marker- An optional pagination token provided by a previousDescribeDBClusterParameterGroupsrequest. 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.
-
dbClusterParameterGroups
DescribeDbClusterParameterGroupsResponse.Builder dbClusterParameterGroups(Collection<DBClusterParameterGroup> dbClusterParameterGroups)
A list of DB cluster parameter groups.
- Parameters:
dbClusterParameterGroups- A list of DB cluster parameter groups.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbClusterParameterGroups
DescribeDbClusterParameterGroupsResponse.Builder dbClusterParameterGroups(DBClusterParameterGroup... dbClusterParameterGroups)
A list of DB cluster parameter groups.
- Parameters:
dbClusterParameterGroups- A list of DB cluster parameter groups.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbClusterParameterGroups
DescribeDbClusterParameterGroupsResponse.Builder dbClusterParameterGroups(Consumer<DBClusterParameterGroup.Builder>... dbClusterParameterGroups)
A list of DB cluster parameter groups.
This is a convenience method that creates an instance of theDBClusterParameterGroup.Builderavoiding the need to create one manually viaDBClusterParameterGroup.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#dbClusterParameterGroups(List.) - Parameters:
dbClusterParameterGroups- a consumer that will call methods onDBClusterParameterGroup.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#dbClusterParameterGroups(java.util.Collection)
-
-