forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.go
4164 lines (3407 loc) · 140 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
// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
// Package inspector provides a client for Amazon Inspector.
package inspector
import (
"fmt"
"time"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/private/protocol"
"github.com/aws/aws-sdk-go/private/protocol/jsonrpc"
)
const opAddAttributesToFindings = "AddAttributesToFindings"
// AddAttributesToFindingsRequest generates a request for the AddAttributesToFindings operation.
func (c *Inspector) AddAttributesToFindingsRequest(input *AddAttributesToFindingsInput) (req *request.Request, output *AddAttributesToFindingsOutput) {
op := &request.Operation{
Name: opAddAttributesToFindings,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &AddAttributesToFindingsInput{}
}
req = c.newRequest(op, input, output)
output = &AddAttributesToFindingsOutput{}
req.Data = output
return
}
// Assigns attributes (key and value pairs) to the findings that are specified
// by the ARNs of the findings.
func (c *Inspector) AddAttributesToFindings(input *AddAttributesToFindingsInput) (*AddAttributesToFindingsOutput, error) {
req, out := c.AddAttributesToFindingsRequest(input)
err := req.Send()
return out, err
}
const opCreateAssessmentTarget = "CreateAssessmentTarget"
// CreateAssessmentTargetRequest generates a request for the CreateAssessmentTarget operation.
func (c *Inspector) CreateAssessmentTargetRequest(input *CreateAssessmentTargetInput) (req *request.Request, output *CreateAssessmentTargetOutput) {
op := &request.Operation{
Name: opCreateAssessmentTarget,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateAssessmentTargetInput{}
}
req = c.newRequest(op, input, output)
output = &CreateAssessmentTargetOutput{}
req.Data = output
return
}
// Creates a new assessment target using the ARN of the resource group that
// is generated by CreateResourceGroup. You can create up to 50 assessment targets
// per AWS account. You can run up to 500 concurrent agents per AWS account.
// For more information, see Amazon Inspector Assessment Targets (http://docs.aws.amazon.com/inspector/latest/userguide/inspector_applications.html).
func (c *Inspector) CreateAssessmentTarget(input *CreateAssessmentTargetInput) (*CreateAssessmentTargetOutput, error) {
req, out := c.CreateAssessmentTargetRequest(input)
err := req.Send()
return out, err
}
const opCreateAssessmentTemplate = "CreateAssessmentTemplate"
// CreateAssessmentTemplateRequest generates a request for the CreateAssessmentTemplate operation.
func (c *Inspector) CreateAssessmentTemplateRequest(input *CreateAssessmentTemplateInput) (req *request.Request, output *CreateAssessmentTemplateOutput) {
op := &request.Operation{
Name: opCreateAssessmentTemplate,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateAssessmentTemplateInput{}
}
req = c.newRequest(op, input, output)
output = &CreateAssessmentTemplateOutput{}
req.Data = output
return
}
// Creates an assessment template for the assessment target that is specified
// by the ARN of the assessment target.
func (c *Inspector) CreateAssessmentTemplate(input *CreateAssessmentTemplateInput) (*CreateAssessmentTemplateOutput, error) {
req, out := c.CreateAssessmentTemplateRequest(input)
err := req.Send()
return out, err
}
const opCreateResourceGroup = "CreateResourceGroup"
// CreateResourceGroupRequest generates a request for the CreateResourceGroup operation.
func (c *Inspector) CreateResourceGroupRequest(input *CreateResourceGroupInput) (req *request.Request, output *CreateResourceGroupOutput) {
op := &request.Operation{
Name: opCreateResourceGroup,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateResourceGroupInput{}
}
req = c.newRequest(op, input, output)
output = &CreateResourceGroupOutput{}
req.Data = output
return
}
// Creates a resource group using the specified set of tags (key and value pairs)
// that are used to select the EC2 instances to be included in an Amazon Inspector
// assessment target. The created resource group is then used to create an Amazon
// Inspector assessment target. For more information, see CreateAssessmentTarget.
func (c *Inspector) CreateResourceGroup(input *CreateResourceGroupInput) (*CreateResourceGroupOutput, error) {
req, out := c.CreateResourceGroupRequest(input)
err := req.Send()
return out, err
}
const opDeleteAssessmentRun = "DeleteAssessmentRun"
// DeleteAssessmentRunRequest generates a request for the DeleteAssessmentRun operation.
func (c *Inspector) DeleteAssessmentRunRequest(input *DeleteAssessmentRunInput) (req *request.Request, output *DeleteAssessmentRunOutput) {
op := &request.Operation{
Name: opDeleteAssessmentRun,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteAssessmentRunInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &DeleteAssessmentRunOutput{}
req.Data = output
return
}
// Deletes the assessment run that is specified by the ARN of the assessment
// run.
func (c *Inspector) DeleteAssessmentRun(input *DeleteAssessmentRunInput) (*DeleteAssessmentRunOutput, error) {
req, out := c.DeleteAssessmentRunRequest(input)
err := req.Send()
return out, err
}
const opDeleteAssessmentTarget = "DeleteAssessmentTarget"
// DeleteAssessmentTargetRequest generates a request for the DeleteAssessmentTarget operation.
func (c *Inspector) DeleteAssessmentTargetRequest(input *DeleteAssessmentTargetInput) (req *request.Request, output *DeleteAssessmentTargetOutput) {
op := &request.Operation{
Name: opDeleteAssessmentTarget,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteAssessmentTargetInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &DeleteAssessmentTargetOutput{}
req.Data = output
return
}
// Deletes the assessment target that is specified by the ARN of the assessment
// target.
func (c *Inspector) DeleteAssessmentTarget(input *DeleteAssessmentTargetInput) (*DeleteAssessmentTargetOutput, error) {
req, out := c.DeleteAssessmentTargetRequest(input)
err := req.Send()
return out, err
}
const opDeleteAssessmentTemplate = "DeleteAssessmentTemplate"
// DeleteAssessmentTemplateRequest generates a request for the DeleteAssessmentTemplate operation.
func (c *Inspector) DeleteAssessmentTemplateRequest(input *DeleteAssessmentTemplateInput) (req *request.Request, output *DeleteAssessmentTemplateOutput) {
op := &request.Operation{
Name: opDeleteAssessmentTemplate,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteAssessmentTemplateInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &DeleteAssessmentTemplateOutput{}
req.Data = output
return
}
// Deletes the assessment template that is specified by the ARN of the assessment
// template.
func (c *Inspector) DeleteAssessmentTemplate(input *DeleteAssessmentTemplateInput) (*DeleteAssessmentTemplateOutput, error) {
req, out := c.DeleteAssessmentTemplateRequest(input)
err := req.Send()
return out, err
}
const opDescribeAssessmentRuns = "DescribeAssessmentRuns"
// DescribeAssessmentRunsRequest generates a request for the DescribeAssessmentRuns operation.
func (c *Inspector) DescribeAssessmentRunsRequest(input *DescribeAssessmentRunsInput) (req *request.Request, output *DescribeAssessmentRunsOutput) {
op := &request.Operation{
Name: opDescribeAssessmentRuns,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeAssessmentRunsInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeAssessmentRunsOutput{}
req.Data = output
return
}
// Describes the assessment runs that are specified by the ARNs of the assessment
// runs.
func (c *Inspector) DescribeAssessmentRuns(input *DescribeAssessmentRunsInput) (*DescribeAssessmentRunsOutput, error) {
req, out := c.DescribeAssessmentRunsRequest(input)
err := req.Send()
return out, err
}
const opDescribeAssessmentTargets = "DescribeAssessmentTargets"
// DescribeAssessmentTargetsRequest generates a request for the DescribeAssessmentTargets operation.
func (c *Inspector) DescribeAssessmentTargetsRequest(input *DescribeAssessmentTargetsInput) (req *request.Request, output *DescribeAssessmentTargetsOutput) {
op := &request.Operation{
Name: opDescribeAssessmentTargets,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeAssessmentTargetsInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeAssessmentTargetsOutput{}
req.Data = output
return
}
// Describes the assessment targets that are specified by the ARNs of the assessment
// targets.
func (c *Inspector) DescribeAssessmentTargets(input *DescribeAssessmentTargetsInput) (*DescribeAssessmentTargetsOutput, error) {
req, out := c.DescribeAssessmentTargetsRequest(input)
err := req.Send()
return out, err
}
const opDescribeAssessmentTemplates = "DescribeAssessmentTemplates"
// DescribeAssessmentTemplatesRequest generates a request for the DescribeAssessmentTemplates operation.
func (c *Inspector) DescribeAssessmentTemplatesRequest(input *DescribeAssessmentTemplatesInput) (req *request.Request, output *DescribeAssessmentTemplatesOutput) {
op := &request.Operation{
Name: opDescribeAssessmentTemplates,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeAssessmentTemplatesInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeAssessmentTemplatesOutput{}
req.Data = output
return
}
// Describes the assessment templates that are specified by the ARNs of the
// assessment templates.
func (c *Inspector) DescribeAssessmentTemplates(input *DescribeAssessmentTemplatesInput) (*DescribeAssessmentTemplatesOutput, error) {
req, out := c.DescribeAssessmentTemplatesRequest(input)
err := req.Send()
return out, err
}
const opDescribeCrossAccountAccessRole = "DescribeCrossAccountAccessRole"
// DescribeCrossAccountAccessRoleRequest generates a request for the DescribeCrossAccountAccessRole operation.
func (c *Inspector) DescribeCrossAccountAccessRoleRequest(input *DescribeCrossAccountAccessRoleInput) (req *request.Request, output *DescribeCrossAccountAccessRoleOutput) {
op := &request.Operation{
Name: opDescribeCrossAccountAccessRole,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeCrossAccountAccessRoleInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeCrossAccountAccessRoleOutput{}
req.Data = output
return
}
// Describes the IAM role that enables Amazon Inspector to access your AWS account.
func (c *Inspector) DescribeCrossAccountAccessRole(input *DescribeCrossAccountAccessRoleInput) (*DescribeCrossAccountAccessRoleOutput, error) {
req, out := c.DescribeCrossAccountAccessRoleRequest(input)
err := req.Send()
return out, err
}
const opDescribeFindings = "DescribeFindings"
// DescribeFindingsRequest generates a request for the DescribeFindings operation.
func (c *Inspector) DescribeFindingsRequest(input *DescribeFindingsInput) (req *request.Request, output *DescribeFindingsOutput) {
op := &request.Operation{
Name: opDescribeFindings,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeFindingsInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeFindingsOutput{}
req.Data = output
return
}
// Describes the findings that are specified by the ARNs of the findings.
func (c *Inspector) DescribeFindings(input *DescribeFindingsInput) (*DescribeFindingsOutput, error) {
req, out := c.DescribeFindingsRequest(input)
err := req.Send()
return out, err
}
const opDescribeResourceGroups = "DescribeResourceGroups"
// DescribeResourceGroupsRequest generates a request for the DescribeResourceGroups operation.
func (c *Inspector) DescribeResourceGroupsRequest(input *DescribeResourceGroupsInput) (req *request.Request, output *DescribeResourceGroupsOutput) {
op := &request.Operation{
Name: opDescribeResourceGroups,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeResourceGroupsInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeResourceGroupsOutput{}
req.Data = output
return
}
// Describes the resource groups that are specified by the ARNs of the resource
// groups.
func (c *Inspector) DescribeResourceGroups(input *DescribeResourceGroupsInput) (*DescribeResourceGroupsOutput, error) {
req, out := c.DescribeResourceGroupsRequest(input)
err := req.Send()
return out, err
}
const opDescribeRulesPackages = "DescribeRulesPackages"
// DescribeRulesPackagesRequest generates a request for the DescribeRulesPackages operation.
func (c *Inspector) DescribeRulesPackagesRequest(input *DescribeRulesPackagesInput) (req *request.Request, output *DescribeRulesPackagesOutput) {
op := &request.Operation{
Name: opDescribeRulesPackages,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeRulesPackagesInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeRulesPackagesOutput{}
req.Data = output
return
}
// Describes the rules packages that are specified by the ARNs of the rules
// packages.
func (c *Inspector) DescribeRulesPackages(input *DescribeRulesPackagesInput) (*DescribeRulesPackagesOutput, error) {
req, out := c.DescribeRulesPackagesRequest(input)
err := req.Send()
return out, err
}
const opGetTelemetryMetadata = "GetTelemetryMetadata"
// GetTelemetryMetadataRequest generates a request for the GetTelemetryMetadata operation.
func (c *Inspector) GetTelemetryMetadataRequest(input *GetTelemetryMetadataInput) (req *request.Request, output *GetTelemetryMetadataOutput) {
op := &request.Operation{
Name: opGetTelemetryMetadata,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetTelemetryMetadataInput{}
}
req = c.newRequest(op, input, output)
output = &GetTelemetryMetadataOutput{}
req.Data = output
return
}
// Information about the data that is collected for the specified assessment
// run.
func (c *Inspector) GetTelemetryMetadata(input *GetTelemetryMetadataInput) (*GetTelemetryMetadataOutput, error) {
req, out := c.GetTelemetryMetadataRequest(input)
err := req.Send()
return out, err
}
const opListAssessmentRunAgents = "ListAssessmentRunAgents"
// ListAssessmentRunAgentsRequest generates a request for the ListAssessmentRunAgents operation.
func (c *Inspector) ListAssessmentRunAgentsRequest(input *ListAssessmentRunAgentsInput) (req *request.Request, output *ListAssessmentRunAgentsOutput) {
op := &request.Operation{
Name: opListAssessmentRunAgents,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListAssessmentRunAgentsInput{}
}
req = c.newRequest(op, input, output)
output = &ListAssessmentRunAgentsOutput{}
req.Data = output
return
}
// Lists the agents of the assessment runs that are specified by the ARNs of
// the assessment runs.
func (c *Inspector) ListAssessmentRunAgents(input *ListAssessmentRunAgentsInput) (*ListAssessmentRunAgentsOutput, error) {
req, out := c.ListAssessmentRunAgentsRequest(input)
err := req.Send()
return out, err
}
const opListAssessmentRuns = "ListAssessmentRuns"
// ListAssessmentRunsRequest generates a request for the ListAssessmentRuns operation.
func (c *Inspector) ListAssessmentRunsRequest(input *ListAssessmentRunsInput) (req *request.Request, output *ListAssessmentRunsOutput) {
op := &request.Operation{
Name: opListAssessmentRuns,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListAssessmentRunsInput{}
}
req = c.newRequest(op, input, output)
output = &ListAssessmentRunsOutput{}
req.Data = output
return
}
// Lists the assessment runs that correspond to the assessment templates that
// are specified by the ARNs of the assessment templates.
func (c *Inspector) ListAssessmentRuns(input *ListAssessmentRunsInput) (*ListAssessmentRunsOutput, error) {
req, out := c.ListAssessmentRunsRequest(input)
err := req.Send()
return out, err
}
const opListAssessmentTargets = "ListAssessmentTargets"
// ListAssessmentTargetsRequest generates a request for the ListAssessmentTargets operation.
func (c *Inspector) ListAssessmentTargetsRequest(input *ListAssessmentTargetsInput) (req *request.Request, output *ListAssessmentTargetsOutput) {
op := &request.Operation{
Name: opListAssessmentTargets,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListAssessmentTargetsInput{}
}
req = c.newRequest(op, input, output)
output = &ListAssessmentTargetsOutput{}
req.Data = output
return
}
// Lists the ARNs of the assessment targets within this AWS account. For more
// information about assessment targets, see Amazon Inspector Assessment Targets
// (http://docs.aws.amazon.com/inspector/latest/userguide/inspector_applications.html).
func (c *Inspector) ListAssessmentTargets(input *ListAssessmentTargetsInput) (*ListAssessmentTargetsOutput, error) {
req, out := c.ListAssessmentTargetsRequest(input)
err := req.Send()
return out, err
}
const opListAssessmentTemplates = "ListAssessmentTemplates"
// ListAssessmentTemplatesRequest generates a request for the ListAssessmentTemplates operation.
func (c *Inspector) ListAssessmentTemplatesRequest(input *ListAssessmentTemplatesInput) (req *request.Request, output *ListAssessmentTemplatesOutput) {
op := &request.Operation{
Name: opListAssessmentTemplates,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListAssessmentTemplatesInput{}
}
req = c.newRequest(op, input, output)
output = &ListAssessmentTemplatesOutput{}
req.Data = output
return
}
// Lists the assessment templates that correspond to the assessment targets
// that are specified by the ARNs of the assessment targets.
func (c *Inspector) ListAssessmentTemplates(input *ListAssessmentTemplatesInput) (*ListAssessmentTemplatesOutput, error) {
req, out := c.ListAssessmentTemplatesRequest(input)
err := req.Send()
return out, err
}
const opListEventSubscriptions = "ListEventSubscriptions"
// ListEventSubscriptionsRequest generates a request for the ListEventSubscriptions operation.
func (c *Inspector) ListEventSubscriptionsRequest(input *ListEventSubscriptionsInput) (req *request.Request, output *ListEventSubscriptionsOutput) {
op := &request.Operation{
Name: opListEventSubscriptions,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListEventSubscriptionsInput{}
}
req = c.newRequest(op, input, output)
output = &ListEventSubscriptionsOutput{}
req.Data = output
return
}
// Lists all the event subscriptions for the assessment template that is specified
// by the ARN of the assessment template. For more information, see SubscribeToEvent
// and UnsubscribeFromEvent.
func (c *Inspector) ListEventSubscriptions(input *ListEventSubscriptionsInput) (*ListEventSubscriptionsOutput, error) {
req, out := c.ListEventSubscriptionsRequest(input)
err := req.Send()
return out, err
}
const opListFindings = "ListFindings"
// ListFindingsRequest generates a request for the ListFindings operation.
func (c *Inspector) ListFindingsRequest(input *ListFindingsInput) (req *request.Request, output *ListFindingsOutput) {
op := &request.Operation{
Name: opListFindings,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListFindingsInput{}
}
req = c.newRequest(op, input, output)
output = &ListFindingsOutput{}
req.Data = output
return
}
// Lists findings that are generated by the assessment runs that are specified
// by the ARNs of the assessment runs.
func (c *Inspector) ListFindings(input *ListFindingsInput) (*ListFindingsOutput, error) {
req, out := c.ListFindingsRequest(input)
err := req.Send()
return out, err
}
const opListRulesPackages = "ListRulesPackages"
// ListRulesPackagesRequest generates a request for the ListRulesPackages operation.
func (c *Inspector) ListRulesPackagesRequest(input *ListRulesPackagesInput) (req *request.Request, output *ListRulesPackagesOutput) {
op := &request.Operation{
Name: opListRulesPackages,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListRulesPackagesInput{}
}
req = c.newRequest(op, input, output)
output = &ListRulesPackagesOutput{}
req.Data = output
return
}
// Lists all available Amazon Inspector rules packages.
func (c *Inspector) ListRulesPackages(input *ListRulesPackagesInput) (*ListRulesPackagesOutput, error) {
req, out := c.ListRulesPackagesRequest(input)
err := req.Send()
return out, err
}
const opListTagsForResource = "ListTagsForResource"
// ListTagsForResourceRequest generates a request for the ListTagsForResource operation.
func (c *Inspector) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req *request.Request, output *ListTagsForResourceOutput) {
op := &request.Operation{
Name: opListTagsForResource,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListTagsForResourceInput{}
}
req = c.newRequest(op, input, output)
output = &ListTagsForResourceOutput{}
req.Data = output
return
}
// Lists all tags associated with an assessment template.
func (c *Inspector) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error) {
req, out := c.ListTagsForResourceRequest(input)
err := req.Send()
return out, err
}
const opPreviewAgents = "PreviewAgents"
// PreviewAgentsRequest generates a request for the PreviewAgents operation.
func (c *Inspector) PreviewAgentsRequest(input *PreviewAgentsInput) (req *request.Request, output *PreviewAgentsOutput) {
op := &request.Operation{
Name: opPreviewAgents,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &PreviewAgentsInput{}
}
req = c.newRequest(op, input, output)
output = &PreviewAgentsOutput{}
req.Data = output
return
}
// Previews the agents installed on the EC2 instances that are part of the specified
// assessment target.
func (c *Inspector) PreviewAgents(input *PreviewAgentsInput) (*PreviewAgentsOutput, error) {
req, out := c.PreviewAgentsRequest(input)
err := req.Send()
return out, err
}
const opRegisterCrossAccountAccessRole = "RegisterCrossAccountAccessRole"
// RegisterCrossAccountAccessRoleRequest generates a request for the RegisterCrossAccountAccessRole operation.
func (c *Inspector) RegisterCrossAccountAccessRoleRequest(input *RegisterCrossAccountAccessRoleInput) (req *request.Request, output *RegisterCrossAccountAccessRoleOutput) {
op := &request.Operation{
Name: opRegisterCrossAccountAccessRole,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &RegisterCrossAccountAccessRoleInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &RegisterCrossAccountAccessRoleOutput{}
req.Data = output
return
}
// Registers the IAM role that Amazon Inspector uses to list your EC2 instances
// at the start of the assessment run or when you call the PreviewAgents action.
func (c *Inspector) RegisterCrossAccountAccessRole(input *RegisterCrossAccountAccessRoleInput) (*RegisterCrossAccountAccessRoleOutput, error) {
req, out := c.RegisterCrossAccountAccessRoleRequest(input)
err := req.Send()
return out, err
}
const opRemoveAttributesFromFindings = "RemoveAttributesFromFindings"
// RemoveAttributesFromFindingsRequest generates a request for the RemoveAttributesFromFindings operation.
func (c *Inspector) RemoveAttributesFromFindingsRequest(input *RemoveAttributesFromFindingsInput) (req *request.Request, output *RemoveAttributesFromFindingsOutput) {
op := &request.Operation{
Name: opRemoveAttributesFromFindings,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &RemoveAttributesFromFindingsInput{}
}
req = c.newRequest(op, input, output)
output = &RemoveAttributesFromFindingsOutput{}
req.Data = output
return
}
// Removes entire attributes (key and value pairs) from the findings that are
// specified by the ARNs of the findings where an attribute with the specified
// key exists.
func (c *Inspector) RemoveAttributesFromFindings(input *RemoveAttributesFromFindingsInput) (*RemoveAttributesFromFindingsOutput, error) {
req, out := c.RemoveAttributesFromFindingsRequest(input)
err := req.Send()
return out, err
}
const opSetTagsForResource = "SetTagsForResource"
// SetTagsForResourceRequest generates a request for the SetTagsForResource operation.
func (c *Inspector) SetTagsForResourceRequest(input *SetTagsForResourceInput) (req *request.Request, output *SetTagsForResourceOutput) {
op := &request.Operation{
Name: opSetTagsForResource,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &SetTagsForResourceInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &SetTagsForResourceOutput{}
req.Data = output
return
}
// Sets tags (key and value pairs) to the assessment template that is specified
// by the ARN of the assessment template.
func (c *Inspector) SetTagsForResource(input *SetTagsForResourceInput) (*SetTagsForResourceOutput, error) {
req, out := c.SetTagsForResourceRequest(input)
err := req.Send()
return out, err
}
const opStartAssessmentRun = "StartAssessmentRun"
// StartAssessmentRunRequest generates a request for the StartAssessmentRun operation.
func (c *Inspector) StartAssessmentRunRequest(input *StartAssessmentRunInput) (req *request.Request, output *StartAssessmentRunOutput) {
op := &request.Operation{
Name: opStartAssessmentRun,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &StartAssessmentRunInput{}
}
req = c.newRequest(op, input, output)
output = &StartAssessmentRunOutput{}
req.Data = output
return
}
// Starts the assessment run specified by the ARN of the assessment template.
// For this API to function properly, you must not exceed the limit of running
// up to 500 concurrent agents per AWS account.
func (c *Inspector) StartAssessmentRun(input *StartAssessmentRunInput) (*StartAssessmentRunOutput, error) {
req, out := c.StartAssessmentRunRequest(input)
err := req.Send()
return out, err
}
const opStopAssessmentRun = "StopAssessmentRun"
// StopAssessmentRunRequest generates a request for the StopAssessmentRun operation.
func (c *Inspector) StopAssessmentRunRequest(input *StopAssessmentRunInput) (req *request.Request, output *StopAssessmentRunOutput) {
op := &request.Operation{
Name: opStopAssessmentRun,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &StopAssessmentRunInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &StopAssessmentRunOutput{}
req.Data = output
return
}
// Stops the assessment run that is specified by the ARN of the assessment run.
func (c *Inspector) StopAssessmentRun(input *StopAssessmentRunInput) (*StopAssessmentRunOutput, error) {
req, out := c.StopAssessmentRunRequest(input)
err := req.Send()
return out, err
}
const opSubscribeToEvent = "SubscribeToEvent"
// SubscribeToEventRequest generates a request for the SubscribeToEvent operation.
func (c *Inspector) SubscribeToEventRequest(input *SubscribeToEventInput) (req *request.Request, output *SubscribeToEventOutput) {
op := &request.Operation{
Name: opSubscribeToEvent,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &SubscribeToEventInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &SubscribeToEventOutput{}
req.Data = output
return
}
// Enables the process of sending Amazon Simple Notification Service (SNS) notifications
// about a specified event to a specified SNS topic.
func (c *Inspector) SubscribeToEvent(input *SubscribeToEventInput) (*SubscribeToEventOutput, error) {
req, out := c.SubscribeToEventRequest(input)
err := req.Send()
return out, err
}
const opUnsubscribeFromEvent = "UnsubscribeFromEvent"
// UnsubscribeFromEventRequest generates a request for the UnsubscribeFromEvent operation.
func (c *Inspector) UnsubscribeFromEventRequest(input *UnsubscribeFromEventInput) (req *request.Request, output *UnsubscribeFromEventOutput) {
op := &request.Operation{
Name: opUnsubscribeFromEvent,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UnsubscribeFromEventInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &UnsubscribeFromEventOutput{}
req.Data = output
return
}
// Disables the process of sending Amazon Simple Notification Service (SNS)
// notifications about a specified event to a specified SNS topic.
func (c *Inspector) UnsubscribeFromEvent(input *UnsubscribeFromEventInput) (*UnsubscribeFromEventOutput, error) {
req, out := c.UnsubscribeFromEventRequest(input)
err := req.Send()
return out, err
}
const opUpdateAssessmentTarget = "UpdateAssessmentTarget"
// UpdateAssessmentTargetRequest generates a request for the UpdateAssessmentTarget operation.
func (c *Inspector) UpdateAssessmentTargetRequest(input *UpdateAssessmentTargetInput) (req *request.Request, output *UpdateAssessmentTargetOutput) {
op := &request.Operation{
Name: opUpdateAssessmentTarget,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateAssessmentTargetInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &UpdateAssessmentTargetOutput{}
req.Data = output
return
}
// Updates the assessment target that is specified by the ARN of the assessment
// target.
func (c *Inspector) UpdateAssessmentTarget(input *UpdateAssessmentTargetInput) (*UpdateAssessmentTargetOutput, error) {
req, out := c.UpdateAssessmentTargetRequest(input)
err := req.Send()
return out, err
}
type AddAttributesToFindingsInput struct {
_ struct{} `type:"structure"`
// The array of attributes that you want to assign to specified findings.
Attributes []*Attribute `locationName:"attributes" type:"list" required:"true"`
// The ARNs that specify the findings that you want to assign attributes to.
FindingArns []*string `locationName:"findingArns" min:"1" type:"list" required:"true"`
}
// String returns the string representation
func (s AddAttributesToFindingsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AddAttributesToFindingsInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *AddAttributesToFindingsInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "AddAttributesToFindingsInput"}
if s.Attributes == nil {
invalidParams.Add(request.NewErrParamRequired("Attributes"))
}
if s.FindingArns == nil {
invalidParams.Add(request.NewErrParamRequired("FindingArns"))
}
if s.FindingArns != nil && len(s.FindingArns) < 1 {
invalidParams.Add(request.NewErrParamMinLen("FindingArns", 1))
}
if s.Attributes != nil {
for i, v := range s.Attributes {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Attributes", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
type AddAttributesToFindingsOutput struct {
_ struct{} `type:"structure"`
// Attribute details that cannot be described. An error code is provided for
// each failed item.
FailedItems map[string]*FailedItemDetails `locationName:"failedItems" type:"map" required:"true"`
}
// String returns the string representation
func (s AddAttributesToFindingsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AddAttributesToFindingsOutput) GoString() string {
return s.String()
}
// Used in the exception error that is thrown if you start an assessment run