Interface ResponseTimeRootCause.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ResponseTimeRootCause.Builder,ResponseTimeRootCause>,SdkBuilder<ResponseTimeRootCause.Builder,ResponseTimeRootCause>,SdkPojo
- Enclosing class:
- ResponseTimeRootCause
@Mutable @NotThreadSafe public static interface ResponseTimeRootCause.Builder extends SdkPojo, CopyableBuilder<ResponseTimeRootCause.Builder,ResponseTimeRootCause>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResponseTimeRootCause.BuilderclientImpacting(Boolean clientImpacting)A flag that denotes that the root cause impacts the trace client.ResponseTimeRootCause.Builderservices(Collection<ResponseTimeRootCauseService> services)A list of corresponding services.ResponseTimeRootCause.Builderservices(Consumer<ResponseTimeRootCauseService.Builder>... services)A list of corresponding services.ResponseTimeRootCause.Builderservices(ResponseTimeRootCauseService... services)A list of corresponding services.-
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
-
-
-
-
Method Detail
-
services
ResponseTimeRootCause.Builder services(Collection<ResponseTimeRootCauseService> services)
A list of corresponding services. A service identifies a segment and contains a name, account ID, type, and inferred flag.
- Parameters:
services- A list of corresponding services. A service identifies a segment and contains a name, account ID, type, and inferred flag.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
services
ResponseTimeRootCause.Builder services(ResponseTimeRootCauseService... services)
A list of corresponding services. A service identifies a segment and contains a name, account ID, type, and inferred flag.
- Parameters:
services- A list of corresponding services. A service identifies a segment and contains a name, account ID, type, and inferred flag.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
services
ResponseTimeRootCause.Builder services(Consumer<ResponseTimeRootCauseService.Builder>... services)
A list of corresponding services. A service identifies a segment and contains a name, account ID, type, and inferred flag.
This is a convenience method that creates an instance of theResponseTimeRootCauseService.Builderavoiding the need to create one manually viaResponseTimeRootCauseService.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#services(List.) - Parameters:
services- a consumer that will call methods onResponseTimeRootCauseService.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#services(java.util.Collection)
-
clientImpacting
ResponseTimeRootCause.Builder clientImpacting(Boolean clientImpacting)
A flag that denotes that the root cause impacts the trace client.
- Parameters:
clientImpacting- A flag that denotes that the root cause impacts the trace client.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-