Interface InspectionErrorDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InspectionErrorDetails.Builder,InspectionErrorDetails>,SdkBuilder<InspectionErrorDetails.Builder,InspectionErrorDetails>,SdkPojo
- Enclosing class:
- InspectionErrorDetails
@Mutable @NotThreadSafe public static interface InspectionErrorDetails.Builder extends SdkPojo, CopyableBuilder<InspectionErrorDetails.Builder,InspectionErrorDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InspectionErrorDetails.BuildercatchIndex(Integer catchIndex)The array index of the Catch which handled the exception.InspectionErrorDetails.BuilderretryBackoffIntervalSeconds(Integer retryBackoffIntervalSeconds)The duration in seconds of the backoff for a retry on a failed state invocation.InspectionErrorDetails.BuilderretryIndex(Integer retryIndex)The array index of the Retry which handled the exception.-
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
-
catchIndex
InspectionErrorDetails.Builder catchIndex(Integer catchIndex)
The array index of the Catch which handled the exception.
- Parameters:
catchIndex- The array index of the Catch which handled the exception.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
retryIndex
InspectionErrorDetails.Builder retryIndex(Integer retryIndex)
The array index of the Retry which handled the exception.
- Parameters:
retryIndex- The array index of the Retry which handled the exception.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
retryBackoffIntervalSeconds
InspectionErrorDetails.Builder retryBackoffIntervalSeconds(Integer retryBackoffIntervalSeconds)
The duration in seconds of the backoff for a retry on a failed state invocation.
- Parameters:
retryBackoffIntervalSeconds- The duration in seconds of the backoff for a retry on a failed state invocation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-