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.Builder
arn(String arn)
The Amazon Resource Name (ARN) of the Key Value Store.KeyValueStore.Builder
comment(String comment)
A comment for the Key Value Store.KeyValueStore.Builder
id(String id)
The unique Id for the Key Value Store.KeyValueStore.Builder
lastModifiedTime(Instant lastModifiedTime)
The last-modified time of the Key Value Store.KeyValueStore.Builder
name(String name)
The name of the Key Value Store.KeyValueStore.Builder
status(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.
-
-