describeKeyValueStore
abstract suspend fun describeKeyValueStore(input: DescribeKeyValueStoreRequest): DescribeKeyValueStoreResponse
Specifies the key value store and its configuration.
Samples
fun main() {
//sampleStart
// Use the following command to describe a KeyValueStore.
val resp = cloudFrontClient.describeKeyValueStore {
name = "my-keyvaluestore-name"
}
//sampleEnd
}