Paul Shearer
Paul Shearer

Reputation: 131

using paws in R -- listing AWS workspaces

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::??

Upvotes: 1

Views: 162

Answers (1)

Andre.IDK
Andre.IDK

Reputation: 2047

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.

Upvotes: 1

Related Questions