getDeploymentStrategy
inline suspend fun AppConfigClient.getDeploymentStrategy(crossinline block: GetDeploymentStrategyRequest.Builder.() -> Unit): GetDeploymentStrategyResponse
Retrieves information about a deployment strategy. A deployment strategy defines important criteria for rolling out your configuration to the designated targets. A deployment strategy includes the overall duration required, a percentage of targets to receive the deployment during each interval, an algorithm that defines how percentage grows, and bake time.
Samples
fun main() {
//sampleStart
// The following get deployment strategy example lists the details of the specified deployment
// strategy.
val resp = appConfigClient.getDeploymentStrategy {
deploymentStrategyId = "1225qzk"
}
//sampleEnd
}