Interface S3Tag.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<S3Tag.Builder,S3Tag>,SdkBuilder<S3Tag.Builder,S3Tag>,SdkPojo
- Enclosing class:
- S3Tag
public static interface S3Tag.Builder extends SdkPojo, CopyableBuilder<S3Tag.Builder,S3Tag>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description S3Tag.Builderkey(String key)The name assigned to the tag that you create.S3Tag.Buildervalue(String value)The value that corresponds to the key.-
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
S3Tag.Builder key(String key)
The name assigned to the tag that you create.
- Parameters:
key- The name assigned to the tag that you create.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
S3Tag.Builder value(String value)
The value that corresponds to the key.
- Parameters:
value- The value that corresponds to the key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-