【Python】Boto3でCognitoを使ってみる

共通

import boto3

userPoolId = "ap-northeast-1_2YxuOjLMv"
clientId = "47dthvpj76hnpsto1d8q04gbo4"
clientSecret = "16dmt73h3rr1pnof1bklj83ib8ib42afat1vuq4s6lsn9i7phd5t"
client = boto3.client(
    "cognito-idp",
    region_name="ap-northeast-1",
)

以上になります。
お読み頂き、ありがとうございました。