forked from aws/aws-sdk-go-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.go
1793 lines (1454 loc) · 53.5 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
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package mobile
import (
"time"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/internal/awsutil"
"github.com/aws/aws-sdk-go-v2/private/protocol"
)
const opCreateProject = "CreateProject"
// CreateProjectRequest is a API request type for the CreateProject API operation.
type CreateProjectRequest struct {
*aws.Request
Input *CreateProjectInput
Copy func(*CreateProjectInput) CreateProjectRequest
}
// Send marshals and sends the CreateProject API request.
func (r CreateProjectRequest) Send() (*CreateProjectOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*CreateProjectOutput), nil
}
// CreateProjectRequest returns a request value for making API operation for
// AWS Mobile.
//
// Creates an AWS Mobile Hub project.
//
// // Example sending a request using the CreateProjectRequest method.
// req := client.CreateProjectRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/mobile-2017-07-01/CreateProject
func (c *Mobile) CreateProjectRequest(input *CreateProjectInput) CreateProjectRequest {
op := &aws.Operation{
Name: opCreateProject,
HTTPMethod: "POST",
HTTPPath: "/projects",
}
if input == nil {
input = &CreateProjectInput{}
}
output := &CreateProjectOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return CreateProjectRequest{Request: req, Input: input, Copy: c.CreateProjectRequest}
}
const opDeleteProject = "DeleteProject"
// DeleteProjectRequest is a API request type for the DeleteProject API operation.
type DeleteProjectRequest struct {
*aws.Request
Input *DeleteProjectInput
Copy func(*DeleteProjectInput) DeleteProjectRequest
}
// Send marshals and sends the DeleteProject API request.
func (r DeleteProjectRequest) Send() (*DeleteProjectOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteProjectOutput), nil
}
// DeleteProjectRequest returns a request value for making API operation for
// AWS Mobile.
//
// Delets a project in AWS Mobile Hub.
//
// // Example sending a request using the DeleteProjectRequest method.
// req := client.DeleteProjectRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/mobile-2017-07-01/DeleteProject
func (c *Mobile) DeleteProjectRequest(input *DeleteProjectInput) DeleteProjectRequest {
op := &aws.Operation{
Name: opDeleteProject,
HTTPMethod: "DELETE",
HTTPPath: "/projects/{projectId}",
}
if input == nil {
input = &DeleteProjectInput{}
}
output := &DeleteProjectOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DeleteProjectRequest{Request: req, Input: input, Copy: c.DeleteProjectRequest}
}
const opDescribeBundle = "DescribeBundle"
// DescribeBundleRequest is a API request type for the DescribeBundle API operation.
type DescribeBundleRequest struct {
*aws.Request
Input *DescribeBundleInput
Copy func(*DescribeBundleInput) DescribeBundleRequest
}
// Send marshals and sends the DescribeBundle API request.
func (r DescribeBundleRequest) Send() (*DescribeBundleOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DescribeBundleOutput), nil
}
// DescribeBundleRequest returns a request value for making API operation for
// AWS Mobile.
//
// Get the bundle details for the requested bundle id.
//
// // Example sending a request using the DescribeBundleRequest method.
// req := client.DescribeBundleRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/mobile-2017-07-01/DescribeBundle
func (c *Mobile) DescribeBundleRequest(input *DescribeBundleInput) DescribeBundleRequest {
op := &aws.Operation{
Name: opDescribeBundle,
HTTPMethod: "GET",
HTTPPath: "/bundles/{bundleId}",
}
if input == nil {
input = &DescribeBundleInput{}
}
output := &DescribeBundleOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DescribeBundleRequest{Request: req, Input: input, Copy: c.DescribeBundleRequest}
}
const opDescribeProject = "DescribeProject"
// DescribeProjectRequest is a API request type for the DescribeProject API operation.
type DescribeProjectRequest struct {
*aws.Request
Input *DescribeProjectInput
Copy func(*DescribeProjectInput) DescribeProjectRequest
}
// Send marshals and sends the DescribeProject API request.
func (r DescribeProjectRequest) Send() (*DescribeProjectOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DescribeProjectOutput), nil
}
// DescribeProjectRequest returns a request value for making API operation for
// AWS Mobile.
//
// Gets details about a project in AWS Mobile Hub.
//
// // Example sending a request using the DescribeProjectRequest method.
// req := client.DescribeProjectRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/mobile-2017-07-01/DescribeProject
func (c *Mobile) DescribeProjectRequest(input *DescribeProjectInput) DescribeProjectRequest {
op := &aws.Operation{
Name: opDescribeProject,
HTTPMethod: "GET",
HTTPPath: "/project",
}
if input == nil {
input = &DescribeProjectInput{}
}
output := &DescribeProjectOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DescribeProjectRequest{Request: req, Input: input, Copy: c.DescribeProjectRequest}
}
const opExportBundle = "ExportBundle"
// ExportBundleRequest is a API request type for the ExportBundle API operation.
type ExportBundleRequest struct {
*aws.Request
Input *ExportBundleInput
Copy func(*ExportBundleInput) ExportBundleRequest
}
// Send marshals and sends the ExportBundle API request.
func (r ExportBundleRequest) Send() (*ExportBundleOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*ExportBundleOutput), nil
}
// ExportBundleRequest returns a request value for making API operation for
// AWS Mobile.
//
// Generates customized software development kit (SDK) and or tool packages
// used to integrate mobile web or mobile app clients with backend AWS resources.
//
// // Example sending a request using the ExportBundleRequest method.
// req := client.ExportBundleRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/mobile-2017-07-01/ExportBundle
func (c *Mobile) ExportBundleRequest(input *ExportBundleInput) ExportBundleRequest {
op := &aws.Operation{
Name: opExportBundle,
HTTPMethod: "POST",
HTTPPath: "/bundles/{bundleId}",
}
if input == nil {
input = &ExportBundleInput{}
}
output := &ExportBundleOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return ExportBundleRequest{Request: req, Input: input, Copy: c.ExportBundleRequest}
}
const opExportProject = "ExportProject"
// ExportProjectRequest is a API request type for the ExportProject API operation.
type ExportProjectRequest struct {
*aws.Request
Input *ExportProjectInput
Copy func(*ExportProjectInput) ExportProjectRequest
}
// Send marshals and sends the ExportProject API request.
func (r ExportProjectRequest) Send() (*ExportProjectOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*ExportProjectOutput), nil
}
// ExportProjectRequest returns a request value for making API operation for
// AWS Mobile.
//
// Exports project configuration to a snapshot which can be downloaded and shared.
// Note that mobile app push credentials are encrypted in exported projects,
// so they can only be shared successfully within the same AWS account.
//
// // Example sending a request using the ExportProjectRequest method.
// req := client.ExportProjectRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/mobile-2017-07-01/ExportProject
func (c *Mobile) ExportProjectRequest(input *ExportProjectInput) ExportProjectRequest {
op := &aws.Operation{
Name: opExportProject,
HTTPMethod: "POST",
HTTPPath: "/exports/{projectId}",
}
if input == nil {
input = &ExportProjectInput{}
}
output := &ExportProjectOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return ExportProjectRequest{Request: req, Input: input, Copy: c.ExportProjectRequest}
}
const opListBundles = "ListBundles"
// ListBundlesRequest is a API request type for the ListBundles API operation.
type ListBundlesRequest struct {
*aws.Request
Input *ListBundlesInput
Copy func(*ListBundlesInput) ListBundlesRequest
}
// Send marshals and sends the ListBundles API request.
func (r ListBundlesRequest) Send() (*ListBundlesOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*ListBundlesOutput), nil
}
// ListBundlesRequest returns a request value for making API operation for
// AWS Mobile.
//
// List all available bundles.
//
// // Example sending a request using the ListBundlesRequest method.
// req := client.ListBundlesRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/mobile-2017-07-01/ListBundles
func (c *Mobile) ListBundlesRequest(input *ListBundlesInput) ListBundlesRequest {
op := &aws.Operation{
Name: opListBundles,
HTTPMethod: "GET",
HTTPPath: "/bundles",
Paginator: &aws.Paginator{
InputTokens: []string{"nextToken"},
OutputTokens: []string{"nextToken"},
LimitToken: "maxResults",
TruncationToken: "",
},
}
if input == nil {
input = &ListBundlesInput{}
}
output := &ListBundlesOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return ListBundlesRequest{Request: req, Input: input, Copy: c.ListBundlesRequest}
}
// Paginate pages iterates over the pages of a ListBundlesRequest operation,
// calling the Next method for each page. Using the paginators Next
// method will depict whether or not there are more pages.
//
// Note: This operation can generate multiple requests to a service.
//
// // Example iterating over at most 3 pages of a ListBundles operation.
// req := client.ListBundlesRequest(input)
// p := req.Paginate()
// for p.Next() {
// page := p.CurrentPage()
// }
//
// if err := p.Err(); err != nil {
// return err
// }
//
func (p *ListBundlesRequest) Paginate(opts ...aws.Option) ListBundlesPager {
return ListBundlesPager{
Pager: aws.Pager{
NewRequest: func() (*aws.Request, error) {
var inCpy *ListBundlesInput
if p.Input != nil {
tmp := *p.Input
inCpy = &tmp
}
req := p.Copy(inCpy)
req.ApplyOptions(opts...)
return req.Request, nil
},
},
}
}
// ListBundlesPager is used to paginate the request. This can be done by
// calling Next and CurrentPage.
type ListBundlesPager struct {
aws.Pager
}
func (p *ListBundlesPager) CurrentPage() *ListBundlesOutput {
return p.Pager.CurrentPage().(*ListBundlesOutput)
}
const opListProjects = "ListProjects"
// ListProjectsRequest is a API request type for the ListProjects API operation.
type ListProjectsRequest struct {
*aws.Request
Input *ListProjectsInput
Copy func(*ListProjectsInput) ListProjectsRequest
}
// Send marshals and sends the ListProjects API request.
func (r ListProjectsRequest) Send() (*ListProjectsOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*ListProjectsOutput), nil
}
// ListProjectsRequest returns a request value for making API operation for
// AWS Mobile.
//
// Lists projects in AWS Mobile Hub.
//
// // Example sending a request using the ListProjectsRequest method.
// req := client.ListProjectsRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/mobile-2017-07-01/ListProjects
func (c *Mobile) ListProjectsRequest(input *ListProjectsInput) ListProjectsRequest {
op := &aws.Operation{
Name: opListProjects,
HTTPMethod: "GET",
HTTPPath: "/projects",
Paginator: &aws.Paginator{
InputTokens: []string{"nextToken"},
OutputTokens: []string{"nextToken"},
LimitToken: "maxResults",
TruncationToken: "",
},
}
if input == nil {
input = &ListProjectsInput{}
}
output := &ListProjectsOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return ListProjectsRequest{Request: req, Input: input, Copy: c.ListProjectsRequest}
}
// Paginate pages iterates over the pages of a ListProjectsRequest operation,
// calling the Next method for each page. Using the paginators Next
// method will depict whether or not there are more pages.
//
// Note: This operation can generate multiple requests to a service.
//
// // Example iterating over at most 3 pages of a ListProjects operation.
// req := client.ListProjectsRequest(input)
// p := req.Paginate()
// for p.Next() {
// page := p.CurrentPage()
// }
//
// if err := p.Err(); err != nil {
// return err
// }
//
func (p *ListProjectsRequest) Paginate(opts ...aws.Option) ListProjectsPager {
return ListProjectsPager{
Pager: aws.Pager{
NewRequest: func() (*aws.Request, error) {
var inCpy *ListProjectsInput
if p.Input != nil {
tmp := *p.Input
inCpy = &tmp
}
req := p.Copy(inCpy)
req.ApplyOptions(opts...)
return req.Request, nil
},
},
}
}
// ListProjectsPager is used to paginate the request. This can be done by
// calling Next and CurrentPage.
type ListProjectsPager struct {
aws.Pager
}
func (p *ListProjectsPager) CurrentPage() *ListProjectsOutput {
return p.Pager.CurrentPage().(*ListProjectsOutput)
}
const opUpdateProject = "UpdateProject"
// UpdateProjectRequest is a API request type for the UpdateProject API operation.
type UpdateProjectRequest struct {
*aws.Request
Input *UpdateProjectInput
Copy func(*UpdateProjectInput) UpdateProjectRequest
}
// Send marshals and sends the UpdateProject API request.
func (r UpdateProjectRequest) Send() (*UpdateProjectOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*UpdateProjectOutput), nil
}
// UpdateProjectRequest returns a request value for making API operation for
// AWS Mobile.
//
// Update an existing project.
//
// // Example sending a request using the UpdateProjectRequest method.
// req := client.UpdateProjectRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/mobile-2017-07-01/UpdateProject
func (c *Mobile) UpdateProjectRequest(input *UpdateProjectInput) UpdateProjectRequest {
op := &aws.Operation{
Name: opUpdateProject,
HTTPMethod: "POST",
HTTPPath: "/update",
}
if input == nil {
input = &UpdateProjectInput{}
}
output := &UpdateProjectOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return UpdateProjectRequest{Request: req, Input: input, Copy: c.UpdateProjectRequest}
}
// The details of the bundle.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/mobile-2017-07-01/BundleDetails
type BundleDetails struct {
_ struct{} `type:"structure"`
// Developer desktop or mobile app or website platforms.
AvailablePlatforms []Platform `locationName:"availablePlatforms" type:"list"`
// Unique bundle identifier.
BundleId *string `locationName:"bundleId" type:"string"`
// Description of the download bundle.
Description *string `locationName:"description" type:"string"`
// Icon for the download bundle.
IconUrl *string `locationName:"iconUrl" type:"string"`
// Title of the download bundle.
Title *string `locationName:"title" type:"string"`
// Version of the download bundle.
Version *string `locationName:"version" type:"string"`
}
// String returns the string representation
func (s BundleDetails) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s BundleDetails) GoString() string {
return s.String()
}
// MarshalFields encodes the AWS API shape using the passed in protocol encoder.
func (s BundleDetails) MarshalFields(e protocol.FieldEncoder) error {
if len(s.AvailablePlatforms) > 0 {
v := s.AvailablePlatforms
metadata := protocol.Metadata{}
ls0 := e.List(protocol.BodyTarget, "availablePlatforms", metadata)
ls0.Start()
for _, v1 := range v {
ls0.ListAddValue(protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v1)})
}
ls0.End()
}
if s.BundleId != nil {
v := *s.BundleId
metadata := protocol.Metadata{}
e.SetValue(protocol.BodyTarget, "bundleId", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata)
}
if s.Description != nil {
v := *s.Description
metadata := protocol.Metadata{}
e.SetValue(protocol.BodyTarget, "description", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata)
}
if s.IconUrl != nil {
v := *s.IconUrl
metadata := protocol.Metadata{}
e.SetValue(protocol.BodyTarget, "iconUrl", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata)
}
if s.Title != nil {
v := *s.Title
metadata := protocol.Metadata{}
e.SetValue(protocol.BodyTarget, "title", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata)
}
if s.Version != nil {
v := *s.Version
metadata := protocol.Metadata{}
e.SetValue(protocol.BodyTarget, "version", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata)
}
return nil
}
// Request structure used to request a project be created.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/mobile-2017-07-01/CreateProjectRequest
type CreateProjectInput struct {
_ struct{} `type:"structure" payload:"Contents"`
// ZIP or YAML file which contains configuration settings to be used when creating
// the project. This may be the contents of the file downloaded from the URL
// provided in an export project operation.
Contents []byte `locationName:"contents" type:"blob"`
// Name of the project.
Name *string `location:"querystring" locationName:"name" type:"string"`
// Default region where project resources should be created.
Region *string `location:"querystring" locationName:"region" type:"string"`
// Unique identifier for an exported snapshot of project configuration. This
// snapshot identifier is included in the share URL when a project is exported.
SnapshotId *string `location:"querystring" locationName:"snapshotId" type:"string"`
}
// String returns the string representation
func (s CreateProjectInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateProjectInput) GoString() string {
return s.String()
}
// MarshalFields encodes the AWS API shape using the passed in protocol encoder.
func (s CreateProjectInput) MarshalFields(e protocol.FieldEncoder) error {
if s.Contents != nil {
v := s.Contents
metadata := protocol.Metadata{}
e.SetStream(protocol.PayloadTarget, "contents", protocol.BytesStream(v), metadata)
}
if s.Name != nil {
v := *s.Name
metadata := protocol.Metadata{}
e.SetValue(protocol.QueryTarget, "name", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata)
}
if s.Region != nil {
v := *s.Region
metadata := protocol.Metadata{}
e.SetValue(protocol.QueryTarget, "region", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata)
}
if s.SnapshotId != nil {
v := *s.SnapshotId
metadata := protocol.Metadata{}
e.SetValue(protocol.QueryTarget, "snapshotId", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata)
}
return nil
}
// Result structure used in response to a request to create a project.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/mobile-2017-07-01/CreateProjectResult
type CreateProjectOutput struct {
_ struct{} `type:"structure"`
responseMetadata aws.Response
// Detailed information about the created AWS Mobile Hub project.
Details *ProjectDetails `locationName:"details" type:"structure"`
}
// String returns the string representation
func (s CreateProjectOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateProjectOutput) GoString() string {
return s.String()
}
// SDKResponseMetdata return sthe response metadata for the API.
func (s CreateProjectOutput) SDKResponseMetadata() aws.Response {
return s.responseMetadata
}
// MarshalFields encodes the AWS API shape using the passed in protocol encoder.
func (s CreateProjectOutput) MarshalFields(e protocol.FieldEncoder) error {
if s.Details != nil {
v := s.Details
metadata := protocol.Metadata{}
e.SetFields(protocol.BodyTarget, "details", v, metadata)
}
return nil
}
// Request structure used to request a project be deleted.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/mobile-2017-07-01/DeleteProjectRequest
type DeleteProjectInput struct {
_ struct{} `type:"structure"`
// Unique project identifier.
//
// ProjectId is a required field
ProjectId *string `location:"uri" locationName:"projectId" type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteProjectInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteProjectInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DeleteProjectInput) Validate() error {
invalidParams := aws.ErrInvalidParams{Context: "DeleteProjectInput"}
if s.ProjectId == nil {
invalidParams.Add(aws.NewErrParamRequired("ProjectId"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// MarshalFields encodes the AWS API shape using the passed in protocol encoder.
func (s DeleteProjectInput) MarshalFields(e protocol.FieldEncoder) error {
e.SetValue(protocol.HeaderTarget, "Content-Type", protocol.StringValue("application/x-amz-json-1.1"), protocol.Metadata{})
if s.ProjectId != nil {
v := *s.ProjectId
metadata := protocol.Metadata{}
e.SetValue(protocol.PathTarget, "projectId", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata)
}
return nil
}
// Result structure used in response to request to delete a project.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/mobile-2017-07-01/DeleteProjectResult
type DeleteProjectOutput struct {
_ struct{} `type:"structure"`
responseMetadata aws.Response
// Resources which were deleted.
DeletedResources []Resource `locationName:"deletedResources" type:"list"`
// Resources which were not deleted, due to a risk of losing potentially important
// data or files.
OrphanedResources []Resource `locationName:"orphanedResources" type:"list"`
}
// String returns the string representation
func (s DeleteProjectOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteProjectOutput) GoString() string {
return s.String()
}
// SDKResponseMetdata return sthe response metadata for the API.
func (s DeleteProjectOutput) SDKResponseMetadata() aws.Response {
return s.responseMetadata
}
// MarshalFields encodes the AWS API shape using the passed in protocol encoder.
func (s DeleteProjectOutput) MarshalFields(e protocol.FieldEncoder) error {
if len(s.DeletedResources) > 0 {
v := s.DeletedResources
metadata := protocol.Metadata{}
ls0 := e.List(protocol.BodyTarget, "deletedResources", metadata)
ls0.Start()
for _, v1 := range v {
ls0.ListAddFields(v1)
}
ls0.End()
}
if len(s.OrphanedResources) > 0 {
v := s.OrphanedResources
metadata := protocol.Metadata{}
ls0 := e.List(protocol.BodyTarget, "orphanedResources", metadata)
ls0.Start()
for _, v1 := range v {
ls0.ListAddFields(v1)
}
ls0.End()
}
return nil
}
// Request structure to request the details of a specific bundle.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/mobile-2017-07-01/DescribeBundleRequest
type DescribeBundleInput struct {
_ struct{} `type:"structure"`
// Unique bundle identifier.
//
// BundleId is a required field
BundleId *string `location:"uri" locationName:"bundleId" type:"string" required:"true"`
}
// String returns the string representation
func (s DescribeBundleInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeBundleInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeBundleInput) Validate() error {
invalidParams := aws.ErrInvalidParams{Context: "DescribeBundleInput"}
if s.BundleId == nil {
invalidParams.Add(aws.NewErrParamRequired("BundleId"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// MarshalFields encodes the AWS API shape using the passed in protocol encoder.
func (s DescribeBundleInput) MarshalFields(e protocol.FieldEncoder) error {
e.SetValue(protocol.HeaderTarget, "Content-Type", protocol.StringValue("application/x-amz-json-1.1"), protocol.Metadata{})
if s.BundleId != nil {
v := *s.BundleId
metadata := protocol.Metadata{}
e.SetValue(protocol.PathTarget, "bundleId", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata)
}
return nil
}
// Result structure contains the details of the bundle.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/mobile-2017-07-01/DescribeBundleResult
type DescribeBundleOutput struct {
_ struct{} `type:"structure"`
responseMetadata aws.Response
// The details of the bundle.
Details *BundleDetails `locationName:"details" type:"structure"`
}
// String returns the string representation
func (s DescribeBundleOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeBundleOutput) GoString() string {
return s.String()
}
// SDKResponseMetdata return sthe response metadata for the API.
func (s DescribeBundleOutput) SDKResponseMetadata() aws.Response {
return s.responseMetadata
}
// MarshalFields encodes the AWS API shape using the passed in protocol encoder.
func (s DescribeBundleOutput) MarshalFields(e protocol.FieldEncoder) error {
if s.Details != nil {
v := s.Details
metadata := protocol.Metadata{}
e.SetFields(protocol.BodyTarget, "details", v, metadata)
}
return nil
}
// Request structure used to request details about a project.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/mobile-2017-07-01/DescribeProjectRequest
type DescribeProjectInput struct {
_ struct{} `type:"structure"`
// Unique project identifier.
//
// ProjectId is a required field
ProjectId *string `location:"querystring" locationName:"projectId" type:"string" required:"true"`
// If set to true, causes AWS Mobile Hub to synchronize information from other
// services, e.g., update state of AWS CloudFormation stacks in the AWS Mobile
// Hub project.
SyncFromResources *bool `location:"querystring" locationName:"syncFromResources" type:"boolean"`
}
// String returns the string representation
func (s DescribeProjectInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeProjectInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeProjectInput) Validate() error {
invalidParams := aws.ErrInvalidParams{Context: "DescribeProjectInput"}
if s.ProjectId == nil {
invalidParams.Add(aws.NewErrParamRequired("ProjectId"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// MarshalFields encodes the AWS API shape using the passed in protocol encoder.
func (s DescribeProjectInput) MarshalFields(e protocol.FieldEncoder) error {
e.SetValue(protocol.HeaderTarget, "Content-Type", protocol.StringValue("application/x-amz-json-1.1"), protocol.Metadata{})
if s.ProjectId != nil {
v := *s.ProjectId
metadata := protocol.Metadata{}
e.SetValue(protocol.QueryTarget, "projectId", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata)
}
if s.SyncFromResources != nil {
v := *s.SyncFromResources
metadata := protocol.Metadata{}
e.SetValue(protocol.QueryTarget, "syncFromResources", protocol.BoolValue(v), metadata)
}
return nil
}
// Result structure used for requests of project details.