updateDeploymentStrategy

Updates a deployment strategy.

Samples


fun main() { 
   //sampleStart 
   // The following update deployment strategy example updates final bake time to 20 minutes in the
// specified deployment strategy.
val resp = appConfigClient.updateDeploymentStrategy {
    deploymentStrategyId = "1225qzk"
    finalBakeTimeInMinutes = 20
} 
   //sampleEnd
}