getDataLakeNamespace

Enables you to programmatically view an Amazon Web Services Supply Chain data lake namespace. Developers can view the data lake namespace information such as description for a given instance ID and namespace name.

Samples


fun main() { 
   //sampleStart 
   // Get properties of an existing AWS Supply Chain namespace
val resp = supplyChainClient.getDataLakeNamespace {
    instanceId = "1877dd20-dee9-4639-8e99-cb67acf21fe5"
    name = "my_namespace"
} 
   //sampleEnd
}

fun main() { 
   //sampleStart 
   // Get proporties of an existing pre defined AWS Supply Chain namespace
val resp = supplyChainClient.getDataLakeNamespace {
    instanceId = "1877dd20-dee9-4639-8e99-cb67acf21fe5"
    name = "asc"
} 
   //sampleEnd
}