getSolNetworkPackageContent

Gets the contents of a network package.

A network package is a .zip file in CSAR (Cloud Service Archive) format defines the function packages you want to deploy and the Amazon Web Services infrastructure you want to deploy them on.

Samples


fun main() { 
   //sampleStart 
   // Get a network package Content
val resp = tnbClient.getSolNetworkPackageContent {
    accept = PackageContentType.fromValue("application/zip")
    nsdInfoId = "np-0d5b823eb5c2a9241"
} 
   //sampleEnd
}