Interface MessageTag.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MessageTag.Builder,MessageTag>,SdkBuilder<MessageTag.Builder,MessageTag>,SdkPojo
- Enclosing class:
- MessageTag
public static interface MessageTag.Builder extends SdkPojo, CopyableBuilder<MessageTag.Builder,MessageTag>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MessageTag.Buildername(String name)The name of the message tag.MessageTag.Buildervalue(String value)The value of the message tag.-
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
MessageTag.Builder name(String name)
The name of the message tag. The message tag name has to meet the following criteria:
-
It can only contain ASCII letters (a–z, A–Z), numbers (0–9), underscores (_), or dashes (-).
-
It can contain no more than 256 characters.
- Parameters:
name- The name of the message tag. The message tag name has to meet the following criteria:-
It can only contain ASCII letters (a–z, A–Z), numbers (0–9), underscores (_), or dashes (-).
-
It can contain no more than 256 characters.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
value
MessageTag.Builder value(String value)
The value of the message tag. The message tag value has to meet the following criteria:
-
It can only contain ASCII letters (a–z, A–Z), numbers (0–9), underscores (_), or dashes (-).
-
It can contain no more than 256 characters.
- Parameters:
value- The value of the message tag. The message tag value has to meet the following criteria:-
It can only contain ASCII letters (a–z, A–Z), numbers (0–9), underscores (_), or dashes (-).
-
It can contain no more than 256 characters.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-