Interface ListIndicatorsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListIndicatorsResponse.Builder,ListIndicatorsResponse>,DetectiveResponse.Builder,SdkBuilder<ListIndicatorsResponse.Builder,ListIndicatorsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListIndicatorsResponse
public static interface ListIndicatorsResponse.Builder extends DetectiveResponse.Builder, SdkPojo, CopyableBuilder<ListIndicatorsResponse.Builder,ListIndicatorsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListIndicatorsResponse.BuildergraphArn(String graphArn)The ARN of the behavior graph.ListIndicatorsResponse.Builderindicators(Collection<Indicator> indicators)Indicators of compromise listed based on severity.ListIndicatorsResponse.Builderindicators(Consumer<Indicator.Builder>... indicators)Indicators of compromise listed based on severity.ListIndicatorsResponse.Builderindicators(Indicator... indicators)Indicators of compromise listed based on severity.ListIndicatorsResponse.BuilderinvestigationId(String investigationId)The investigation ID of the investigation report.ListIndicatorsResponse.BuildernextToken(String nextToken)List if there are more results available.-
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
-
graphArn
ListIndicatorsResponse.Builder graphArn(String graphArn)
The ARN of the behavior graph.
- Parameters:
graphArn- The ARN of the behavior graph.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
investigationId
ListIndicatorsResponse.Builder investigationId(String investigationId)
The investigation ID of the investigation report.
- Parameters:
investigationId- The investigation ID of the investigation report.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListIndicatorsResponse.Builder nextToken(String nextToken)
List if there are more results available. The value of nextToken is a unique pagination token for each page. Repeat the call using the returned token to retrieve the next page. Keep all other arguments unchanged.
Each pagination token expires after 24 hours. Using an expired pagination token will return a Validation Exception error.
- Parameters:
nextToken- List if there are more results available. The value of nextToken is a unique pagination token for each page. Repeat the call using the returned token to retrieve the next page. Keep all other arguments unchanged.Each pagination token expires after 24 hours. Using an expired pagination token will return a Validation Exception error.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
indicators
ListIndicatorsResponse.Builder indicators(Collection<Indicator> indicators)
Indicators of compromise listed based on severity.
- Parameters:
indicators- Indicators of compromise listed based on severity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
indicators
ListIndicatorsResponse.Builder indicators(Indicator... indicators)
Indicators of compromise listed based on severity.
- Parameters:
indicators- Indicators of compromise listed based on severity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
indicators
ListIndicatorsResponse.Builder indicators(Consumer<Indicator.Builder>... indicators)
Indicators of compromise listed based on severity.
This is a convenience method that creates an instance of theIndicator.Builderavoiding the need to create one manually viaIndicator.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#indicators(List.) - Parameters:
indicators- a consumer that will call methods onIndicator.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#indicators(java.util.Collection)
-
-