LoginSignup
7
3

More than 5 years have passed since last update.

boto3で接続のタイムアウトを設定する

Posted at

python 3.7
boto3 1.4.4

from boto3.session import Session
from botocore.client import Config

session = Session()
config = Config(read_timeout=65)
client = session.client('stepfunctions', config=config)
7
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
3