Class KeyValueStore
- java.lang.Object
-
- software.amazon.awssdk.services.cloudfront.model.KeyValueStore
-
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<KeyValueStore.Builder,KeyValueStore>
@Generated("software.amazon.awssdk:codegen") public final class KeyValueStore extends Object implements SdkPojo, Serializable, ToCopyableBuilder<KeyValueStore.Builder,KeyValueStore>
The key value store. Use this to separate data from function code, allowing you to update data without having to publish a new version of a function. The key value store holds keys and their corresponding values.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
KeyValueStore.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
arn()
The Amazon Resource Name (ARN) of the key value store.static KeyValueStore.Builder
builder()
String
comment()
A comment for the key value store.boolean
equals(Object obj)
boolean
equalsBySdkFields(Object obj)
<T> Optional<T>
getValueForField(String fieldName, Class<T> clazz)
int
hashCode()
String
id()
The unique Id for the key value store.Instant
lastModifiedTime()
The last-modified time of the key value store.String
name()
The name of the key value store.List<SdkField<?>>
sdkFields()
static Class<? extends KeyValueStore.Builder>
serializableBuilderClass()
String
status()
The status of the key value store.KeyValueStore.Builder
toBuilder()
String
toString()
Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
name
public final String name()
The name of the key value store.
- Returns:
- The name of the key value store.
-
id
public final String id()
The unique Id for the key value store.
- Returns:
- The unique Id for the key value store.
-
comment
public final String comment()
A comment for the key value store.
- Returns:
- A comment for the key value store.
-
arn
public final String arn()
The Amazon Resource Name (ARN) of the key value store.
- Returns:
- The Amazon Resource Name (ARN) of the key value store.
-
status
public final String status()
The status of the key value store.
- Returns:
- The status of the key value store.
-
lastModifiedTime
public final Instant lastModifiedTime()
The last-modified time of the key value store.
- Returns:
- The last-modified time of the key value store.
-
toBuilder
public KeyValueStore.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<KeyValueStore.Builder,KeyValueStore>
-
builder
public static KeyValueStore.Builder builder()
-
serializableBuilderClass
public static Class<? extends KeyValueStore.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFields
in interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-