この記事は公開されてから半年以上経過しています。情報が古い可能性がありますので、ご注意ください。 # -*- coding: utf-8 -*- import boto3 from boto3.session import Session dynamodb = boto3.resource('dynamodb') def create_table(): table = dynamodb.create_table( TableName = 'customer', KeySchema =[ { 'AttributeName' : 'id', 'KeyType' : 'HASH' }, { 'AttributeName' : 'name', 'KeyType' : 'RANGE' } ], AttributeDefinitions = [ { 'AttributeName' : 'id', 'A