Interface FaultRootCause.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FaultRootCause.Builder,FaultRootCause>,SdkBuilder<FaultRootCause.Builder,FaultRootCause>,SdkPojo
- Enclosing class:
- FaultRootCause
@Mutable @NotThreadSafe public static interface FaultRootCause.Builder extends SdkPojo, CopyableBuilder<FaultRootCause.Builder,FaultRootCause>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FaultRootCause.BuilderclientImpacting(Boolean clientImpacting)A flag that denotes that the root cause impacts the trace client.FaultRootCause.Builderservices(Collection<FaultRootCauseService> services)A list of corresponding services.FaultRootCause.Builderservices(Consumer<FaultRootCauseService.Builder>... services)A list of corresponding services.FaultRootCause.Builderservices(FaultRootCauseService... 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
FaultRootCause.Builder services(Collection<FaultRootCauseService> services)
A list of corresponding services. A service identifies a segment and it contains a name, account ID, type, and inferred flag.
- Parameters:
services- A list of corresponding services. A service identifies a segment and it 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
FaultRootCause.Builder services(FaultRootCauseService... services)
A list of corresponding services. A service identifies a segment and it contains a name, account ID, type, and inferred flag.
- Parameters:
services- A list of corresponding services. A service identifies a segment and it 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
FaultRootCause.Builder services(Consumer<FaultRootCauseService.Builder>... services)
A list of corresponding services. A service identifies a segment and it contains a name, account ID, type, and inferred flag.
This is a convenience method that creates an instance of theFaultRootCauseService.Builderavoiding the need to create one manually viaFaultRootCauseService.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 onFaultRootCauseService.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#services(java.util.Collection)
-
clientImpacting
FaultRootCause.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.
-
-