describeKeyValueStore
inline suspend fun CloudFrontClient.describeKeyValueStore(crossinline block: DescribeKeyValueStoreRequest.Builder.() -> Unit): 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
}