Interface MessageData.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MessageData.Builder,MessageData>,SdkBuilder<MessageData.Builder,MessageData>,SdkPojo
- Enclosing class:
- MessageData
public static interface MessageData.Builder extends SdkPojo, CopyableBuilder<MessageData.Builder,MessageData>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MessageData.Buildercode(String code)The error code or status code associated with the message.MessageData.Buildervalue(String value)The message text.-
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
-
code
MessageData.Builder code(String code)
The error code or status code associated with the message.
- Parameters:
code- The error code or status code associated with the message.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
MessageData.Builder value(String value)
The message text.
- Parameters:
value- The message text.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-