1 個回答
- 最新
- 最多得票
- 最多評論
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.
已回答 3 年前
相關內容
- 已提問 4 個月前
