Interface DescribeClusterParameterGroupsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribeClusterParameterGroupsResponse.Builder,DescribeClusterParameterGroupsResponse>
,RedshiftResponse.Builder
,SdkBuilder<DescribeClusterParameterGroupsResponse.Builder,DescribeClusterParameterGroupsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- DescribeClusterParameterGroupsResponse
public static interface DescribeClusterParameterGroupsResponse.Builder extends RedshiftResponse.Builder, SdkPojo, CopyableBuilder<DescribeClusterParameterGroupsResponse.Builder,DescribeClusterParameterGroupsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeClusterParameterGroupsResponse.Builder
marker(String marker)
A value that indicates the starting point for the next set of response records in a subsequent request.DescribeClusterParameterGroupsResponse.Builder
parameterGroups(Collection<ClusterParameterGroup> parameterGroups)
A list of ClusterParameterGroup instances.DescribeClusterParameterGroupsResponse.Builder
parameterGroups(Consumer<ClusterParameterGroup.Builder>... parameterGroups)
A list of ClusterParameterGroup instances.DescribeClusterParameterGroupsResponse.Builder
parameterGroups(ClusterParameterGroup... parameterGroups)
A list of ClusterParameterGroup instances.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.redshift.model.RedshiftResponse.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
DescribeClusterParameterGroupsResponse.Builder marker(String marker)
A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the
Marker
parameter and retrying the command. If theMarker
field is empty, all response records have been retrieved for the request.- Parameters:
marker
- A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in theMarker
parameter and retrying the command. If theMarker
field is empty, all response records have been retrieved for the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameterGroups
DescribeClusterParameterGroupsResponse.Builder parameterGroups(Collection<ClusterParameterGroup> parameterGroups)
A list of ClusterParameterGroup instances. Each instance describes one cluster parameter group.
- Parameters:
parameterGroups
- A list of ClusterParameterGroup instances. Each instance describes one cluster parameter group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameterGroups
DescribeClusterParameterGroupsResponse.Builder parameterGroups(ClusterParameterGroup... parameterGroups)
A list of ClusterParameterGroup instances. Each instance describes one cluster parameter group.
- Parameters:
parameterGroups
- A list of ClusterParameterGroup instances. Each instance describes one cluster parameter group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameterGroups
DescribeClusterParameterGroupsResponse.Builder parameterGroups(Consumer<ClusterParameterGroup.Builder>... parameterGroups)
A list of ClusterParameterGroup instances. Each instance describes one cluster parameter group.
This is a convenience method that creates an instance of theClusterParameterGroup.Builder
avoiding the need to create one manually viaClusterParameterGroup.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#parameterGroups(List
.) - Parameters:
parameterGroups
- a consumer that will call methods onClusterParameterGroup.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#parameterGroups(java.util.Collection
)
-
-