Untitled
unknown
plain_text
2 years ago
344 B
8
Indexable
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)
Editor is loading...
Leave a Comment