Interface ErrorRootCauseService.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ErrorRootCauseService.Builder,ErrorRootCauseService>,SdkBuilder<ErrorRootCauseService.Builder,ErrorRootCauseService>,SdkPojo
- Enclosing class:
- ErrorRootCauseService
@Mutable @NotThreadSafe public static interface ErrorRootCauseService.Builder extends SdkPojo, CopyableBuilder<ErrorRootCauseService.Builder,ErrorRootCauseService>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ErrorRootCauseService.BuilderaccountId(String accountId)The account ID associated to the service.ErrorRootCauseService.BuilderentityPath(Collection<ErrorRootCauseEntity> entityPath)The path of root cause entities found on the service.ErrorRootCauseService.BuilderentityPath(Consumer<ErrorRootCauseEntity.Builder>... entityPath)The path of root cause entities found on the service.ErrorRootCauseService.BuilderentityPath(ErrorRootCauseEntity... entityPath)The path of root cause entities found on the service.ErrorRootCauseService.Builderinferred(Boolean inferred)A Boolean value indicating if the service is inferred from the trace.ErrorRootCauseService.Buildername(String name)The service name.ErrorRootCauseService.Buildernames(String... names)A collection of associated service names.ErrorRootCauseService.Buildernames(Collection<String> names)A collection of associated service names.ErrorRootCauseService.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
ErrorRootCauseService.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
ErrorRootCauseService.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
ErrorRootCauseService.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
ErrorRootCauseService.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
ErrorRootCauseService.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
ErrorRootCauseService.Builder entityPath(Collection<ErrorRootCauseEntity> 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
ErrorRootCauseService.Builder entityPath(ErrorRootCauseEntity... 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
ErrorRootCauseService.Builder entityPath(Consumer<ErrorRootCauseEntity.Builder>... entityPath)
The path of root cause entities found on the service.
This is a convenience method that creates an instance of theErrorRootCauseEntity.Builderavoiding the need to create one manually viaErrorRootCauseEntity.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 onErrorRootCauseEntity.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#entityPath(java.util.Collection)
-
inferred
ErrorRootCauseService.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.
-
-