Interface FaultRootCauseService.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FaultRootCauseService.Builder,FaultRootCauseService>,SdkBuilder<FaultRootCauseService.Builder,FaultRootCauseService>,SdkPojo
- Enclosing class:
- FaultRootCauseService
@Mutable @NotThreadSafe public static interface FaultRootCauseService.Builder extends SdkPojo, CopyableBuilder<FaultRootCauseService.Builder,FaultRootCauseService>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FaultRootCauseService.BuilderaccountId(String accountId)The account ID associated to the service.FaultRootCauseService.BuilderentityPath(Collection<FaultRootCauseEntity> entityPath)The path of root cause entities found on the service.FaultRootCauseService.BuilderentityPath(Consumer<FaultRootCauseEntity.Builder>... entityPath)The path of root cause entities found on the service.FaultRootCauseService.BuilderentityPath(FaultRootCauseEntity... entityPath)The path of root cause entities found on the service.FaultRootCauseService.Builderinferred(Boolean inferred)A Boolean value indicating if the service is inferred from the trace.FaultRootCauseService.Buildername(String name)The service name.FaultRootCauseService.Buildernames(String... names)A collection of associated service names.FaultRootCauseService.Buildernames(Collection<String> names)A collection of associated service names.FaultRootCauseService.Buildertype(String type)The type associated to the service.-
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
-
name
FaultRootCauseService.Builder name(String name)
The service name.
- Parameters:
name- The service name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
names
FaultRootCauseService.Builder names(Collection<String> names)
A collection of associated service names.
- Parameters:
names- A collection of associated service names.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
names
FaultRootCauseService.Builder names(String... names)
A collection of associated service names.
- Parameters:
names- A collection of associated service names.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
FaultRootCauseService.Builder type(String type)
The type associated to the service.
- Parameters:
type- The type associated to the service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accountId
FaultRootCauseService.Builder accountId(String accountId)
The account ID associated to the service.
- Parameters:
accountId- The account ID associated to the service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entityPath
FaultRootCauseService.Builder entityPath(Collection<FaultRootCauseEntity> entityPath)
The path of root cause entities found on the service.
- Parameters:
entityPath- The path of root cause entities found on the service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entityPath
FaultRootCauseService.Builder entityPath(FaultRootCauseEntity... entityPath)
The path of root cause entities found on the service.
- Parameters:
entityPath- The path of root cause entities found on the service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entityPath
FaultRootCauseService.Builder entityPath(Consumer<FaultRootCauseEntity.Builder>... entityPath)
The path of root cause entities found on the service.
This is a convenience method that creates an instance of theFaultRootCauseEntity.Builderavoiding the need to create one manually viaFaultRootCauseEntity.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#entityPath(List.) - Parameters:
entityPath- a consumer that will call methods onFaultRootCauseEntity.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#entityPath(java.util.Collection)
-
inferred
FaultRootCauseService.Builder inferred(Boolean inferred)
A Boolean value indicating if the service is inferred from the trace.
- Parameters:
inferred- A Boolean value indicating if the service is inferred from the trace.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-