简体   繁体   English

在 R 中使用爪子——列出 AWS 工作区

[英]using paws in R -- listing AWS workspaces

I'm wanting to use paws in R to list out the AWS Workspaces.我想在 R 中使用 paws 列出 AWS 工作区。 I'm seeing reference to it in the documentation however get a 404.我在文档中看到了对它的引用,但是得到了 404。

library(paws)

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

paws::??

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.不确定您在哪里找到该引用(但是,正如您所说,它返回 404),但paws 支持的服务列表不包括工作区。

Additionally, if in R Studio you start typing paws:: you don't get any autocompletion for workspaces at all.此外,如果在 R Studio 中您开始输入paws::您根本不会获得任何工作区的自动完成功能。

It seems that, at least in the current version (0.3.4) of paws, workspaces are not supported.看来,至少在爪子的当前版本(0.3.4)中,不支持工作区。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM