Interface S3ObjectTag.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<S3ObjectTag.Builder,S3ObjectTag>,SdkBuilder<S3ObjectTag.Builder,S3ObjectTag>,SdkPojo
- Enclosing class:
- S3ObjectTag
@Mutable @NotThreadSafe public static interface S3ObjectTag.Builder extends SdkPojo, CopyableBuilder<S3ObjectTag.Builder,S3ObjectTag>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description S3ObjectTag.Builderkey(String key)The key of the tag.S3ObjectTag.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
-
key
S3ObjectTag.Builder key(String key)
The key of the tag.
Constraints: Tag keys are case-sensitive and can be up to 128 Unicode characters in length. May not begin with
aws:.- Parameters:
key- The key of the tag.Constraints: Tag keys are case-sensitive and can be up to 128 Unicode characters in length. May not begin with
aws:.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
S3ObjectTag.Builder value(String value)
The value of the tag.
Constraints: Tag values are case-sensitive and can be up to 256 Unicode characters in length.
- Parameters:
value- The value of the tag.Constraints: Tag values are case-sensitive and can be up to 256 Unicode characters in length.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-