GetWorkspaceArgs constructor

const GetWorkspaceArgs({
  1. Input<String?>? directoryId,
  2. Input<String?>? region,
  3. Input<Map<String, String>?>? tags,
  4. Input<String?>? userName,
  5. Input<String?>? workspaceId,
})

Creates a new GetWorkspaceArgs. directoryId ID of the directory for the WorkSpace. You have to specify userName along with directoryId. You cannot combine this parameter with workspaceId. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. tags Tags for the WorkSpace. userName User name of the user for the WorkSpace. This user name must exist in the directory for the WorkSpace. You cannot combine this parameter with workspaceId. workspaceId ID of the WorkSpace. You cannot combine this parameter with directoryId.

Implementation

const GetWorkspaceArgs({
  this.directoryId,
  this.region,
  this.tags,
  this.userName,
  this.workspaceId,
});