Interface GetInsightSummariesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetInsightSummariesResponse.Builder,GetInsightSummariesResponse>,SdkBuilder<GetInsightSummariesResponse.Builder,GetInsightSummariesResponse>,SdkPojo,SdkResponse.Builder,XRayResponse.Builder
- Enclosing class:
- GetInsightSummariesResponse
@Mutable @NotThreadSafe public static interface GetInsightSummariesResponse.Builder extends XRayResponse.Builder, SdkPojo, CopyableBuilder<GetInsightSummariesResponse.Builder,GetInsightSummariesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetInsightSummariesResponse.BuilderinsightSummaries(Collection<InsightSummary> insightSummaries)The summary of each insight within the group matching the provided filters.GetInsightSummariesResponse.BuilderinsightSummaries(Consumer<InsightSummary.Builder>... insightSummaries)The summary of each insight within the group matching the provided filters.GetInsightSummariesResponse.BuilderinsightSummaries(InsightSummary... insightSummaries)The summary of each insight within the group matching the provided filters.GetInsightSummariesResponse.BuildernextToken(String nextToken)Pagination token.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
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
-
Methods inherited from interface software.amazon.awssdk.services.xray.model.XRayResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
insightSummaries
GetInsightSummariesResponse.Builder insightSummaries(Collection<InsightSummary> insightSummaries)
The summary of each insight within the group matching the provided filters. The summary contains the InsightID, start and end time, the root cause service, the root cause and client impact statistics, the top anomalous services, and the status of the insight.
- Parameters:
insightSummaries- The summary of each insight within the group matching the provided filters. The summary contains the InsightID, start and end time, the root cause service, the root cause and client impact statistics, the top anomalous services, and the status of the insight.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
insightSummaries
GetInsightSummariesResponse.Builder insightSummaries(InsightSummary... insightSummaries)
The summary of each insight within the group matching the provided filters. The summary contains the InsightID, start and end time, the root cause service, the root cause and client impact statistics, the top anomalous services, and the status of the insight.
- Parameters:
insightSummaries- The summary of each insight within the group matching the provided filters. The summary contains the InsightID, start and end time, the root cause service, the root cause and client impact statistics, the top anomalous services, and the status of the insight.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
insightSummaries
GetInsightSummariesResponse.Builder insightSummaries(Consumer<InsightSummary.Builder>... insightSummaries)
The summary of each insight within the group matching the provided filters. The summary contains the InsightID, start and end time, the root cause service, the root cause and client impact statistics, the top anomalous services, and the status of the insight.
This is a convenience method that creates an instance of theInsightSummary.Builderavoiding the need to create one manually viaInsightSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#insightSummaries(List.) - Parameters:
insightSummaries- a consumer that will call methods onInsightSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#insightSummaries(java.util.Collection)
-
nextToken
GetInsightSummariesResponse.Builder nextToken(String nextToken)
Pagination token.
- Parameters:
nextToken- Pagination token.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-