forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.go
800 lines (630 loc) · 26.3 KB
/
api.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
// Package workspaces provides a client for Amazon WorkSpaces.
package workspaces
import (
"sync"
"github.com/aws/aws-sdk-go/aws"
)
var oprw sync.Mutex
// CreateWorkspacesRequest generates a request for the CreateWorkspaces operation.
func (c *WorkSpaces) CreateWorkspacesRequest(input *CreateWorkspacesInput) (req *aws.Request, output *CreateWorkspacesOutput) {
oprw.Lock()
defer oprw.Unlock()
if opCreateWorkspaces == nil {
opCreateWorkspaces = &aws.Operation{
Name: "CreateWorkspaces",
HTTPMethod: "POST",
HTTPPath: "/",
}
}
if input == nil {
input = &CreateWorkspacesInput{}
}
req = c.newRequest(opCreateWorkspaces, input, output)
output = &CreateWorkspacesOutput{}
req.Data = output
return
}
// Creates one or more WorkSpaces.
//
// This operation is asynchronous and returns before the WorkSpaces are created.
func (c *WorkSpaces) CreateWorkspaces(input *CreateWorkspacesInput) (*CreateWorkspacesOutput, error) {
req, out := c.CreateWorkspacesRequest(input)
err := req.Send()
return out, err
}
var opCreateWorkspaces *aws.Operation
// DescribeWorkspaceBundlesRequest generates a request for the DescribeWorkspaceBundles operation.
func (c *WorkSpaces) DescribeWorkspaceBundlesRequest(input *DescribeWorkspaceBundlesInput) (req *aws.Request, output *DescribeWorkspaceBundlesOutput) {
oprw.Lock()
defer oprw.Unlock()
if opDescribeWorkspaceBundles == nil {
opDescribeWorkspaceBundles = &aws.Operation{
Name: "DescribeWorkspaceBundles",
HTTPMethod: "POST",
HTTPPath: "/",
}
}
if input == nil {
input = &DescribeWorkspaceBundlesInput{}
}
req = c.newRequest(opDescribeWorkspaceBundles, input, output)
output = &DescribeWorkspaceBundlesOutput{}
req.Data = output
return
}
// Obtains information about the WorkSpace bundles that are available to your
// account in the specified region.
//
// You can filter the results with either the BundleIds parameter, or the Owner
// parameter, but not both.
//
// This operation supports pagination with the use of the NextToken request
// and response parameters. If more results are available, the NextToken response
// member contains a token that you pass in the next call to this operation
// to retrieve the next set of items.
func (c *WorkSpaces) DescribeWorkspaceBundles(input *DescribeWorkspaceBundlesInput) (*DescribeWorkspaceBundlesOutput, error) {
req, out := c.DescribeWorkspaceBundlesRequest(input)
err := req.Send()
return out, err
}
var opDescribeWorkspaceBundles *aws.Operation
// DescribeWorkspaceDirectoriesRequest generates a request for the DescribeWorkspaceDirectories operation.
func (c *WorkSpaces) DescribeWorkspaceDirectoriesRequest(input *DescribeWorkspaceDirectoriesInput) (req *aws.Request, output *DescribeWorkspaceDirectoriesOutput) {
oprw.Lock()
defer oprw.Unlock()
if opDescribeWorkspaceDirectories == nil {
opDescribeWorkspaceDirectories = &aws.Operation{
Name: "DescribeWorkspaceDirectories",
HTTPMethod: "POST",
HTTPPath: "/",
}
}
if input == nil {
input = &DescribeWorkspaceDirectoriesInput{}
}
req = c.newRequest(opDescribeWorkspaceDirectories, input, output)
output = &DescribeWorkspaceDirectoriesOutput{}
req.Data = output
return
}
// Retrieves information about the AWS Directory Service directories in the
// region that are registered with Amazon WorkSpaces and are available to your
// account.
//
// This operation supports pagination with the use of the NextToken request
// and response parameters. If more results are available, the NextToken response
// member contains a token that you pass in the next call to this operation
// to retrieve the next set of items.
func (c *WorkSpaces) DescribeWorkspaceDirectories(input *DescribeWorkspaceDirectoriesInput) (*DescribeWorkspaceDirectoriesOutput, error) {
req, out := c.DescribeWorkspaceDirectoriesRequest(input)
err := req.Send()
return out, err
}
var opDescribeWorkspaceDirectories *aws.Operation
// DescribeWorkspacesRequest generates a request for the DescribeWorkspaces operation.
func (c *WorkSpaces) DescribeWorkspacesRequest(input *DescribeWorkspacesInput) (req *aws.Request, output *DescribeWorkspacesOutput) {
oprw.Lock()
defer oprw.Unlock()
if opDescribeWorkspaces == nil {
opDescribeWorkspaces = &aws.Operation{
Name: "DescribeWorkspaces",
HTTPMethod: "POST",
HTTPPath: "/",
}
}
if input == nil {
input = &DescribeWorkspacesInput{}
}
req = c.newRequest(opDescribeWorkspaces, input, output)
output = &DescribeWorkspacesOutput{}
req.Data = output
return
}
// Obtains information about the specified WorkSpaces.
//
// Only one of the filter parameters, such as BundleId, DirectoryId, or WorkspaceIds,
// can be specified at a time.
//
// This operation supports pagination with the use of the NextToken request
// and response parameters. If more results are available, the NextToken response
// member contains a token that you pass in the next call to this operation
// to retrieve the next set of items.
func (c *WorkSpaces) DescribeWorkspaces(input *DescribeWorkspacesInput) (*DescribeWorkspacesOutput, error) {
req, out := c.DescribeWorkspacesRequest(input)
err := req.Send()
return out, err
}
var opDescribeWorkspaces *aws.Operation
// RebootWorkspacesRequest generates a request for the RebootWorkspaces operation.
func (c *WorkSpaces) RebootWorkspacesRequest(input *RebootWorkspacesInput) (req *aws.Request, output *RebootWorkspacesOutput) {
oprw.Lock()
defer oprw.Unlock()
if opRebootWorkspaces == nil {
opRebootWorkspaces = &aws.Operation{
Name: "RebootWorkspaces",
HTTPMethod: "POST",
HTTPPath: "/",
}
}
if input == nil {
input = &RebootWorkspacesInput{}
}
req = c.newRequest(opRebootWorkspaces, input, output)
output = &RebootWorkspacesOutput{}
req.Data = output
return
}
// Reboots the specified WorkSpaces.
//
// To be able to reboot a WorkSpace, the WorkSpace must have a State of AVAILABLE,
// IMPAIRED, or INOPERABLE.
//
// This operation is asynchronous and will return before the WorkSpaces have
// rebooted.
func (c *WorkSpaces) RebootWorkspaces(input *RebootWorkspacesInput) (*RebootWorkspacesOutput, error) {
req, out := c.RebootWorkspacesRequest(input)
err := req.Send()
return out, err
}
var opRebootWorkspaces *aws.Operation
// RebuildWorkspacesRequest generates a request for the RebuildWorkspaces operation.
func (c *WorkSpaces) RebuildWorkspacesRequest(input *RebuildWorkspacesInput) (req *aws.Request, output *RebuildWorkspacesOutput) {
oprw.Lock()
defer oprw.Unlock()
if opRebuildWorkspaces == nil {
opRebuildWorkspaces = &aws.Operation{
Name: "RebuildWorkspaces",
HTTPMethod: "POST",
HTTPPath: "/",
}
}
if input == nil {
input = &RebuildWorkspacesInput{}
}
req = c.newRequest(opRebuildWorkspaces, input, output)
output = &RebuildWorkspacesOutput{}
req.Data = output
return
}
// Rebuilds the specified WorkSpaces.
//
// Rebuilding a WorkSpace is a potentially destructive action that can result
// in the loss of data. Rebuilding a WorkSpace causes the following to occur:
//
// The system is restored to the image of the bundle that the WorkSpace is
// created from. Any applications that have been installed, or system settings
// that have been made since the WorkSpace was created will be lost. The data
// drive (D drive) is re-created from the last automatic snapshot taken of the
// data drive. The current contents of the data drive are overwritten. Automatic
// snapshots of the data drive are taken every 12 hours, so the snapshot can
// be as much as 12 hours old. To be able to rebuild a WorkSpace, the WorkSpace
// must have a State of AVAILABLE or ERROR.
//
// This operation is asynchronous and will return before the WorkSpaces have
// been completely rebuilt.
func (c *WorkSpaces) RebuildWorkspaces(input *RebuildWorkspacesInput) (*RebuildWorkspacesOutput, error) {
req, out := c.RebuildWorkspacesRequest(input)
err := req.Send()
return out, err
}
var opRebuildWorkspaces *aws.Operation
// TerminateWorkspacesRequest generates a request for the TerminateWorkspaces operation.
func (c *WorkSpaces) TerminateWorkspacesRequest(input *TerminateWorkspacesInput) (req *aws.Request, output *TerminateWorkspacesOutput) {
oprw.Lock()
defer oprw.Unlock()
if opTerminateWorkspaces == nil {
opTerminateWorkspaces = &aws.Operation{
Name: "TerminateWorkspaces",
HTTPMethod: "POST",
HTTPPath: "/",
}
}
if input == nil {
input = &TerminateWorkspacesInput{}
}
req = c.newRequest(opTerminateWorkspaces, input, output)
output = &TerminateWorkspacesOutput{}
req.Data = output
return
}
// Terminates the specified WorkSpaces.
//
// Terminating a WorkSpace is a permanent action and cannot be undone. The
// user's data is not maintained and will be destroyed. If you need to archive
// any user data, contact Amazon Web Services before terminating the WorkSpace.
//
// You can terminate a WorkSpace that is in any state except SUSPENDED.
//
// This operation is asynchronous and will return before the WorkSpaces have
// been completely terminated.
func (c *WorkSpaces) TerminateWorkspaces(input *TerminateWorkspacesInput) (*TerminateWorkspacesOutput, error) {
req, out := c.TerminateWorkspacesRequest(input)
err := req.Send()
return out, err
}
var opTerminateWorkspaces *aws.Operation
// Contains information about the compute type of a WorkSpace bundle.
type ComputeType struct {
// The name of the compute type for the bundle.
Name *string `type:"string"`
metadataComputeType `json:"-" xml:"-"`
}
type metadataComputeType struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains the inputs for the CreateWorkspaces operation.
type CreateWorkspacesInput struct {
// An array of structures that specify the WorkSpaces to create.
Workspaces []*WorkspaceRequest `type:"list" required:"true"`
metadataCreateWorkspacesInput `json:"-" xml:"-"`
}
type metadataCreateWorkspacesInput struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains the result of the CreateWorkspaces operation.
type CreateWorkspacesOutput struct {
// An array of structures that represent the WorkSpaces that could not be created.
FailedRequests []*FailedCreateWorkspaceRequest `type:"list"`
// An array of structures that represent the WorkSpaces that were created.
//
// Because this operation is asynchronous, the identifier in WorkspaceId is
// not immediately available. If you immediately call DescribeWorkspaces with
// this identifier, no information will be returned.
PendingRequests []*Workspace `type:"list"`
metadataCreateWorkspacesOutput `json:"-" xml:"-"`
}
type metadataCreateWorkspacesOutput struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains default WorkSpace creation information.
type DefaultWorkspaceCreationProperties struct {
// The identifier of any custom security groups that are applied to the WorkSpaces
// when they are created.
CustomSecurityGroupID *string `locationName:"CustomSecurityGroupId" type:"string"`
// The organizational unit (OU) in the directory that the WorkSpace machine
// accounts are placed in.
DefaultOU *string `locationName:"DefaultOu" type:"string"`
// A public IP address will be attached to all WorkSpaces that are created or
// rebuilt.
EnableInternetAccess *bool `type:"boolean"`
// Specifies if the directory is enabled for Amazon WorkDocs.
EnableWorkDocs *bool `type:"boolean"`
// The WorkSpace user is an administrator on the WorkSpace.
UserEnabledAsLocalAdministrator *bool `type:"boolean"`
metadataDefaultWorkspaceCreationProperties `json:"-" xml:"-"`
}
type metadataDefaultWorkspaceCreationProperties struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains the inputs for the DescribeWorkspaceBundles operation.
type DescribeWorkspaceBundlesInput struct {
// An array of strings that contains the identifiers of the bundles to retrieve.
// This parameter cannot be combined with any other filter parameter.
BundleIDs []*string `locationName:"BundleIds" type:"list"`
// The NextToken value from a previous call to this operation. Pass null if
// this is the first call.
NextToken *string `type:"string"`
// The owner of the bundles to retrieve. This parameter cannot be combined with
// any other filter parameter.
//
// This contains one of the following values:
//
// null - Retrieves the bundles that belong to the account making the call.
// AMAZON - Retrieves the bundles that are provided by AWS.
Owner *string `type:"string"`
metadataDescribeWorkspaceBundlesInput `json:"-" xml:"-"`
}
type metadataDescribeWorkspaceBundlesInput struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains the results of the DescribeWorkspaceBundles operation.
type DescribeWorkspaceBundlesOutput struct {
// An array of structures that contain information about the bundles.
Bundles []*WorkspaceBundle `type:"list"`
// If not null, more results are available. Pass this value for the NextToken
// parameter in a subsequent call to this operation to retrieve the next set
// of items. This token is valid for one day and must be used within that timeframe.
NextToken *string `type:"string"`
metadataDescribeWorkspaceBundlesOutput `json:"-" xml:"-"`
}
type metadataDescribeWorkspaceBundlesOutput struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains the inputs for the DescribeWorkspaceDirectories operation.
type DescribeWorkspaceDirectoriesInput struct {
// An array of strings that contains the directory identifiers to retrieve information
// for. If this member is null, all directories are retrieved.
DirectoryIDs []*string `locationName:"DirectoryIds" type:"list"`
// The NextToken value from a previous call to this operation. Pass null if
// this is the first call.
NextToken *string `type:"string"`
metadataDescribeWorkspaceDirectoriesInput `json:"-" xml:"-"`
}
type metadataDescribeWorkspaceDirectoriesInput struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains the results of the DescribeWorkspaceDirectories operation.
type DescribeWorkspaceDirectoriesOutput struct {
// An array of structures that contain information about the directories.
Directories []*WorkspaceDirectory `type:"list"`
// If not null, more results are available. Pass this value for the NextToken
// parameter in a subsequent call to this operation to retrieve the next set
// of items. This token is valid for one day and must be used within that timeframe.
NextToken *string `type:"string"`
metadataDescribeWorkspaceDirectoriesOutput `json:"-" xml:"-"`
}
type metadataDescribeWorkspaceDirectoriesOutput struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains the inputs for the DescribeWorkspaces operation.
type DescribeWorkspacesInput struct {
// The identifier of a bundle to obtain the WorkSpaces for. All WorkSpaces that
// are created from this bundle will be retrieved. This parameter cannot be
// combined with any other filter parameter.
BundleID *string `locationName:"BundleId" type:"string"`
// Specifies the directory identifier to which to limit the WorkSpaces. Optionally,
// you can specify a specific directory user with the UserName parameter. This
// parameter cannot be combined with any other filter parameter.
DirectoryID *string `locationName:"DirectoryId" type:"string"`
// The maximum number of items to return.
Limit *int64 `type:"integer"`
// The NextToken value from a previous call to this operation. Pass null if
// this is the first call.
NextToken *string `type:"string"`
// Used with the DirectoryId parameter to specify the directory user for which
// to obtain the WorkSpace.
UserName *string `type:"string"`
// An array of strings that contain the identifiers of the WorkSpaces for which
// to retrieve information. This parameter cannot be combined with any other
// filter parameter.
//
// Because the CreateWorkspaces operation is asynchronous, the identifier returned
// by CreateWorkspaces is not immediately available. If you immediately call
// DescribeWorkspaces with this identifier, no information will be returned.
WorkspaceIDs []*string `locationName:"WorkspaceIds" type:"list"`
metadataDescribeWorkspacesInput `json:"-" xml:"-"`
}
type metadataDescribeWorkspacesInput struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains the results for the DescribeWorkspaces operation.
type DescribeWorkspacesOutput struct {
// If not null, more results are available. Pass this value for the NextToken
// parameter in a subsequent call to this operation to retrieve the next set
// of items. This token is valid for one day and must be used within that timeframe.
NextToken *string `type:"string"`
// An array of structures that contain the information about the WorkSpaces.
//
// Because the CreateWorkspaces operation is asynchronous, some of this information
// may be incomplete for a newly-created WorkSpace.
Workspaces []*Workspace `type:"list"`
metadataDescribeWorkspacesOutput `json:"-" xml:"-"`
}
type metadataDescribeWorkspacesOutput struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains information about a WorkSpace that could not be created.
type FailedCreateWorkspaceRequest struct {
// The error code.
ErrorCode *string `type:"string"`
// The textual error message.
ErrorMessage *string `type:"string"`
// A WorkspaceRequest object that contains the information about the WorkSpace
// that could not be created.
WorkspaceRequest *WorkspaceRequest `type:"structure"`
metadataFailedCreateWorkspaceRequest `json:"-" xml:"-"`
}
type metadataFailedCreateWorkspaceRequest struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains information about a WorkSpace that could not be rebooted (RebootWorkspaces),
// rebuilt (RebuildWorkspaces), or terminated (TerminateWorkspaces).
type FailedWorkspaceChangeRequest struct {
// The error code.
ErrorCode *string `type:"string"`
// The textual error message.
ErrorMessage *string `type:"string"`
// The identifier of the WorkSpace.
WorkspaceID *string `locationName:"WorkspaceId" type:"string"`
metadataFailedWorkspaceChangeRequest `json:"-" xml:"-"`
}
type metadataFailedWorkspaceChangeRequest struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains information used with the RebootWorkspaces operation to reboot a
// WorkSpace.
type RebootRequest struct {
// The identifier of the WorkSpace to reboot.
WorkspaceID *string `locationName:"WorkspaceId" type:"string" required:"true"`
metadataRebootRequest `json:"-" xml:"-"`
}
type metadataRebootRequest struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains the inputs for the RebootWorkspaces operation.
type RebootWorkspacesInput struct {
// An array of structures that specify the WorkSpaces to reboot.
RebootWorkspaceRequests []*RebootRequest `type:"list" required:"true"`
metadataRebootWorkspacesInput `json:"-" xml:"-"`
}
type metadataRebootWorkspacesInput struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains the results of the RebootWorkspaces operation.
type RebootWorkspacesOutput struct {
// An array of structures that represent any WorkSpaces that could not be rebooted.
FailedRequests []*FailedWorkspaceChangeRequest `type:"list"`
metadataRebootWorkspacesOutput `json:"-" xml:"-"`
}
type metadataRebootWorkspacesOutput struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains information used with the RebuildWorkspaces operation to rebuild
// a WorkSpace.
type RebuildRequest struct {
// The identifier of the WorkSpace to rebuild.
WorkspaceID *string `locationName:"WorkspaceId" type:"string" required:"true"`
metadataRebuildRequest `json:"-" xml:"-"`
}
type metadataRebuildRequest struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains the inputs for the RebuildWorkspaces operation.
type RebuildWorkspacesInput struct {
// An array of structures that specify the WorkSpaces to rebuild.
RebuildWorkspaceRequests []*RebuildRequest `type:"list" required:"true"`
metadataRebuildWorkspacesInput `json:"-" xml:"-"`
}
type metadataRebuildWorkspacesInput struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains the results of the RebuildWorkspaces operation.
type RebuildWorkspacesOutput struct {
// An array of structures that represent any WorkSpaces that could not be rebuilt.
FailedRequests []*FailedWorkspaceChangeRequest `type:"list"`
metadataRebuildWorkspacesOutput `json:"-" xml:"-"`
}
type metadataRebuildWorkspacesOutput struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains information used with the TerminateWorkspaces operation to terminate
// a WorkSpace.
type TerminateRequest struct {
// The identifier of the WorkSpace to terminate.
WorkspaceID *string `locationName:"WorkspaceId" type:"string" required:"true"`
metadataTerminateRequest `json:"-" xml:"-"`
}
type metadataTerminateRequest struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains the inputs for the TerminateWorkspaces operation.
type TerminateWorkspacesInput struct {
// An array of structures that specify the WorkSpaces to terminate.
TerminateWorkspaceRequests []*TerminateRequest `type:"list" required:"true"`
metadataTerminateWorkspacesInput `json:"-" xml:"-"`
}
type metadataTerminateWorkspacesInput struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains the results of the TerminateWorkspaces operation.
type TerminateWorkspacesOutput struct {
// An array of structures that represent any WorkSpaces that could not be terminated.
FailedRequests []*FailedWorkspaceChangeRequest `type:"list"`
metadataTerminateWorkspacesOutput `json:"-" xml:"-"`
}
type metadataTerminateWorkspacesOutput struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains information about the user storage for a WorkSpace bundle.
type UserStorage struct {
// The amount of user storage for the bundle.
Capacity *string `type:"string"`
metadataUserStorage `json:"-" xml:"-"`
}
type metadataUserStorage struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains information about a WorkSpace.
type Workspace struct {
// The identifier of the bundle that the WorkSpace was created from.
BundleID *string `locationName:"BundleId" type:"string"`
// The identifier of the AWS Directory Service directory that the WorkSpace
// belongs to.
DirectoryID *string `locationName:"DirectoryId" type:"string"`
// If the WorkSpace could not be created, this contains the error code.
ErrorCode *string `type:"string"`
// If the WorkSpace could not be created, this contains a textual error message
// that describes the failure.
ErrorMessage *string `type:"string"`
// The IP address of the WorkSpace.
IPAddress *string `locationName:"IpAddress" type:"string"`
// The operational state of the WorkSpace.
State *string `type:"string"`
// The identifier of the subnet that the WorkSpace is in.
SubnetID *string `locationName:"SubnetId" type:"string"`
// The user that the WorkSpace is assigned to.
UserName *string `type:"string"`
// The identifier of the WorkSpace.
WorkspaceID *string `locationName:"WorkspaceId" type:"string"`
metadataWorkspace `json:"-" xml:"-"`
}
type metadataWorkspace struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains information about a WorkSpace bundle.
type WorkspaceBundle struct {
// The bundle identifier.
BundleID *string `locationName:"BundleId" type:"string"`
// A ComputeType object that specifies the compute type for the bundle.
ComputeType *ComputeType `type:"structure"`
// The bundle description.
Description *string `type:"string"`
// The name of the bundle.
Name *string `type:"string"`
// The owner of the bundle. This contains the owner's account identifier, or
// AMAZON if the bundle is provided by AWS.
Owner *string `type:"string"`
// A UserStorage object that specifies the amount of user storage that the bundle
// contains.
UserStorage *UserStorage `type:"structure"`
metadataWorkspaceBundle `json:"-" xml:"-"`
}
type metadataWorkspaceBundle struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains information about an AWS Directory Service directory for use with
// Amazon WorkSpaces.
type WorkspaceDirectory struct {
// The directory alias.
Alias *string `type:"string"`
// The user name for the service account.
CustomerUserName *string `type:"string"`
// An array of strings that contains the IP addresses of the DNS servers for
// the directory.
DNSIPAddresses []*string `locationName:"DnsIpAddresses" type:"list"`
// The directory identifier.
DirectoryID *string `locationName:"DirectoryId" type:"string"`
// The name of the directory.
DirectoryName *string `type:"string"`
// The directory type.
DirectoryType *string `type:"string"`
// The 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.
IAMRoleID *string `locationName:"IamRoleId" type:"string"`
// The registration code for the directory. This is the code that users enter
// in their Amazon WorkSpaces client application to connect to the directory.
RegistrationCode *string `type:"string"`
// The state of the directory's registration with Amazon WorkSpaces
State *string `type:"string"`
// An array of strings that contains the identifiers of the subnets used with
// the directory.
SubnetIDs []*string `locationName:"SubnetIds" type:"list"`
// A structure that specifies the default creation properties for all WorkSpaces
// in the directory.
WorkspaceCreationProperties *DefaultWorkspaceCreationProperties `type:"structure"`
// The identifier of the security group that is assigned to new WorkSpaces.
WorkspaceSecurityGroupID *string `locationName:"WorkspaceSecurityGroupId" type:"string"`
metadataWorkspaceDirectory `json:"-" xml:"-"`
}
type metadataWorkspaceDirectory struct {
SDKShapeTraits bool `type:"structure"`
}
// Contains information about a WorkSpace creation request.
type WorkspaceRequest struct {
// The identifier of the bundle to create the WorkSpace from. You can use the
// DescribeWorkspaceBundles operation to obtain a list of the bundles that are
// available.
BundleID *string `locationName:"BundleId" type:"string" required:"true"`
// The identifier of the AWS Directory Service directory to create the WorkSpace
// in. You can use the DescribeWorkspaceDirectories operation to obtain a list
// of the directories that are available.
DirectoryID *string `locationName:"DirectoryId" type:"string" required:"true"`
// The username that the WorkSpace is assigned to. This username must exist
// in the AWS Directory Service directory specified by the DirectoryId member.
UserName *string `type:"string" required:"true"`
metadataWorkspaceRequest `json:"-" xml:"-"`
}
type metadataWorkspaceRequest struct {
SDKShapeTraits bool `type:"structure"`
}