1

I'm wanting to use paws in R to list out the AWS Workspaces. I'm seeing reference to it in the documentation however get a 404.

library(paws)

Sys.setenv(
  AWS_ACCESS_KEY_ID = "*****************",
  AWS_SECRET_ACCESS_KEY = "******************",
  AWS_REGION = "us-east-1"
)

paws::??
Ramón J Romero y Vigil
  • 17,373
  • 7
  • 77
  • 125
Paul Shearer
  • 91
  • 1
  • 6

1 Answers1

1

Not sure where you found the reference (which however, as you say, returns 404) but the list of services supported by paws doesn't include workspaces.

Additionally, if in R Studio you start typing paws:: you don't get any autocompletion for workspaces at all.

It seems that, at least in the current version (0.3.4) of paws, workspaces are not supported.

Andre.IDK
  • 1,951
  • 13
  • 17