Interface FailureDescription.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<FailureDescription.Builder,FailureDescription>
,SdkBuilder<FailureDescription.Builder,FailureDescription>
,SdkPojo
- Enclosing class:
- FailureDescription
public static interface FailureDescription.Builder extends SdkPojo, CopyableBuilder<FailureDescription.Builder,FailureDescription>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FailureDescription.Builder
details(String details)
A message providing details about the error that caused the failure.FailureDescription.Builder
type(String type)
The type of error that caused the failure.FailureDescription.Builder
type(DeliveryStreamFailureType type)
The type of error that caused the failure.-
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
-
type
FailureDescription.Builder type(String type)
The type of error that caused the failure.
- Parameters:
type
- The type of error that caused the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DeliveryStreamFailureType
,DeliveryStreamFailureType
-
type
FailureDescription.Builder type(DeliveryStreamFailureType type)
The type of error that caused the failure.
- Parameters:
type
- The type of error that caused the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DeliveryStreamFailureType
,DeliveryStreamFailureType
-
details
FailureDescription.Builder details(String details)
A message providing details about the error that caused the failure.
- Parameters:
details
- A message providing details about the error that caused the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-