How can I pass workgroup info to Athena startQueryExecution method in Boto32019 Community Moderator ElectionHow can I safely create a nested directory in Python?How can I remove a trailing newline in Python?How can I make a time delay in Python?How do I pass a variable by reference?How can I tag an AWS Lambda function using boto3What is the difference between S3.Client.upload_file() and S3.Client.upload_fileobj()?boto3: Unknown parameter in input: “CrawlerSecurityConfiguration” in create_crawlerAsync calls to cloudformation API with boto?How to use describe_stacks in cloudformation when you have UUID's in your stack names, e.g. test-rds-CRC25DFADXZR?Retrieve the list of EMR clusters which have the autoscaling setup using boto3

How to test the sharpness of a knife?

Interior of Set Notation

Emojional cryptic crossword

Have any astronauts/cosmonauts died in space?

Does fire aspect on a sword, destroy mob drops?

Why doesn't the fusion process of the sun speed up?

Recursively updating the MLE as new observations stream in

Friend wants my recommendation but I don't want to

Help with identifying unique aircraft over NE Pennsylvania

How do researchers send unsolicited emails asking for feedback on their works?

Do I need to convey a moral for each of my blog post?

Do people actually use the word "kaputt" in conversation?

What (if any) is the reason to buy in small local stores?

Nested Dynamic SOQL Query

When did hardware antialiasing start being available?

Can a university suspend a student even when he has left university?

Why is there so much iron?

Why are there no stars visible in cislunar space?

Asserting that Atheism and Theism are both faith based positions

Are hand made posters acceptable in Academia?

Is xar preinstalled on macOS?

What is 露わになる affecting in the following sentence, '才能の持ち主' (持ち主 to be specific) or '才能'?

Norwegian Refugee travel document

Does the Shadow Magic sorcerer's Eyes of the Dark feature work on all Darkness spells or just his/her own?



How can I pass workgroup info to Athena startQueryExecution method in Boto3



2019 Community Moderator ElectionHow can I safely create a nested directory in Python?How can I remove a trailing newline in Python?How can I make a time delay in Python?How do I pass a variable by reference?How can I tag an AWS Lambda function using boto3What is the difference between S3.Client.upload_file() and S3.Client.upload_fileobj()?boto3: Unknown parameter in input: “CrawlerSecurityConfiguration” in create_crawlerAsync calls to cloudformation API with boto?How to use describe_stacks in cloudformation when you have UUID's in your stack names, e.g. test-rds-CRC25DFADXZR?Retrieve the list of EMR clusters which have the autoscaling setup using boto3










0















I am seeing the below error when I try to pass WorkGroup info in the format listed below using my boto3 code in AWS Lambda -




"errorMessage": "Parameter validation failed:nUnknown parameter in
input: "WorkGroup", must be one of: QueryString, ClientRequestToken,
QueryExecutionContext, ResultConfiguration",




query_id = client.start_query_execution(
QueryString=query_string,
QueryExecutionContext=
'Database': 'sample_db'
,
ResultConfiguration=
'OutputLocation': 's3://sample_db/output/'
,
WorkGroup='workgroup1'
)['QueryExecutionId']


As per boto3 documentation , this is something that can be passed - https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.start_query_execution










share|improve this question






















  • What boto3 version are you using? Try updating to the latest one. Note that the one bundled in the Lambda execution environment might not be up-to-date.

    – Milan Cermak
    Mar 7 at 19:09











  • How can I upgrade the version within AWS Lambda?

    – Punter Vicky
    Mar 7 at 19:10











  • You have to bundle boto3 yourself. Add it to the deployment package. Importing it will have precedence.

    – Milan Cermak
    Mar 7 at 19:12











  • Thanks @MilanCermak. However is there a different way of adding workgroup location for Athena using old version of boto3?

    – Punter Vicky
    Mar 7 at 19:14






  • 1





    I don't think so. Looks like the WorkGroup parameter support got added in boto3 v1.9.97 (see e.g. the docs here for v1.9.96 boto3.amazonaws.com/v1/documentation/api/1.9.96/reference/… where the param is not present).

    – Milan Cermak
    Mar 7 at 19:19















0















I am seeing the below error when I try to pass WorkGroup info in the format listed below using my boto3 code in AWS Lambda -




"errorMessage": "Parameter validation failed:nUnknown parameter in
input: "WorkGroup", must be one of: QueryString, ClientRequestToken,
QueryExecutionContext, ResultConfiguration",




query_id = client.start_query_execution(
QueryString=query_string,
QueryExecutionContext=
'Database': 'sample_db'
,
ResultConfiguration=
'OutputLocation': 's3://sample_db/output/'
,
WorkGroup='workgroup1'
)['QueryExecutionId']


As per boto3 documentation , this is something that can be passed - https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.start_query_execution










share|improve this question






















  • What boto3 version are you using? Try updating to the latest one. Note that the one bundled in the Lambda execution environment might not be up-to-date.

    – Milan Cermak
    Mar 7 at 19:09











  • How can I upgrade the version within AWS Lambda?

    – Punter Vicky
    Mar 7 at 19:10











  • You have to bundle boto3 yourself. Add it to the deployment package. Importing it will have precedence.

    – Milan Cermak
    Mar 7 at 19:12











  • Thanks @MilanCermak. However is there a different way of adding workgroup location for Athena using old version of boto3?

    – Punter Vicky
    Mar 7 at 19:14






  • 1





    I don't think so. Looks like the WorkGroup parameter support got added in boto3 v1.9.97 (see e.g. the docs here for v1.9.96 boto3.amazonaws.com/v1/documentation/api/1.9.96/reference/… where the param is not present).

    – Milan Cermak
    Mar 7 at 19:19













