1 Risposta
- Più recenti
- Maggior numero di voti
- Maggior numero di commenti
0
Hi, I found the solution to extend the total processing time for Asynchronous endpoint upto 60 minutes. Use this parameter "InvocationTimeoutSeconds=3600" when invoking the async endpoint.
code looks like below:
response = sm_client.invoke_endpoint_async(
EndpointName=endpoint_name,
InputLocation=input_file_s3_path,
ContentType='text/csv',
Accept='application/json',
InvocationTimeoutSeconds=3600
)
Thank you.
con risposta 3 anni fa
