terraform/vendor/github.com/aws/aws-sdk-go/service/codedeploy/waiters.go

47 lines
1.0 KiB
Go
Raw Normal View History

// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
package codedeploy
import (
"github.com/aws/aws-sdk-go/private/waiter"
)
2016-10-17 23:21:08 +02:00
// 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()
}