@aws-sdk/client-workspaces 3.687.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -43,7 +43,7 @@ export interface StartRequest {
|
|
|
43
43
|
* <p>The identifier of the WorkSpace.</p>
|
|
44
44
|
* @public
|
|
45
45
|
*/
|
|
46
|
-
WorkspaceId?: string;
|
|
46
|
+
WorkspaceId?: string | undefined;
|
|
47
47
|
}
|
|
48
48
|
/**
|
|
49
49
|
* @public
|
|
@@ -63,7 +63,7 @@ export interface StartWorkspacesResult {
|
|
|
63
63
|
* <p>Information about the WorkSpaces that could not be started.</p>
|
|
64
64
|
* @public
|
|
65
65
|
*/
|
|
66
|
-
FailedRequests?: FailedWorkspaceChangeRequest[];
|
|
66
|
+
FailedRequests?: FailedWorkspaceChangeRequest[] | undefined;
|
|
67
67
|
}
|
|
68
68
|
/**
|
|
69
69
|
* @public
|
|
@@ -89,7 +89,7 @@ export interface StopRequest {
|
|
|
89
89
|
* <p>The identifier of the WorkSpace.</p>
|
|
90
90
|
* @public
|
|
91
91
|
*/
|
|
92
|
-
WorkspaceId?: string;
|
|
92
|
+
WorkspaceId?: string | undefined;
|
|
93
93
|
}
|
|
94
94
|
/**
|
|
95
95
|
* @public
|
|
@@ -109,7 +109,7 @@ export interface StopWorkspacesResult {
|
|
|
109
109
|
* <p>Information about the WorkSpaces that could not be stopped.</p>
|
|
110
110
|
* @public
|
|
111
111
|
*/
|
|
112
|
-
FailedRequests?: FailedWorkspaceChangeRequest[];
|
|
112
|
+
FailedRequests?: FailedWorkspaceChangeRequest[] | undefined;
|
|
113
113
|
}
|
|
114
114
|
/**
|
|
115
115
|
* @public
|
|
@@ -155,7 +155,7 @@ export interface TerminateWorkspacesResult {
|
|
|
155
155
|
* <p>Information about the WorkSpaces that could not be terminated.</p>
|
|
156
156
|
* @public
|
|
157
157
|
*/
|
|
158
|
-
FailedRequests?: FailedWorkspaceChangeRequest[];
|
|
158
|
+
FailedRequests?: FailedWorkspaceChangeRequest[] | undefined;
|
|
159
159
|
}
|
|
160
160
|
/**
|
|
161
161
|
* @public
|
|
@@ -205,12 +205,12 @@ export interface UpdateConnectClientAddInRequest {
|
|
|
205
205
|
* <p>The name of the client add-in.</p>
|
|
206
206
|
* @public
|
|
207
207
|
*/
|
|
208
|
-
Name?: string;
|
|
208
|
+
Name?: string | undefined;
|
|
209
209
|
/**
|
|
210
210
|
* <p>The endpoint URL of the Amazon Connect client add-in.</p>
|
|
211
211
|
* @public
|
|
212
212
|
*/
|
|
213
|
-
URL?: string;
|
|
213
|
+
URL?: string | undefined;
|
|
214
214
|
}
|
|
215
215
|
/**
|
|
216
216
|
* @public
|
|
@@ -265,12 +265,12 @@ export interface UpdateWorkspaceBundleRequest {
|
|
|
265
265
|
* <p>The identifier of the bundle.</p>
|
|
266
266
|
* @public
|
|
267
267
|
*/
|
|
268
|
-
BundleId?: string;
|
|
268
|
+
BundleId?: string | undefined;
|
|
269
269
|
/**
|
|
270
270
|
* <p>The identifier of the image.</p>
|
|
271
271
|
* @public
|
|
272
272
|
*/
|
|
273
|
-
ImageId?: string;
|
|
273
|
+
ImageId?: string | undefined;
|
|
274
274
|
}
|
|
275
275
|
/**
|
|
276
276
|
* @public
|
|
@@ -320,32 +320,32 @@ export interface UpdateWorkspacesPoolRequest {
|
|
|
320
320
|
* <p>Describes the specified pool to update.</p>
|
|
321
321
|
* @public
|
|
322
322
|
*/
|
|
323
|
-
Description?: string;
|
|
323
|
+
Description?: string | undefined;
|
|
324
324
|
/**
|
|
325
325
|
* <p>The identifier of the bundle.</p>
|
|
326
326
|
* @public
|
|
327
327
|
*/
|
|
328
|
-
BundleId?: string;
|
|
328
|
+
BundleId?: string | undefined;
|
|
329
329
|
/**
|
|
330
330
|
* <p>The identifier of the directory.</p>
|
|
331
331
|
* @public
|
|
332
332
|
*/
|
|
333
|
-
DirectoryId?: string;
|
|
333
|
+
DirectoryId?: string | undefined;
|
|
334
334
|
/**
|
|
335
335
|
* <p>The desired capacity for the pool.</p>
|
|
336
336
|
* @public
|
|
337
337
|
*/
|
|
338
|
-
Capacity?: Capacity;
|
|
338
|
+
Capacity?: Capacity | undefined;
|
|
339
339
|
/**
|
|
340
340
|
* <p>The persistent application settings for users in the pool.</p>
|
|
341
341
|
* @public
|
|
342
342
|
*/
|
|
343
|
-
ApplicationSettings?: ApplicationSettingsRequest;
|
|
343
|
+
ApplicationSettings?: ApplicationSettingsRequest | undefined;
|
|
344
344
|
/**
|
|
345
345
|
* <p>Indicates the timeout settings of the specified pool.</p>
|
|
346
346
|
* @public
|
|
347
347
|
*/
|
|
348
|
-
TimeoutSettings?: TimeoutSettings;
|
|
348
|
+
TimeoutSettings?: TimeoutSettings | undefined;
|
|
349
349
|
}
|
|
350
350
|
/**
|
|
351
351
|
* @public
|
|
@@ -355,5 +355,5 @@ export interface UpdateWorkspacesPoolResult {
|
|
|
355
355
|
* <p>Describes the specified pool.</p>
|
|
356
356
|
* @public
|
|
357
357
|
*/
|
|
358
|
-
WorkspacesPool?: WorkspacesPool;
|
|
358
|
+
WorkspacesPool?: WorkspacesPool | undefined;
|
|
359
359
|
}
|