Hi All,
I'm trying to retrieve users from AWS Appstream Stack. Below one is my Boto3 code. There is no error, but this code doesn't give any output. Can any one check and let me where im wrong?
#!/usr/bin/env python3
import boto3
import awscli
client = boto3.client('appstream',aws_access_key_id='xxxx',aws_secret_access_key='yyyy')
session = boto3.Session(region_name='us-west-2', profile_name='exampleaws')
response = client.describe_user_stack_associations(
StackName='ss',
AuthenticationType='USERPOOL'
)