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.BuildererrorCode(String errorCode)The error code associated with the integration.IntegrationError.BuildererrorMessage(String errorMessage)A message explaining the 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
errorCode
IntegrationError.Builder errorCode(String errorCode)
The error code associated with the integration.
- Parameters:
errorCode- The error code associated with the integration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorMessage
IntegrationError.Builder errorMessage(String errorMessage)
A message explaining the error.
- Parameters:
errorMessage- A message explaining the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-