github.com/aavshr/aws-sdk-go@v1.41.3/service/codegurureviewer/waiters.go (about) 1 // Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. 2 3 package codegurureviewer 4 5 import ( 6 "time" 7 8 "github.com/aavshr/aws-sdk-go/aws" 9 "github.com/aavshr/aws-sdk-go/aws/request" 10 ) 11 12 // WaitUntilCodeReviewCompleted uses the CodeGuruReviewer API operation 13 // DescribeCodeReview to wait for a condition to be met before returning. 14 // If the condition is not met within the max attempt window, an error will 15 // be returned. 16 func (c *CodeGuruReviewer) WaitUntilCodeReviewCompleted(input *DescribeCodeReviewInput) error { 17 return c.WaitUntilCodeReviewCompletedWithContext(aws.BackgroundContext(), input) 18 } 19 20 // WaitUntilCodeReviewCompletedWithContext is an extended version of WaitUntilCodeReviewCompleted. 21 // With the support for passing in a context and options to configure the 22 // Waiter and the underlying request options. 23 // 24 // The context must be non-nil and will be used for request cancellation. If 25 // the context is nil a panic will occur. In the future the SDK may create 26 // sub-contexts for http.Requests. See https://golang.org/pkg/context/ 27 // for more information on using Contexts. 28 func (c *CodeGuruReviewer) WaitUntilCodeReviewCompletedWithContext(ctx aws.Context, input *DescribeCodeReviewInput, opts ...request.WaiterOption) error { 29 w := request.Waiter{ 30 Name: "WaitUntilCodeReviewCompleted", 31 MaxAttempts: 60, 32 Delay: request.ConstantWaiterDelay(10 * time.Second), 33 Acceptors: []request.WaiterAcceptor{ 34 { 35 State: request.SuccessWaiterState, 36 Matcher: request.PathWaiterMatch, Argument: "CodeReview.State", 37 Expected: "Completed", 38 }, 39 { 40 State: request.RetryWaiterState, 41 Matcher: request.PathWaiterMatch, Argument: "CodeReview.State", 42 Expected: "Pending", 43 }, 44 }, 45 Logger: c.Config.Logger, 46 NewRequest: func(opts []request.Option) (*request.Request, error) { 47 var inCpy *DescribeCodeReviewInput 48 if input != nil { 49 tmp := *input 50 inCpy = &tmp 51 } 52 req, _ := c.DescribeCodeReviewRequest(inCpy) 53 req.SetContext(ctx) 54 req.ApplyOptions(opts...) 55 return req, nil 56 }, 57 } 58 w.ApplyOptions(opts...) 59 60 return w.WaitWithContext(ctx) 61 } 62 63 // WaitUntilRepositoryAssociationSucceeded uses the CodeGuruReviewer API operation 64 // DescribeRepositoryAssociation to wait for a condition to be met before returning. 65 // If the condition is not met within the max attempt window, an error will 66 // be returned. 67 func (c *CodeGuruReviewer) WaitUntilRepositoryAssociationSucceeded(input *DescribeRepositoryAssociationInput) error { 68 return c.WaitUntilRepositoryAssociationSucceededWithContext(aws.BackgroundContext(), input) 69 } 70 71 // WaitUntilRepositoryAssociationSucceededWithContext is an extended version of WaitUntilRepositoryAssociationSucceeded. 72 // With the support for passing in a context and options to configure the 73 // Waiter and the underlying request options. 74 // 75 // The context must be non-nil and will be used for request cancellation. If 76 // the context is nil a panic will occur. In the future the SDK may create 77 // sub-contexts for http.Requests. See https://golang.org/pkg/context/ 78 // for more information on using Contexts. 79 func (c *CodeGuruReviewer) WaitUntilRepositoryAssociationSucceededWithContext(ctx aws.Context, input *DescribeRepositoryAssociationInput, opts ...request.WaiterOption) error { 80 w := request.Waiter{ 81 Name: "WaitUntilRepositoryAssociationSucceeded", 82 MaxAttempts: 20, 83 Delay: request.ConstantWaiterDelay(10 * time.Second), 84 Acceptors: []request.WaiterAcceptor{ 85 { 86 State: request.SuccessWaiterState, 87 Matcher: request.PathWaiterMatch, Argument: "RepositoryAssociation.State", 88 Expected: "Associated", 89 }, 90 { 91 State: request.RetryWaiterState, 92 Matcher: request.PathWaiterMatch, Argument: "RepositoryAssociation.State", 93 Expected: "Associating", 94 }, 95 }, 96 Logger: c.Config.Logger, 97 NewRequest: func(opts []request.Option) (*request.Request, error) { 98 var inCpy *DescribeRepositoryAssociationInput 99 if input != nil { 100 tmp := *input 101 inCpy = &tmp 102 } 103 req, _ := c.DescribeRepositoryAssociationRequest(inCpy) 104 req.SetContext(ctx) 105 req.ApplyOptions(opts...) 106 return req, nil 107 }, 108 } 109 w.ApplyOptions(opts...) 110 111 return w.WaitWithContext(ctx) 112 }