Untitled
import boto3 # Initialize the Amazon Cognito client cognito_client = boto3.client('cognito-idp', region_name='your-region') user_pool_id = '' client_id = '' # Call the update_user_pool_client API response = cognito_client.update_user_pool_client( UserPoolId=user_pool_id, ClientId=client_id ) # Print the response print(response)
Leave a Comment