Antoine Awad

Results 12 comments of Antoine Awad

I figured it out. the AWS_IOT_CORE_CREDENTIAL_ENDPOINT was wrong, to get the AWS_IOT_CORE_CREDENTIAL_ENDPOINT, execute this command first: `aws iot describe-endpoint --endpoint-type iot\:CredentialProvider --output text --profile your_profile_name`. Full command would be: `AWS_IOT_CORE_THING_NAME=MyThing...

@disa6302 It does not work. In the C program `kvsWebRTCClientMasterGstreamerSample.c` in samples, [line 350](https://github.com/awslabs/amazon-kinesis-video-streams-webrtc-sdk-c/blob/ced19d02ed6fbc1e59dd63bc19d847c5ec5ebf47/samples/kvsWebRTCClientMasterGstreamerSample.c#L349), the pchannelName is being set to the IOT_CORE_THING_NAME. We should rather grab it from the args...

Hi @disa6302, It doesn't throw an error. When we run this command: `AWS_IOT_CORE_THING_NAME=AWSRobotPi AWS_IOT_CORE_CREDENTIAL_ENDPOINT=xyz.credentials.iot.ca-central-1.amazonaws.com AWS_DEFAULT_REGION=ca-central-1 AWS_IOT_CORE_CERT=certificate.pem.crt AWS_IOT_CORE_PRIVATE_KEY=private.pem.key AWS_IOT_CORE_ROLE_ALIAS=robot-role-alias ./kvsWebrtcClientMasterGstSample MyRandomChannel` Note 2 things, **ThingName** is "AWSRobotPi" and **Channel** is "MyRandomChannel"....

While the sync software was unavailable / mount local folder unavailable for a couple days, boostnote kept on writing notes / saving them somewhere. Any idea if it stores the...

Team, we should keep this open until we hear back from the sdk team. (Adding this comment to flag request active)

Hey @nateprewitt, Both links are missing key details such as what are the different values possible for ClientMethod, more specifically on these 2 links above, we don't state for example...

@lucashuy, I will try it out shortly and report back, but can we enhance the `sam local start-api` and make these steps (add debugpy and start it) trigger automatically? Similar...

@lucashuy, I tried setting the lambda runtime in the SAM template to python3.8 and python 3.11. I then ran `sam build`. For both runtimes, the debugpy module doesn't get triggered....

Hi @lucashuy , this worked with caveats noted below: 1. **Each function require an entry in launch.json** - In `launch.json`, you must point pathMappings => localRoot to the app.py folder...

@skurihara-cw The sam command is similar to what @lucashuy suggested here: https://github.com/aws/aws-sam-cli/issues/6546#issuecomment-1890148136 Here's my launch.json: (note direct invoke and attach) ```json { "version": "0.2.0", "configurations": [ { "type": "aws-sam", "request":...