is there are way to directly provide aws credentials as strings to AWS CredentialProvider?
I am using the following code, and instead of using environment variables I want to directly pass the credentials as string. Is there way to do this?
const client = new SFNClient({region:'us-east-1',
credentials: fromEnv()});
thanks