AddLambdaArnToReqParams adds the lambdaArn to the request query string parameters.
(lambdaArn string)
| 53 | |
| 54 | // AddLambdaArnToReqParams adds the lambdaArn to the request query string parameters. |
| 55 | func (o *PromptObjectOptions) AddLambdaArnToReqParams(lambdaArn string) { |
| 56 | if o.reqParams == nil { |
| 57 | o.reqParams = make(url.Values) |
| 58 | } |
| 59 | o.reqParams.Add("lambdaArn", lambdaArn) |
| 60 | } |
| 61 | |
| 62 | // SetHeader adds a key value pair to the options. The |
| 63 | // key-value pair will be part of the HTTP POST request |