Interface KeyValueStore.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<KeyValueStore.Builder,KeyValueStore>,SdkBuilder<KeyValueStore.Builder,KeyValueStore>,SdkPojo
- Enclosing class:
- KeyValueStore
public static interface KeyValueStore.Builder extends SdkPojo, CopyableBuilder<KeyValueStore.Builder,KeyValueStore>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KeyValueStore.Builderarn(String arn)The Amazon Resource Name (ARN) of the key value store.KeyValueStore.Buildercomment(String comment)A comment for the key value store.KeyValueStore.Builderid(String id)The unique Id for the key value store.KeyValueStore.BuilderlastModifiedTime(Instant lastModifiedTime)The last-modified time of the key value store.KeyValueStore.Buildername(String name)The name of the key value store.KeyValueStore.Builderstatus(String status)The status of the key value store.-
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, sdkFields
-
-
-
-
Method Detail
-
name
KeyValueStore.Builder name(String name)
The name of the key value store.
- Parameters:
name- The name of the key value store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
id
KeyValueStore.Builder id(String id)
The unique Id for the key value store.
- Parameters:
id- The unique Id for the key value store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
comment
KeyValueStore.Builder comment(String comment)
A comment for the key value store.
- Parameters:
comment- A comment for the key value store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
KeyValueStore.Builder arn(String arn)
The Amazon Resource Name (ARN) of the key value store.
- Parameters:
arn- The Amazon Resource Name (ARN) of the key value store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
KeyValueStore.Builder status(String status)
The status of the key value store.
- Parameters:
status- The status of the key value store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedTime
KeyValueStore.Builder lastModifiedTime(Instant lastModifiedTime)
The last-modified time of the key value store.
- Parameters:
lastModifiedTime- The last-modified time of the key value store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-