1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package mturk
4
5import (
6	"context"
7	awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
8	"github.com/aws/aws-sdk-go-v2/aws/signer/v4"
9	"github.com/aws/smithy-go/middleware"
10	smithyhttp "github.com/aws/smithy-go/transport/http"
11)
12
13// The ApproveAssignment operation approves the results of a completed assignment.
14// Approving an assignment initiates two payments from the Requester's Amazon.com
15// account
16//
17// * The Worker who submitted the results is paid the reward specified in
18// the HIT.
19//
20// * Amazon Mechanical Turk fees are debited.
21//
22// If the Requester's account
23// does not have adequate funds for these payments, the call to ApproveAssignment
24// returns an exception, and the approval is not processed. You can include an
25// optional feedback message with the approval, which the Worker can see in the
26// Status section of the web site. You can also call this operation for assignments
27// that were previous rejected and approve them by explicitly overriding the
28// previous rejection. This only works on rejected assignments that were submitted
29// within the previous 30 days and only if the assignment's related HIT has not
30// been deleted.
31func (c *Client) ApproveAssignment(ctx context.Context, params *ApproveAssignmentInput, optFns ...func(*Options)) (*ApproveAssignmentOutput, error) {
32	if params == nil {
33		params = &ApproveAssignmentInput{}
34	}
35
36	result, metadata, err := c.invokeOperation(ctx, "ApproveAssignment", params, optFns, addOperationApproveAssignmentMiddlewares)
37	if err != nil {
38		return nil, err
39	}
40
41	out := result.(*ApproveAssignmentOutput)
42	out.ResultMetadata = metadata
43	return out, nil
44}
45
46type ApproveAssignmentInput struct {
47
48	// The ID of the assignment. The assignment must correspond to a HIT created by the
49	// Requester.
50	//
51	// This member is required.
52	AssignmentId *string
53
54	// A flag indicating that an assignment should be approved even if it was
55	// previously rejected. Defaults to False.
56	OverrideRejection *bool
57
58	// A message for the Worker, which the Worker can see in the Status section of the
59	// web site.
60	RequesterFeedback *string
61}
62
63type ApproveAssignmentOutput struct {
64	// Metadata pertaining to the operation's result.
65	ResultMetadata middleware.Metadata
66}
67
68func addOperationApproveAssignmentMiddlewares(stack *middleware.Stack, options Options) (err error) {
69	err = stack.Serialize.Add(&awsAwsjson11_serializeOpApproveAssignment{}, middleware.After)
70	if err != nil {
71		return err
72	}
73	err = stack.Deserialize.Add(&awsAwsjson11_deserializeOpApproveAssignment{}, middleware.After)
74	if err != nil {
75		return err
76	}
77	if err = addSetLoggerMiddleware(stack, options); err != nil {
78		return err
79	}
80	if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
81		return err
82	}
83	if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
84		return err
85	}
86	if err = addResolveEndpointMiddleware(stack, options); err != nil {
87		return err
88	}
89	if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil {
90		return err
91	}
92	if err = addRetryMiddlewares(stack, options); err != nil {
93		return err
94	}
95	if err = addHTTPSignerV4Middleware(stack, options); err != nil {
96		return err
97	}
98	if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil {
99		return err
100	}
101	if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil {
102		return err
103	}
104	if err = addClientUserAgent(stack); err != nil {
105		return err
106	}
107	if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
108		return err
109	}
110	if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
111		return err
112	}
113	if err = addOpApproveAssignmentValidationMiddleware(stack); err != nil {
114		return err
115	}
116	if err = stack.Initialize.Add(newServiceMetadataMiddleware_opApproveAssignment(options.Region), middleware.Before); err != nil {
117		return err
118	}
119	if err = addRequestIDRetrieverMiddleware(stack); err != nil {
120		return err
121	}
122	if err = addResponseErrorMiddleware(stack); err != nil {
123		return err
124	}
125	if err = addRequestResponseLogging(stack, options); err != nil {
126		return err
127	}
128	return nil
129}
130
131func newServiceMetadataMiddleware_opApproveAssignment(region string) *awsmiddleware.RegisterServiceMetadata {
132	return &awsmiddleware.RegisterServiceMetadata{
133		Region:        region,
134		ServiceID:     ServiceID,
135		SigningName:   "mturk-requester",
136		OperationName: "ApproveAssignment",
137	}
138}
139