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, c.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	noSmithyDocumentSerde
63}
64
65type ApproveAssignmentOutput struct {
66	// Metadata pertaining to the operation's result.
67	ResultMetadata middleware.Metadata
68
69	noSmithyDocumentSerde
70}
71
72func (c *Client) addOperationApproveAssignmentMiddlewares(stack *middleware.Stack, options Options) (err error) {
73	err = stack.Serialize.Add(&awsAwsjson11_serializeOpApproveAssignment{}, middleware.After)
74	if err != nil {
75		return err
76	}
77	err = stack.Deserialize.Add(&awsAwsjson11_deserializeOpApproveAssignment{}, middleware.After)
78	if err != nil {
79		return err
80	}
81	if err = addSetLoggerMiddleware(stack, options); err != nil {
82		return err
83	}
84	if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
85		return err
86	}
87	if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
88		return err
89	}
90	if err = addResolveEndpointMiddleware(stack, options); err != nil {
91		return err
92	}
93	if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil {
94		return err
95	}
96	if err = addRetryMiddlewares(stack, options); err != nil {
97		return err
98	}
99	if err = addHTTPSignerV4Middleware(stack, options); err != nil {
100		return err
101	}
102	if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil {
103		return err
104	}
105	if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil {
106		return err
107	}
108	if err = addClientUserAgent(stack); err != nil {
109		return err
110	}
111	if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
112		return err
113	}
114	if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
115		return err
116	}
117	if err = addOpApproveAssignmentValidationMiddleware(stack); err != nil {
118		return err
119	}
120	if err = stack.Initialize.Add(newServiceMetadataMiddleware_opApproveAssignment(options.Region), middleware.Before); err != nil {
121		return err
122	}
123	if err = addRequestIDRetrieverMiddleware(stack); err != nil {
124		return err
125	}
126	if err = addResponseErrorMiddleware(stack); err != nil {
127		return err
128	}
129	if err = addRequestResponseLogging(stack, options); err != nil {
130		return err
131	}
132	return nil
133}
134
135func newServiceMetadataMiddleware_opApproveAssignment(region string) *awsmiddleware.RegisterServiceMetadata {
136	return &awsmiddleware.RegisterServiceMetadata{
137		Region:        region,
138		ServiceID:     ServiceID,
139		SigningName:   "mturk-requester",
140		OperationName: "ApproveAssignment",
141	}
142}
143