listKeyValueStores

Specifies the key value stores to list.

Samples


fun main() { 
   //sampleStart 
   // The following command retrieves a list of KeyValueStores with READY status.
val resp = cloudFrontClient.listKeyValueStores {
    status = "READY"
} 
   //sampleEnd
}