WorkspaceRequest constructor

WorkspaceRequest({
  1. required String bundleId,
  2. required String directoryId,
  3. required String userName,
  4. bool? rootVolumeEncryptionEnabled,
  5. List<Tag>? tags,
  6. bool? userVolumeEncryptionEnabled,
  7. String? volumeEncryptionKey,
  8. WorkspaceProperties? workspaceProperties,
})

Implementation

WorkspaceRequest({
  required this.bundleId,
  required this.directoryId,
  required this.userName,
  this.rootVolumeEncryptionEnabled,
  this.tags,
  this.userVolumeEncryptionEnabled,
  this.volumeEncryptionKey,
  this.workspaceProperties,
});