Hi All,
 
I am trying to list the files in S3 by using I am role I am getting syntax error as SAS is not recognising  role name as an option.
https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/proc/n1volodm4xnj3xn1s99poiemcha2.htm
above docs says 
Support for this option was added in SAS 9.4M7
proc s3 rolename="s3AccessRole" ;
If I use config and creds then it is working. but I need to use I am role only . can you suggest if there is a way we can use I am role in SAS 9.4 M6
  proc s3 
                     awsconfig="config_path" 
                     awscredentials="creds_path" ; 
                     list "bucket_path" ;
                run;