Aurelia Peters
Aurelia Peters
Looking at my code that's connecting to the RDS proxy, it looks like all I'm doing is this: ``` import { createConnection } from 'mysql2/promise'; let connection = await createConnection({...
This happens for me when pasting monochrome JSON from Windows Terminal running Bash under WSL2. However, pasting into another terminal app (Terminator running on X410) preserves the formatting and I...
Outside of a Lambda context, it seems to upload the file successfully but it doesn't look as though the stream is ever being closed. This happens while SFTPing to both...
As I recall, I did something similar. :) On Sat, Oct 17, 2020 at 11:29 AM John Earles wrote: > > > > I know this is an old issue,...
Thanks. I saw `graphql-introspection-query`, but I'm not clear on how to use it. Can you give me an example?
OK, great. I'll try that. On Mon, Dec 13, 2021 at 10:33 AM Tom Houlé ***@***.***> wrote: > > > > I'm in a meeting so I can't test to...
One more question - how do I import the `graphql-introspection-query` crate?
Tried the script; it returned nothing. On Thu, Sep 12, 2019 at 7:37 AM Jose Luis Martinez wrote: > > > > Hmmm... strange, since Paws::Credentials::File should be honoring the...
I see the problem. Here is my (redacted) environment: ``` AWS_DEFAULT_PROFILE=123456789012/role-name/username ``` And here are the contents of my (redacted) `$HOME/.aws/credentials`: ``` [123456789012/role-name/username_source] aws_access_key_id = ASIAXPNJWRK4MDXIW7Z3 aws_secret_access_key = aws_session_token =...
This works: ``` #!/usr/bin/env perl use Paws; use Paws::Credential::File; use Data::Dumper; my $region = $ENV{AWS_REGION} || 'us-east-1'; my $paws = Paws->new( config => { credentials => Paws::Credential::File->new(profile => qq{$ENV{AWS_DEFAULT_PROFILE}_source}), }...