Interface MessageHeader.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MessageHeader.Builder,MessageHeader>,SdkBuilder<MessageHeader.Builder,MessageHeader>,SdkPojo
- Enclosing class:
- MessageHeader
@Mutable @NotThreadSafe public static interface MessageHeader.Builder extends SdkPojo, CopyableBuilder<MessageHeader.Builder,MessageHeader>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MessageHeader.Buildername(String name)The name of the message header.MessageHeader.Buildervalue(String value)The value of the message header.-
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
-
name
MessageHeader.Builder name(String name)
The name of the message header. The message header name has to meet the following criteria:
-
Can contain any printable ASCII character (33 - 126) except for colon (:).
-
Can contain no more than 126 characters.
- Parameters:
name- The name of the message header. The message header name has to meet the following criteria:-
Can contain any printable ASCII character (33 - 126) except for colon (:).
-
Can contain no more than 126 characters.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
value
MessageHeader.Builder value(String value)
The value of the message header. The message header value has to meet the following criteria:
-
Can contain any printable ASCII character.
-
Can contain no more than 870 characters.
- Parameters:
value- The value of the message header. The message header value has to meet the following criteria:-
Can contain any printable ASCII character.
-
Can contain no more than 870 characters.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-