Interface IntegrationError.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<IntegrationError.Builder,IntegrationError>
,SdkBuilder<IntegrationError.Builder,IntegrationError>
,SdkPojo
- Enclosing class:
- IntegrationError
public static interface IntegrationError.Builder extends SdkPojo, CopyableBuilder<IntegrationError.Builder,IntegrationError>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntegrationError.Builder
errorCode(String errorCode)
The error code of an inbound integration error.IntegrationError.Builder
errorMessage(String errorMessage)
The error message of an inbound integration error.-
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, sdkFields
-
-
-
-
Method Detail
-
errorCode
IntegrationError.Builder errorCode(String errorCode)
The error code of an inbound integration error.
- Parameters:
errorCode
- The error code of an inbound integration error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorMessage
IntegrationError.Builder errorMessage(String errorMessage)
The error message of an inbound integration error.
- Parameters:
errorMessage
- The error message of an inbound integration error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-