1 Answer
- Newest
- Most votes
- Most comments
1
The values for "Settings" will probably be the ones listed in the following document.
As far as I can tell from the documentation table, "Workdocs" and the like are not supported.
https://docs.aws.amazon.com/directoryservice/latest/admin-guide/ms_ad_directory_settings.html#list-ds-settings
I think "register_workspace_directory" is used to configure the following document in boto3.
https://docs.aws.amazon.com/workspaces/latest/adminguide/enable-workdocs-active-directory.html
response = client.register_workspace_directory(
DirectoryId='my_directory_id',
SubnetIds=[
'string',
],
EnableWorkDocs=True,
EnableSelfService=True
Tenancy='SHARED',
Tags=[
{
'Key': 'string',
'Value': 'string'
},
]
)
Relevant content
- Accepted Answerasked 2 years ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 3 months ago
Thank you Riku. That removes the update_setting method as the path to potential solution
Thank you so much Ruki. register_workspace_directory API call worked. Thanks again.