47 lines
1.0 KiB
Go
47 lines
1.0 KiB
Go
// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
|
|
|
|
package codedeploy
|
|
|
|
import (
|
|
"github.com/aws/aws-sdk-go/private/waiter"
|
|
)
|
|
|
|
// WaitUntilDeploymentSuccessful uses the CodeDeploy API operation
|
|
// GetDeployment to wait for a condition to be met before returning.
|
|
// If the condition is not meet within the max attempt window an error will
|
|
// be returned.
|
|
func (c *CodeDeploy) WaitUntilDeploymentSuccessful(input *GetDeploymentInput) error {
|
|
waiterCfg := waiter.Config{
|
|
Operation: "GetDeployment",
|
|
Delay: 15,
|
|
MaxAttempts: 120,
|
|
Acceptors: []waiter.WaitAcceptor{
|
|
{
|
|
State: "success",
|
|
Matcher: "path",
|
|
Argument: "deploymentInfo.status",
|
|
Expected: "Succeeded",
|
|
},
|
|
{
|
|
State: "failure",
|
|
Matcher: "path",
|
|
Argument: "deploymentInfo.status",
|
|
Expected: "Failed",
|
|
},
|
|
{
|
|
State: "failure",
|
|
Matcher: "path",
|
|
Argument: "deploymentInfo.status",
|
|
Expected: "Stopped",
|
|
},
|
|
},
|
|
}
|
|
|
|
w := waiter.Waiter{
|
|
Client: c,
|
|
Input: input,
|
|
Config: waiterCfg,
|
|
}
|
|
return w.Wait()
|
|
}
|