1 Answer
- Newest
- Most votes
- Most comments
1
The session is created for you by default. But you don't need to initiate a session explicitly, just create the client and its done for you:
import boto3
client = boto3.client('dynamodb')
Relevant content
- asked 6 months ago
- asked 2 years ago
- asked 7 months ago
- AWS OFFICIALUpdated a month ago
- AWS OFFICIALUpdated a month ago
- AWS OFFICIALUpdated a month ago
- AWS OFFICIALUpdated 10 months ago
(Or
session = boto3.Session()
, if you prefer / want to specify other boto session arguments)