Interface MessageTag.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MessageTag.Builder,MessageTag>,SdkBuilder<MessageTag.Builder,MessageTag>,SdkPojo
- Enclosing class:
- MessageTag
@Mutable @NotThreadSafe 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 tag.MessageTag.Buildervalue(String value)The value of the 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 tag. The name must meet the following requirements:
-
Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).
-
Contain 256 characters or fewer.
- Parameters:
name- The name of the tag. The name must meet the following requirements:-
Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).
-
Contain 256 characters or fewer.
-
- 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 tag. The value must meet the following requirements:
-
Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).
-
Contain 256 characters or fewer.
- Parameters:
value- The value of the tag. The value must meet the following requirements:-
Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).
-
Contain 256 characters or fewer.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-