AWS v6.73.0 published on Wednesday, Mar 19, 2025 by Pulumi
aws.workspaces.getDirectory
Explore with Pulumi AI
Retrieve information about an AWS WorkSpaces directory.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = aws.workspaces.getDirectory({
    directoryId: "d-9067783251",
});
import pulumi
import pulumi_aws as aws
example = aws.workspaces.get_directory(directory_id="d-9067783251")
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/workspaces"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := workspaces.LookupDirectory(ctx, &workspaces.LookupDirectoryArgs{
			DirectoryId: "d-9067783251",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() => 
{
    var example = Aws.Workspaces.GetDirectory.Invoke(new()
    {
        DirectoryId = "d-9067783251",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.workspaces.WorkspacesFunctions;
import com.pulumi.aws.workspaces.inputs.GetDirectoryArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var example = WorkspacesFunctions.getDirectory(GetDirectoryArgs.builder()
            .directoryId("d-9067783251")
            .build());
    }
}
variables:
  example:
    fn::invoke:
      function: aws:workspaces:getDirectory
      arguments:
        directoryId: d-9067783251
Using getDirectory
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getDirectory(args: GetDirectoryArgs, opts?: InvokeOptions): Promise<GetDirectoryResult>
function getDirectoryOutput(args: GetDirectoryOutputArgs, opts?: InvokeOptions): Output<GetDirectoryResult>def get_directory(directory_id: Optional[str] = None,
                  tags: Optional[Mapping[str, str]] = None,
                  opts: Optional[InvokeOptions] = None) -> GetDirectoryResult
def get_directory_output(directory_id: Optional[pulumi.Input[str]] = None,
                  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
                  opts: Optional[InvokeOptions] = None) -> Output[GetDirectoryResult]func LookupDirectory(ctx *Context, args *LookupDirectoryArgs, opts ...InvokeOption) (*LookupDirectoryResult, error)
func LookupDirectoryOutput(ctx *Context, args *LookupDirectoryOutputArgs, opts ...InvokeOption) LookupDirectoryResultOutput> Note: This function is named LookupDirectory in the Go SDK.
public static class GetDirectory 
{
    public static Task<GetDirectoryResult> InvokeAsync(GetDirectoryArgs args, InvokeOptions? opts = null)
    public static Output<GetDirectoryResult> Invoke(GetDirectoryInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDirectoryResult> getDirectory(GetDirectoryArgs args, InvokeOptions options)
public static Output<GetDirectoryResult> getDirectory(GetDirectoryArgs args, InvokeOptions options)
fn::invoke:
  function: aws:workspaces/getDirectory:getDirectory
  arguments:
    # arguments dictionaryThe following arguments are supported:
- DirectoryId string
- Directory identifier for registration in WorkSpaces service.
- Dictionary<string, string>
- A map of tags assigned to the WorkSpaces directory.
- DirectoryId string
- Directory identifier for registration in WorkSpaces service.
- map[string]string
- A map of tags assigned to the WorkSpaces directory.
- directoryId String
- Directory identifier for registration in WorkSpaces service.
- Map<String,String>
- A map of tags assigned to the WorkSpaces directory.
- directoryId string
- Directory identifier for registration in WorkSpaces service.
- {[key: string]: string}
- A map of tags assigned to the WorkSpaces directory.
- directory_id str
- Directory identifier for registration in WorkSpaces service.
- Mapping[str, str]
- A map of tags assigned to the WorkSpaces directory.
- directoryId String
- Directory identifier for registration in WorkSpaces service.
- Map<String>
- A map of tags assigned to the WorkSpaces directory.
getDirectory Result
The following output properties are available:
- Alias string
- Directory alias.
- CustomerUser stringName 
- User name for the service account.
- DirectoryId string
- DirectoryName string
- Name of the directory.
- DirectoryType string
- Directory type.
- DnsIp List<string>Addresses 
- IP addresses of the DNS servers for the directory.
- IamRole stringId 
- Identifier of the IAM role. This is the role that allows Amazon WorkSpaces to make calls to other services, such as Amazon EC2, on your behalf.
- Id string
- The provider-assigned unique ID for this managed resource.
- IpGroup List<string>Ids 
- Identifiers of the IP access control groups associated with the directory.
- RegistrationCode string
- Registration code for the directory. This is the code that users enter in their Amazon WorkSpaces client application to connect to the directory.
- SamlProperties List<GetDirectory Saml Property> 
- SelfService List<GetPermissions Directory Self Service Permission> 
- The permissions to enable or disable self-service capabilities.
- SubnetIds List<string>
- Identifiers of the subnets where the directory resides.
- Dictionary<string, string>
- A map of tags assigned to the WorkSpaces directory.
- WorkspaceAccess List<GetProperties Directory Workspace Access Property> 
- (Optional) Specifies which devices and operating systems users can use to access their WorkSpaces. Defined below.
- WorkspaceCreation List<GetProperties Directory Workspace Creation Property> 
- The default properties that are used for creating WorkSpaces. Defined below.
- WorkspaceSecurity stringGroup Id 
- The identifier of the security group that is assigned to new WorkSpaces. Defined below.
- Alias string
- Directory alias.
- CustomerUser stringName 
- User name for the service account.
- DirectoryId string
- DirectoryName string
- Name of the directory.
- DirectoryType string
- Directory type.
- DnsIp []stringAddresses 
- IP addresses of the DNS servers for the directory.
- IamRole stringId 
- Identifier of the IAM role. This is the role that allows Amazon WorkSpaces to make calls to other services, such as Amazon EC2, on your behalf.
- Id string
- The provider-assigned unique ID for this managed resource.
- IpGroup []stringIds 
- Identifiers of the IP access control groups associated with the directory.
- RegistrationCode string
- Registration code for the directory. This is the code that users enter in their Amazon WorkSpaces client application to connect to the directory.
- SamlProperties []GetDirectory Saml Property 
- SelfService []GetPermissions Directory Self Service Permission 
- The permissions to enable or disable self-service capabilities.
- SubnetIds []string
- Identifiers of the subnets where the directory resides.
- map[string]string
- A map of tags assigned to the WorkSpaces directory.
- WorkspaceAccess []GetProperties Directory Workspace Access Property 
- (Optional) Specifies which devices and operating systems users can use to access their WorkSpaces. Defined below.
- WorkspaceCreation []GetProperties Directory Workspace Creation Property 
- The default properties that are used for creating WorkSpaces. Defined below.
- WorkspaceSecurity stringGroup Id 
- The identifier of the security group that is assigned to new WorkSpaces. Defined below.
- alias String
- Directory alias.
- customerUser StringName 
- User name for the service account.
- directoryId String
- directoryName String
- Name of the directory.
- directoryType String
- Directory type.
- dnsIp List<String>Addresses 
- IP addresses of the DNS servers for the directory.
- iamRole StringId 
- Identifier of the IAM role. This is the role that allows Amazon WorkSpaces to make calls to other services, such as Amazon EC2, on your behalf.
- id String
- The provider-assigned unique ID for this managed resource.
- ipGroup List<String>Ids 
- Identifiers of the IP access control groups associated with the directory.
- registrationCode String
- Registration code for the directory. This is the code that users enter in their Amazon WorkSpaces client application to connect to the directory.
- samlProperties List<GetDirectory Saml Property> 
- selfService List<GetPermissions Directory Self Service Permission> 
- The permissions to enable or disable self-service capabilities.
- subnetIds List<String>
- Identifiers of the subnets where the directory resides.
- Map<String,String>
- A map of tags assigned to the WorkSpaces directory.
- workspaceAccess List<GetProperties Directory Workspace Access Property> 
- (Optional) Specifies which devices and operating systems users can use to access their WorkSpaces. Defined below.
- workspaceCreation List<GetProperties Directory Workspace Creation Property> 
- The default properties that are used for creating WorkSpaces. Defined below.
- workspaceSecurity StringGroup Id 
- The identifier of the security group that is assigned to new WorkSpaces. Defined below.
- alias string
- Directory alias.
- customerUser stringName 
- User name for the service account.
- directoryId string
- directoryName string
- Name of the directory.
- directoryType string
- Directory type.
- dnsIp string[]Addresses 
- IP addresses of the DNS servers for the directory.
- iamRole stringId 
- Identifier of the IAM role. This is the role that allows Amazon WorkSpaces to make calls to other services, such as Amazon EC2, on your behalf.
- id string
- The provider-assigned unique ID for this managed resource.
- ipGroup string[]Ids 
- Identifiers of the IP access control groups associated with the directory.
- registrationCode string
- Registration code for the directory. This is the code that users enter in their Amazon WorkSpaces client application to connect to the directory.
- samlProperties GetDirectory Saml Property[] 
- selfService GetPermissions Directory Self Service Permission[] 
- The permissions to enable or disable self-service capabilities.
- subnetIds string[]
- Identifiers of the subnets where the directory resides.
- {[key: string]: string}
- A map of tags assigned to the WorkSpaces directory.
- workspaceAccess GetProperties Directory Workspace Access Property[] 
- (Optional) Specifies which devices and operating systems users can use to access their WorkSpaces. Defined below.
- workspaceCreation GetProperties Directory Workspace Creation Property[] 
- The default properties that are used for creating WorkSpaces. Defined below.
- workspaceSecurity stringGroup Id 
- The identifier of the security group that is assigned to new WorkSpaces. Defined below.
- alias str
- Directory alias.
- customer_user_ strname 
- User name for the service account.
- directory_id str
- directory_name str
- Name of the directory.
- directory_type str
- Directory type.
- dns_ip_ Sequence[str]addresses 
- IP addresses of the DNS servers for the directory.
- iam_role_ strid 
- Identifier of the IAM role. This is the role that allows Amazon WorkSpaces to make calls to other services, such as Amazon EC2, on your behalf.
- id str
- The provider-assigned unique ID for this managed resource.
- ip_group_ Sequence[str]ids 
- Identifiers of the IP access control groups associated with the directory.
- registration_code str
- Registration code for the directory. This is the code that users enter in their Amazon WorkSpaces client application to connect to the directory.
- saml_properties Sequence[GetDirectory Saml Property] 
- self_service_ Sequence[Getpermissions Directory Self Service Permission] 
- The permissions to enable or disable self-service capabilities.
- subnet_ids Sequence[str]
- Identifiers of the subnets where the directory resides.
- Mapping[str, str]
- A map of tags assigned to the WorkSpaces directory.
- workspace_access_ Sequence[Getproperties Directory Workspace Access Property] 
- (Optional) Specifies which devices and operating systems users can use to access their WorkSpaces. Defined below.
- workspace_creation_ Sequence[Getproperties Directory Workspace Creation Property] 
- The default properties that are used for creating WorkSpaces. Defined below.
- workspace_security_ strgroup_ id 
- The identifier of the security group that is assigned to new WorkSpaces. Defined below.
- alias String
- Directory alias.
- customerUser StringName 
- User name for the service account.
- directoryId String
- directoryName String
- Name of the directory.
- directoryType String
- Directory type.
- dnsIp List<String>Addresses 
- IP addresses of the DNS servers for the directory.
- iamRole StringId 
- Identifier of the IAM role. This is the role that allows Amazon WorkSpaces to make calls to other services, such as Amazon EC2, on your behalf.
- id String
- The provider-assigned unique ID for this managed resource.
- ipGroup List<String>Ids 
- Identifiers of the IP access control groups associated with the directory.
- registrationCode String
- Registration code for the directory. This is the code that users enter in their Amazon WorkSpaces client application to connect to the directory.
- samlProperties List<Property Map>
- selfService List<Property Map>Permissions 
- The permissions to enable or disable self-service capabilities.
- subnetIds List<String>
- Identifiers of the subnets where the directory resides.
- Map<String>
- A map of tags assigned to the WorkSpaces directory.
- workspaceAccess List<Property Map>Properties 
- (Optional) Specifies which devices and operating systems users can use to access their WorkSpaces. Defined below.
- workspaceCreation List<Property Map>Properties 
- The default properties that are used for creating WorkSpaces. Defined below.
- workspaceSecurity StringGroup Id 
- The identifier of the security group that is assigned to new WorkSpaces. Defined below.
Supporting Types
GetDirectorySamlProperty   
- RelayState stringParameter Name 
- Status string
- UserAccess stringUrl 
- RelayState stringParameter Name 
- Status string
- UserAccess stringUrl 
- relayState StringParameter Name 
- status String
- userAccess StringUrl 
- relayState stringParameter Name 
- status string
- userAccess stringUrl 
- relay_state_ strparameter_ name 
- status str
- user_access_ strurl 
- relayState StringParameter Name 
- status String
- userAccess StringUrl 
GetDirectorySelfServicePermission    
- ChangeCompute boolType 
- Whether WorkSpaces directory users can change the compute type (bundle) for their workspace.
- IncreaseVolume boolSize 
- Whether WorkSpaces directory users can increase the volume size of the drives on their workspace.
- RebuildWorkspace bool
- Whether WorkSpaces directory users can rebuild the operating system of a workspace to its original state.
- RestartWorkspace bool
- Whether WorkSpaces directory users can restart their workspace.
- SwitchRunning boolMode 
- Whether WorkSpaces directory users can switch the running mode of their workspace.
- ChangeCompute boolType 
- Whether WorkSpaces directory users can change the compute type (bundle) for their workspace.
- IncreaseVolume boolSize 
- Whether WorkSpaces directory users can increase the volume size of the drives on their workspace.
- RebuildWorkspace bool
- Whether WorkSpaces directory users can rebuild the operating system of a workspace to its original state.
- RestartWorkspace bool
- Whether WorkSpaces directory users can restart their workspace.
- SwitchRunning boolMode 
- Whether WorkSpaces directory users can switch the running mode of their workspace.
- changeCompute BooleanType 
- Whether WorkSpaces directory users can change the compute type (bundle) for their workspace.
- increaseVolume BooleanSize 
- Whether WorkSpaces directory users can increase the volume size of the drives on their workspace.
- rebuildWorkspace Boolean
- Whether WorkSpaces directory users can rebuild the operating system of a workspace to its original state.
- restartWorkspace Boolean
- Whether WorkSpaces directory users can restart their workspace.
- switchRunning BooleanMode 
- Whether WorkSpaces directory users can switch the running mode of their workspace.
- changeCompute booleanType 
- Whether WorkSpaces directory users can change the compute type (bundle) for their workspace.
- increaseVolume booleanSize 
- Whether WorkSpaces directory users can increase the volume size of the drives on their workspace.
- rebuildWorkspace boolean
- Whether WorkSpaces directory users can rebuild the operating system of a workspace to its original state.
- restartWorkspace boolean
- Whether WorkSpaces directory users can restart their workspace.
- switchRunning booleanMode 
- Whether WorkSpaces directory users can switch the running mode of their workspace.
- change_compute_ booltype 
- Whether WorkSpaces directory users can change the compute type (bundle) for their workspace.
- increase_volume_ boolsize 
- Whether WorkSpaces directory users can increase the volume size of the drives on their workspace.
- rebuild_workspace bool
- Whether WorkSpaces directory users can rebuild the operating system of a workspace to its original state.
- restart_workspace bool
- Whether WorkSpaces directory users can restart their workspace.
- switch_running_ boolmode 
- Whether WorkSpaces directory users can switch the running mode of their workspace.
- changeCompute BooleanType 
- Whether WorkSpaces directory users can change the compute type (bundle) for their workspace.
- increaseVolume BooleanSize 
- Whether WorkSpaces directory users can increase the volume size of the drives on their workspace.
- rebuildWorkspace Boolean
- Whether WorkSpaces directory users can rebuild the operating system of a workspace to its original state.
- restartWorkspace Boolean
- Whether WorkSpaces directory users can restart their workspace.
- switchRunning BooleanMode 
- Whether WorkSpaces directory users can switch the running mode of their workspace.
GetDirectoryWorkspaceAccessProperty    
- DeviceType stringAndroid 
- (Optional) Indicates whether users can use Android devices to access their WorkSpaces.
- DeviceType stringChromeos 
- (Optional) Indicates whether users can use Chromebooks to access their WorkSpaces.
- DeviceType stringIos 
- (Optional) Indicates whether users can use iOS devices to access their WorkSpaces.
- DeviceType stringLinux 
- (Optional) Indicates whether users can use Linux clients to access their WorkSpaces.
- DeviceType stringOsx 
- (Optional) Indicates whether users can use macOS clients to access their WorkSpaces.
- DeviceType stringWeb 
- (Optional) Indicates whether users can access their WorkSpaces through a web browser.
- DeviceType stringWindows 
- (Optional) Indicates whether users can use Windows clients to access their WorkSpaces.
- DeviceType stringZeroclient 
- (Optional) Indicates whether users can use zero client devices to access their WorkSpaces.
- DeviceType stringAndroid 
- (Optional) Indicates whether users can use Android devices to access their WorkSpaces.
- DeviceType stringChromeos 
- (Optional) Indicates whether users can use Chromebooks to access their WorkSpaces.
- DeviceType stringIos 
- (Optional) Indicates whether users can use iOS devices to access their WorkSpaces.
- DeviceType stringLinux 
- (Optional) Indicates whether users can use Linux clients to access their WorkSpaces.
- DeviceType stringOsx 
- (Optional) Indicates whether users can use macOS clients to access their WorkSpaces.
- DeviceType stringWeb 
- (Optional) Indicates whether users can access their WorkSpaces through a web browser.
- DeviceType stringWindows 
- (Optional) Indicates whether users can use Windows clients to access their WorkSpaces.
- DeviceType stringZeroclient 
- (Optional) Indicates whether users can use zero client devices to access their WorkSpaces.
- deviceType StringAndroid 
- (Optional) Indicates whether users can use Android devices to access their WorkSpaces.
- deviceType StringChromeos 
- (Optional) Indicates whether users can use Chromebooks to access their WorkSpaces.
- deviceType StringIos 
- (Optional) Indicates whether users can use iOS devices to access their WorkSpaces.
- deviceType StringLinux 
- (Optional) Indicates whether users can use Linux clients to access their WorkSpaces.
- deviceType StringOsx 
- (Optional) Indicates whether users can use macOS clients to access their WorkSpaces.
- deviceType StringWeb 
- (Optional) Indicates whether users can access their WorkSpaces through a web browser.
- deviceType StringWindows 
- (Optional) Indicates whether users can use Windows clients to access their WorkSpaces.
- deviceType StringZeroclient 
- (Optional) Indicates whether users can use zero client devices to access their WorkSpaces.
- deviceType stringAndroid 
- (Optional) Indicates whether users can use Android devices to access their WorkSpaces.
- deviceType stringChromeos 
- (Optional) Indicates whether users can use Chromebooks to access their WorkSpaces.
- deviceType stringIos 
- (Optional) Indicates whether users can use iOS devices to access their WorkSpaces.
- deviceType stringLinux 
- (Optional) Indicates whether users can use Linux clients to access their WorkSpaces.
- deviceType stringOsx 
- (Optional) Indicates whether users can use macOS clients to access their WorkSpaces.
- deviceType stringWeb 
- (Optional) Indicates whether users can access their WorkSpaces through a web browser.
- deviceType stringWindows 
- (Optional) Indicates whether users can use Windows clients to access their WorkSpaces.
- deviceType stringZeroclient 
- (Optional) Indicates whether users can use zero client devices to access their WorkSpaces.
- device_type_ strandroid 
- (Optional) Indicates whether users can use Android devices to access their WorkSpaces.
- device_type_ strchromeos 
- (Optional) Indicates whether users can use Chromebooks to access their WorkSpaces.
- device_type_ strios 
- (Optional) Indicates whether users can use iOS devices to access their WorkSpaces.
- device_type_ strlinux 
- (Optional) Indicates whether users can use Linux clients to access their WorkSpaces.
- device_type_ strosx 
- (Optional) Indicates whether users can use macOS clients to access their WorkSpaces.
- device_type_ strweb 
- (Optional) Indicates whether users can access their WorkSpaces through a web browser.
- device_type_ strwindows 
- (Optional) Indicates whether users can use Windows clients to access their WorkSpaces.
- device_type_ strzeroclient 
- (Optional) Indicates whether users can use zero client devices to access their WorkSpaces.
- deviceType StringAndroid 
- (Optional) Indicates whether users can use Android devices to access their WorkSpaces.
- deviceType StringChromeos 
- (Optional) Indicates whether users can use Chromebooks to access their WorkSpaces.
- deviceType StringIos 
- (Optional) Indicates whether users can use iOS devices to access their WorkSpaces.
- deviceType StringLinux 
- (Optional) Indicates whether users can use Linux clients to access their WorkSpaces.
- deviceType StringOsx 
- (Optional) Indicates whether users can use macOS clients to access their WorkSpaces.
- deviceType StringWeb 
- (Optional) Indicates whether users can access their WorkSpaces through a web browser.
- deviceType StringWindows 
- (Optional) Indicates whether users can use Windows clients to access their WorkSpaces.
- deviceType StringZeroclient 
- (Optional) Indicates whether users can use zero client devices to access their WorkSpaces.
GetDirectoryWorkspaceCreationProperty    
- CustomSecurity stringGroup Id 
- The identifier of your custom security group. Should relate to the same VPC, where workspaces reside in.
- DefaultOu string
- The default organizational unit (OU) for your WorkSpace directories.
- EnableInternet boolAccess 
- Indicates whether internet access is enabled for your WorkSpaces.
- EnableMaintenance boolMode 
- Indicates whether maintenance mode is enabled for your WorkSpaces. For more information, see WorkSpace Maintenance.
- UserEnabled boolAs Local Administrator 
- Indicates whether users are local administrators of their WorkSpaces.
- CustomSecurity stringGroup Id 
- The identifier of your custom security group. Should relate to the same VPC, where workspaces reside in.
- DefaultOu string
- The default organizational unit (OU) for your WorkSpace directories.
- EnableInternet boolAccess 
- Indicates whether internet access is enabled for your WorkSpaces.
- EnableMaintenance boolMode 
- Indicates whether maintenance mode is enabled for your WorkSpaces. For more information, see WorkSpace Maintenance.
- UserEnabled boolAs Local Administrator 
- Indicates whether users are local administrators of their WorkSpaces.
- customSecurity StringGroup Id 
- The identifier of your custom security group. Should relate to the same VPC, where workspaces reside in.
- defaultOu String
- The default organizational unit (OU) for your WorkSpace directories.
- enableInternet BooleanAccess 
- Indicates whether internet access is enabled for your WorkSpaces.
- enableMaintenance BooleanMode 
- Indicates whether maintenance mode is enabled for your WorkSpaces. For more information, see WorkSpace Maintenance.
- userEnabled BooleanAs Local Administrator 
- Indicates whether users are local administrators of their WorkSpaces.
- customSecurity stringGroup Id 
- The identifier of your custom security group. Should relate to the same VPC, where workspaces reside in.
- defaultOu string
- The default organizational unit (OU) for your WorkSpace directories.
- enableInternet booleanAccess 
- Indicates whether internet access is enabled for your WorkSpaces.
- enableMaintenance booleanMode 
- Indicates whether maintenance mode is enabled for your WorkSpaces. For more information, see WorkSpace Maintenance.
- userEnabled booleanAs Local Administrator 
- Indicates whether users are local administrators of their WorkSpaces.
- custom_security_ strgroup_ id 
- The identifier of your custom security group. Should relate to the same VPC, where workspaces reside in.
- default_ou str
- The default organizational unit (OU) for your WorkSpace directories.
- enable_internet_ boolaccess 
- Indicates whether internet access is enabled for your WorkSpaces.
- enable_maintenance_ boolmode 
- Indicates whether maintenance mode is enabled for your WorkSpaces. For more information, see WorkSpace Maintenance.
- user_enabled_ boolas_ local_ administrator 
- Indicates whether users are local administrators of their WorkSpaces.
- customSecurity StringGroup Id 
- The identifier of your custom security group. Should relate to the same VPC, where workspaces reside in.
- defaultOu String
- The default organizational unit (OU) for your WorkSpace directories.
- enableInternet BooleanAccess 
- Indicates whether internet access is enabled for your WorkSpaces.
- enableMaintenance BooleanMode 
- Indicates whether maintenance mode is enabled for your WorkSpaces. For more information, see WorkSpace Maintenance.
- userEnabled BooleanAs Local Administrator 
- Indicates whether users are local administrators of their WorkSpaces.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the awsTerraform Provider.