0












0








0








I am seeing the below error when I try to pass WorkGroup info in the format listed below using my boto3 code in AWS Lambda -




"errorMessage": "Parameter validation failed:nUnknown parameter in
input: "WorkGroup", must be one of: QueryString, ClientRequestToken,
QueryExecutionContext, ResultConfiguration",




query_id = client.start_query_execution(
QueryString=query_string,
QueryExecutionContext=
'Database': 'sample_db'
,
ResultConfiguration=
'OutputLocation': 's3://sample_db/output/'
,
WorkGroup='workgroup1'
)['QueryExecutionId']


As per boto3 documentation , this is something that can be passed - https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.start_query_execution










share|improve this question














I am seeing the below error when I try to pass WorkGroup info in the format listed below using my boto3 code in AWS Lambda -




"errorMessage": "Parameter validation failed:nUnknown parameter in
input: "WorkGroup", must be one of: QueryString, ClientRequestToken,
QueryExecutionContext, ResultConfiguration",




query_id = client.start_query_execution(
QueryString=query_string,
QueryExecutionContext=
'Database': 'sample_db'
,
ResultConfiguration=
'OutputLocation': 's3://sample_db/output/'
,
WorkGroup='workgroup1'
)['QueryExecutionId']


As per boto3 documentation , this is something that can be passed - https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.start_query_execution







python amazon-web-services aws-lambda boto3 amazon-athena






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 7 at 18:53









Punter VickyPunter Vicky

3,9532178145




3,9532178145












  • What boto3 version are you using? Try updating to the latest one. Note that the one bundled in the Lambda execution environment might not be up-to-date.

    – Milan Cermak
    Mar 7 at 19:09











  • How can I upgrade the version within AWS Lambda?

    – Punter Vicky
    Mar 7 at 19:10











  • You have to bundle boto3 yourself. Add it to the deployment package. Importing it will have precedence.

    – Milan Cermak
    Mar 7 at 19:12











  • Thanks @MilanCermak. However is there a different way of adding workgroup location for Athena using old version of boto3?

    – Punter Vicky
    Mar 7 at 19:14






  • 1





    I don't think so. Looks like the WorkGroup parameter support got added in boto3 v1.9.97 (see e.g. the docs here for v1.9.96 boto3.amazonaws.com/v1/documentation/api/1.9.96/reference/… where the param is not present).

    – Milan Cermak
    Mar 7 at 19:19

















  • What boto3 version are you using? Try updating to the latest one. Note that the one bundled in the Lambda execution environment might not be up-to-date.

    – Milan Cermak
    Mar 7 at 19:09











  • How can I upgrade the version within AWS Lambda?

    – Punter Vicky
    Mar 7 at 19:10











  • You have to bundle boto3 yourself. Add it to the deployment package. Importing it will have precedence.

    – Milan Cermak
    Mar 7 at 19:12











  • Thanks @MilanCermak. However is there a different way of adding workgroup location for Athena using old version of boto3?

    – Punter Vicky
    Mar 7 at 19:14






  • 1





    I don't think so. Looks like the WorkGroup parameter support got added in boto3 v1.9.97 (see e.g. the docs here for v1.9.96 boto3.amazonaws.com/v1/documentation/api/1.9.96/reference/… where the param is not present).

    – Milan Cermak
    Mar 7 at 19:19
















What boto3 version are you using? Try updating to the latest one. Note that the one bundled in the Lambda execution environment might not be up-to-date.

– Milan Cermak
Mar 7 at 19:09





What boto3 version are you using? Try updating to the latest one. Note that the one bundled in the Lambda execution environment might not be up-to-date.

– Milan Cermak
Mar 7 at 19:09













How can I upgrade the version within AWS Lambda?

– Punter Vicky
Mar 7 at 19:10





How can I upgrade the version within AWS Lambda?

– Punter Vicky
Mar 7 at 19:10













You have to bundle boto3 yourself. Add it to the deployment package. Importing it will have precedence.

– Milan Cermak
Mar 7 at 19:12





You have to bundle boto3 yourself. Add it to the deployment package. Importing it will have precedence.

– Milan Cermak
Mar 7 at 19:12













Thanks @MilanCermak. However is there a different way of adding workgroup location for Athena using old version of boto3?

– Punter Vicky
Mar 7 at 19:14





Thanks @MilanCermak. However is there a different way of adding workgroup location for Athena using old version of boto3?

– Punter Vicky
Mar 7 at 19:14




1




1





I don't think so. Looks like the WorkGroup parameter support got added in boto3 v1.9.97 (see e.g. the docs here for v1.9.96 boto3.amazonaws.com/v1/documentation/api/1.9.96/reference/… where the param is not present).

– Milan Cermak
Mar 7 at 19:19





I don't think so. Looks like the WorkGroup parameter support got added in boto3 v1.9.97 (see e.g. the docs here for v1.9.96 boto3.amazonaws.com/v1/documentation/api/1.9.96/reference/… where the param is not present).

– Milan Cermak
Mar 7 at 19:19












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55050915%2fhow-can-i-pass-workgroup-info-to-athena-startqueryexecution-method-in-boto3%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55050915%2fhow-can-i-pass-workgroup-info-to-athena-startqueryexecution-method-in-boto3%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived