Interface InvalidSignalDecoder.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InvalidSignalDecoder.Builder,InvalidSignalDecoder>,SdkBuilder<InvalidSignalDecoder.Builder,InvalidSignalDecoder>,SdkPojo
- Enclosing class:
- InvalidSignalDecoder
public static interface InvalidSignalDecoder.Builder extends SdkPojo, CopyableBuilder<InvalidSignalDecoder.Builder,InvalidSignalDecoder>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InvalidSignalDecoder.Builderhint(String hint)The possible cause for the invalid signal decoder.InvalidSignalDecoder.Buildername(String name)The name of a signal decoder that isn't valid.InvalidSignalDecoder.Builderreason(String reason)A message about why the signal decoder isn't valid.InvalidSignalDecoder.Builderreason(SignalDecoderFailureReason reason)A message about why the signal decoder isn't valid.-
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
-
name
InvalidSignalDecoder.Builder name(String name)
The name of a signal decoder that isn't valid.
- Parameters:
name- The name of a signal decoder that isn't valid.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
reason
InvalidSignalDecoder.Builder reason(String reason)
A message about why the signal decoder isn't valid.
- Parameters:
reason- A message about why the signal decoder isn't valid.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SignalDecoderFailureReason,SignalDecoderFailureReason
-
reason
InvalidSignalDecoder.Builder reason(SignalDecoderFailureReason reason)
A message about why the signal decoder isn't valid.
- Parameters:
reason- A message about why the signal decoder isn't valid.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SignalDecoderFailureReason,SignalDecoderFailureReason
-
hint
InvalidSignalDecoder.Builder hint(String hint)
The possible cause for the invalid signal decoder.
- Parameters:
hint- The possible cause for the invalid signal decoder.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-