updateHttpNamespace

Updates an HTTP namespace.

Samples

import aws.sdk.kotlin.services.servicediscovery.model.HttpNamespaceChange

fun main() { 
   //sampleStart 
   // The following example updates the description of a HTTP namespace.
val resp = serviceDiscoveryClient.updateHttpNamespace {
    id = "ns-vh4nbmEXAMPLE"
    namespace = HttpNamespaceChange {
        description = "The updated namespace description."
    }
} 
   //sampleEnd
}