尝试在我的 vpc 中列出 SimpleAD,但不断收到此错误,我对此非常陌生,这是我尝试运行的代码。
import boto3
client = boto3.client ('ds')
response = client.describe_directories(
DirectoryIds=[
'string',
],
NextToken='string',
Limit=123
)
print (response)
这是错误:botocore.exceptions.ClientError:调用DescribeDirectories操作时发生错误(ValidationException):检测到1个验证错误:'directoryIds'处的值'[string]'未能满足约束:成员必须满足约束:[Member必须满足正则表达式模式:^d-[0-9a-f]{10}$]
我刚刚开始使用 python 和 aws 冒险,所以非常感谢所有帮助。