KeyValueStoreArgs

data class KeyValueStoreArgs(val comment: Output<String>? = null, val importSource: Output<KeyValueStoreImportSourceArgs>? = null, val name: Output<String>? = null) : ConvertibleToJava<KeyValueStoreArgs>

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.

Constructors

Link copied to clipboard
constructor(comment: Output<String>? = null, importSource: Output<KeyValueStoreImportSourceArgs>? = null, name: Output<String>? = null)

Properties

Link copied to clipboard
val comment: Output<String>? = null

A comment for the key value store.

Link copied to clipboard

The import source for the key value store.

Link copied to clipboard
val name: Output<String>? = null

The name of the key value store.

Functions

Link copied to clipboard
open override fun toJava(): KeyValueStoreArgs