Interface ListGraphsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListGraphsResponse.Builder,ListGraphsResponse>,DetectiveResponse.Builder,SdkBuilder<ListGraphsResponse.Builder,ListGraphsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListGraphsResponse
public static interface ListGraphsResponse.Builder extends DetectiveResponse.Builder, SdkPojo, CopyableBuilder<ListGraphsResponse.Builder,ListGraphsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListGraphsResponse.BuildergraphList(Collection<Graph> graphList)A list of behavior graphs that the account is an administrator account for.ListGraphsResponse.BuildergraphList(Consumer<Graph.Builder>... graphList)A list of behavior graphs that the account is an administrator account for.ListGraphsResponse.BuildergraphList(Graph... graphList)A list of behavior graphs that the account is an administrator account for.ListGraphsResponse.BuildernextToken(String nextToken)If there are more behavior graphs remaining in the results, then this is the pagination token to use to request the next page of behavior graphs.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.detective.model.DetectiveResponse.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
-
graphList
ListGraphsResponse.Builder graphList(Collection<Graph> graphList)
A list of behavior graphs that the account is an administrator account for.
- Parameters:
graphList- A list of behavior graphs that the account is an administrator account for.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
graphList
ListGraphsResponse.Builder graphList(Graph... graphList)
A list of behavior graphs that the account is an administrator account for.
- Parameters:
graphList- A list of behavior graphs that the account is an administrator account for.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
graphList
ListGraphsResponse.Builder graphList(Consumer<Graph.Builder>... graphList)
A list of behavior graphs that the account is an administrator account for.
This is a convenience method that creates an instance of theGraph.Builderavoiding the need to create one manually viaGraph.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#graphList(List.) - Parameters:
graphList- a consumer that will call methods onGraph.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#graphList(java.util.Collection)
-
nextToken
ListGraphsResponse.Builder nextToken(String nextToken)
If there are more behavior graphs remaining in the results, then this is the pagination token to use to request the next page of behavior graphs.
- Parameters:
nextToken- If there are more behavior graphs remaining in the results, then this is the pagination token to use to request the next page of behavior graphs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-