forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.go
2861 lines (2327 loc) · 101 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 configservice provides a client for AWS Config.
package configservice
import (
"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 opDeleteConfigRule = "DeleteConfigRule"
// DeleteConfigRuleRequest generates a request for the DeleteConfigRule operation.
func (c *ConfigService) DeleteConfigRuleRequest(input *DeleteConfigRuleInput) (req *request.Request, output *DeleteConfigRuleOutput) {
op := &request.Operation{
Name: opDeleteConfigRule,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteConfigRuleInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &DeleteConfigRuleOutput{}
req.Data = output
return
}
// Deletes the specified AWS Config rule and all of its evaluation results.
//
// AWS Config sets the state of a rule to DELETING until the deletion is complete.
// You cannot update a rule while it is in this state. If you make a PutConfigRule
// or DeleteConfigRule request for the rule, you will receive a ResourceInUseException.
//
// You can check the state of a rule by using the DescribeConfigRules request.
func (c *ConfigService) DeleteConfigRule(input *DeleteConfigRuleInput) (*DeleteConfigRuleOutput, error) {
req, out := c.DeleteConfigRuleRequest(input)
err := req.Send()
return out, err
}
const opDeleteDeliveryChannel = "DeleteDeliveryChannel"
// DeleteDeliveryChannelRequest generates a request for the DeleteDeliveryChannel operation.
func (c *ConfigService) DeleteDeliveryChannelRequest(input *DeleteDeliveryChannelInput) (req *request.Request, output *DeleteDeliveryChannelOutput) {
op := &request.Operation{
Name: opDeleteDeliveryChannel,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteDeliveryChannelInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &DeleteDeliveryChannelOutput{}
req.Data = output
return
}
// Deletes the specified delivery channel.
//
// The delivery channel cannot be deleted if it is the only delivery channel
// and the configuration recorder is still running. To delete the delivery channel,
// stop the running configuration recorder using the StopConfigurationRecorder
// action.
func (c *ConfigService) DeleteDeliveryChannel(input *DeleteDeliveryChannelInput) (*DeleteDeliveryChannelOutput, error) {
req, out := c.DeleteDeliveryChannelRequest(input)
err := req.Send()
return out, err
}
const opDeliverConfigSnapshot = "DeliverConfigSnapshot"
// DeliverConfigSnapshotRequest generates a request for the DeliverConfigSnapshot operation.
func (c *ConfigService) DeliverConfigSnapshotRequest(input *DeliverConfigSnapshotInput) (req *request.Request, output *DeliverConfigSnapshotOutput) {
op := &request.Operation{
Name: opDeliverConfigSnapshot,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeliverConfigSnapshotInput{}
}
req = c.newRequest(op, input, output)
output = &DeliverConfigSnapshotOutput{}
req.Data = output
return
}
// Schedules delivery of a configuration snapshot to the Amazon S3 bucket in
// the specified delivery channel. After the delivery has started, AWS Config
// sends following notifications using an Amazon SNS topic that you have specified.
//
// Notification of starting the delivery. Notification of delivery completed,
// if the delivery was successfully completed. Notification of delivery failure,
// if the delivery failed to complete.
func (c *ConfigService) DeliverConfigSnapshot(input *DeliverConfigSnapshotInput) (*DeliverConfigSnapshotOutput, error) {
req, out := c.DeliverConfigSnapshotRequest(input)
err := req.Send()
return out, err
}
const opDescribeComplianceByConfigRule = "DescribeComplianceByConfigRule"
// DescribeComplianceByConfigRuleRequest generates a request for the DescribeComplianceByConfigRule operation.
func (c *ConfigService) DescribeComplianceByConfigRuleRequest(input *DescribeComplianceByConfigRuleInput) (req *request.Request, output *DescribeComplianceByConfigRuleOutput) {
op := &request.Operation{
Name: opDescribeComplianceByConfigRule,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeComplianceByConfigRuleInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeComplianceByConfigRuleOutput{}
req.Data = output
return
}
// Indicates whether the specified AWS Config rules are compliant. If a rule
// is noncompliant, this action returns the number of AWS resources that do
// not comply with the rule.
//
// A rule is compliant if all of the evaluated resources comply with it, and
// it is noncompliant if any of these resources do not comply.
//
// If AWS Config has no current evaluation results for the rule, it returns
// INSUFFICIENT_DATA. This result might indicate one of the following conditions:
// AWS Config has never invoked an evaluation for the rule. To check whether
// it has, use the DescribeConfigRuleEvaluationStatus action to get the LastSuccessfulInvocationTime
// and LastFailedInvocationTime. The rule's AWS Lambda function is failing to
// send evaluation results to AWS Config. Verify that the role that you assigned
// to your configuration recorder includes the config:PutEvaluations permission.
// If the rule is a customer managed rule, verify that the AWS Lambda execution
// role includes the config:PutEvaluations permission. The rule's AWS Lambda
// function has returned NOT_APPLICABLE for all evaluation results. This can
// occur if the resources were deleted or removed from the rule's scope.
func (c *ConfigService) DescribeComplianceByConfigRule(input *DescribeComplianceByConfigRuleInput) (*DescribeComplianceByConfigRuleOutput, error) {
req, out := c.DescribeComplianceByConfigRuleRequest(input)
err := req.Send()
return out, err
}
const opDescribeComplianceByResource = "DescribeComplianceByResource"
// DescribeComplianceByResourceRequest generates a request for the DescribeComplianceByResource operation.
func (c *ConfigService) DescribeComplianceByResourceRequest(input *DescribeComplianceByResourceInput) (req *request.Request, output *DescribeComplianceByResourceOutput) {
op := &request.Operation{
Name: opDescribeComplianceByResource,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeComplianceByResourceInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeComplianceByResourceOutput{}
req.Data = output
return
}
// Indicates whether the specified AWS resources are compliant. If a resource
// is noncompliant, this action returns the number of AWS Config rules that
// the resource does not comply with.
//
// A resource is compliant if it complies with all the AWS Config rules that
// evaluate it. It is noncompliant if it does not comply with one or more of
// these rules.
//
// If AWS Config has no current evaluation results for the resource, it returns
// INSUFFICIENT_DATA. This result might indicate one of the following conditions
// about the rules that evaluate the resource: AWS Config has never invoked
// an evaluation for the rule. To check whether it has, use the DescribeConfigRuleEvaluationStatus
// action to get the LastSuccessfulInvocationTime and LastFailedInvocationTime.
// The rule's AWS Lambda function is failing to send evaluation results to AWS
// Config. Verify that the role that you assigned to your configuration recorder
// includes the config:PutEvaluations permission. If the rule is a customer
// managed rule, verify that the AWS Lambda execution role includes the config:PutEvaluations
// permission. The rule's AWS Lambda function has returned NOT_APPLICABLE for
// all evaluation results. This can occur if the resources were deleted or removed
// from the rule's scope.
func (c *ConfigService) DescribeComplianceByResource(input *DescribeComplianceByResourceInput) (*DescribeComplianceByResourceOutput, error) {
req, out := c.DescribeComplianceByResourceRequest(input)
err := req.Send()
return out, err
}
const opDescribeConfigRuleEvaluationStatus = "DescribeConfigRuleEvaluationStatus"
// DescribeConfigRuleEvaluationStatusRequest generates a request for the DescribeConfigRuleEvaluationStatus operation.
func (c *ConfigService) DescribeConfigRuleEvaluationStatusRequest(input *DescribeConfigRuleEvaluationStatusInput) (req *request.Request, output *DescribeConfigRuleEvaluationStatusOutput) {
op := &request.Operation{
Name: opDescribeConfigRuleEvaluationStatus,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeConfigRuleEvaluationStatusInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeConfigRuleEvaluationStatusOutput{}
req.Data = output
return
}
// Returns status information for each of your AWS managed Config rules. The
// status includes information such as the last time AWS Config invoked the
// rule, the last time AWS Config failed to invoke the rule, and the related
// error for the last failure.
func (c *ConfigService) DescribeConfigRuleEvaluationStatus(input *DescribeConfigRuleEvaluationStatusInput) (*DescribeConfigRuleEvaluationStatusOutput, error) {
req, out := c.DescribeConfigRuleEvaluationStatusRequest(input)
err := req.Send()
return out, err
}
const opDescribeConfigRules = "DescribeConfigRules"
// DescribeConfigRulesRequest generates a request for the DescribeConfigRules operation.
func (c *ConfigService) DescribeConfigRulesRequest(input *DescribeConfigRulesInput) (req *request.Request, output *DescribeConfigRulesOutput) {
op := &request.Operation{
Name: opDescribeConfigRules,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeConfigRulesInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeConfigRulesOutput{}
req.Data = output
return
}
// Returns details about your AWS Config rules.
func (c *ConfigService) DescribeConfigRules(input *DescribeConfigRulesInput) (*DescribeConfigRulesOutput, error) {
req, out := c.DescribeConfigRulesRequest(input)
err := req.Send()
return out, err
}
const opDescribeConfigurationRecorderStatus = "DescribeConfigurationRecorderStatus"
// DescribeConfigurationRecorderStatusRequest generates a request for the DescribeConfigurationRecorderStatus operation.
func (c *ConfigService) DescribeConfigurationRecorderStatusRequest(input *DescribeConfigurationRecorderStatusInput) (req *request.Request, output *DescribeConfigurationRecorderStatusOutput) {
op := &request.Operation{
Name: opDescribeConfigurationRecorderStatus,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeConfigurationRecorderStatusInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeConfigurationRecorderStatusOutput{}
req.Data = output
return
}
// Returns the current status of the specified configuration recorder. If a
// configuration recorder is not specified, this action returns the status of
// all configuration recorder associated with the account.
//
// Currently, you can specify only one configuration recorder per account.
func (c *ConfigService) DescribeConfigurationRecorderStatus(input *DescribeConfigurationRecorderStatusInput) (*DescribeConfigurationRecorderStatusOutput, error) {
req, out := c.DescribeConfigurationRecorderStatusRequest(input)
err := req.Send()
return out, err
}
const opDescribeConfigurationRecorders = "DescribeConfigurationRecorders"
// DescribeConfigurationRecordersRequest generates a request for the DescribeConfigurationRecorders operation.
func (c *ConfigService) DescribeConfigurationRecordersRequest(input *DescribeConfigurationRecordersInput) (req *request.Request, output *DescribeConfigurationRecordersOutput) {
op := &request.Operation{
Name: opDescribeConfigurationRecorders,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeConfigurationRecordersInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeConfigurationRecordersOutput{}
req.Data = output
return
}
// Returns the name of one or more specified configuration recorders. If the
// recorder name is not specified, this action returns the names of all the
// configuration recorders associated with the account.
//
// Currently, you can specify only one configuration recorder per account.
func (c *ConfigService) DescribeConfigurationRecorders(input *DescribeConfigurationRecordersInput) (*DescribeConfigurationRecordersOutput, error) {
req, out := c.DescribeConfigurationRecordersRequest(input)
err := req.Send()
return out, err
}
const opDescribeDeliveryChannelStatus = "DescribeDeliveryChannelStatus"
// DescribeDeliveryChannelStatusRequest generates a request for the DescribeDeliveryChannelStatus operation.
func (c *ConfigService) DescribeDeliveryChannelStatusRequest(input *DescribeDeliveryChannelStatusInput) (req *request.Request, output *DescribeDeliveryChannelStatusOutput) {
op := &request.Operation{
Name: opDescribeDeliveryChannelStatus,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeDeliveryChannelStatusInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeDeliveryChannelStatusOutput{}
req.Data = output
return
}
// Returns the current status of the specified delivery channel. If a delivery
// channel is not specified, this action returns the current status of all delivery
// channels associated with the account.
//
// Currently, you can specify only one delivery channel per account.
func (c *ConfigService) DescribeDeliveryChannelStatus(input *DescribeDeliveryChannelStatusInput) (*DescribeDeliveryChannelStatusOutput, error) {
req, out := c.DescribeDeliveryChannelStatusRequest(input)
err := req.Send()
return out, err
}
const opDescribeDeliveryChannels = "DescribeDeliveryChannels"
// DescribeDeliveryChannelsRequest generates a request for the DescribeDeliveryChannels operation.
func (c *ConfigService) DescribeDeliveryChannelsRequest(input *DescribeDeliveryChannelsInput) (req *request.Request, output *DescribeDeliveryChannelsOutput) {
op := &request.Operation{
Name: opDescribeDeliveryChannels,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeDeliveryChannelsInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeDeliveryChannelsOutput{}
req.Data = output
return
}
// Returns details about the specified delivery channel. If a delivery channel
// is not specified, this action returns the details of all delivery channels
// associated with the account.
//
// Currently, you can specify only one delivery channel per account.
func (c *ConfigService) DescribeDeliveryChannels(input *DescribeDeliveryChannelsInput) (*DescribeDeliveryChannelsOutput, error) {
req, out := c.DescribeDeliveryChannelsRequest(input)
err := req.Send()
return out, err
}
const opGetComplianceDetailsByConfigRule = "GetComplianceDetailsByConfigRule"
// GetComplianceDetailsByConfigRuleRequest generates a request for the GetComplianceDetailsByConfigRule operation.
func (c *ConfigService) GetComplianceDetailsByConfigRuleRequest(input *GetComplianceDetailsByConfigRuleInput) (req *request.Request, output *GetComplianceDetailsByConfigRuleOutput) {
op := &request.Operation{
Name: opGetComplianceDetailsByConfigRule,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetComplianceDetailsByConfigRuleInput{}
}
req = c.newRequest(op, input, output)
output = &GetComplianceDetailsByConfigRuleOutput{}
req.Data = output
return
}
// Returns the evaluation results for the specified AWS Config rule. The results
// indicate which AWS resources were evaluated by the rule, when each resource
// was last evaluated, and whether each resource complies with the rule.
func (c *ConfigService) GetComplianceDetailsByConfigRule(input *GetComplianceDetailsByConfigRuleInput) (*GetComplianceDetailsByConfigRuleOutput, error) {
req, out := c.GetComplianceDetailsByConfigRuleRequest(input)
err := req.Send()
return out, err
}
const opGetComplianceDetailsByResource = "GetComplianceDetailsByResource"
// GetComplianceDetailsByResourceRequest generates a request for the GetComplianceDetailsByResource operation.
func (c *ConfigService) GetComplianceDetailsByResourceRequest(input *GetComplianceDetailsByResourceInput) (req *request.Request, output *GetComplianceDetailsByResourceOutput) {
op := &request.Operation{
Name: opGetComplianceDetailsByResource,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetComplianceDetailsByResourceInput{}
}
req = c.newRequest(op, input, output)
output = &GetComplianceDetailsByResourceOutput{}
req.Data = output
return
}
// Returns the evaluation results for the specified AWS resource. The results
// indicate which AWS Config rules were used to evaluate the resource, when
// each rule was last used, and whether the resource complies with each rule.
func (c *ConfigService) GetComplianceDetailsByResource(input *GetComplianceDetailsByResourceInput) (*GetComplianceDetailsByResourceOutput, error) {
req, out := c.GetComplianceDetailsByResourceRequest(input)
err := req.Send()
return out, err
}
const opGetComplianceSummaryByConfigRule = "GetComplianceSummaryByConfigRule"
// GetComplianceSummaryByConfigRuleRequest generates a request for the GetComplianceSummaryByConfigRule operation.
func (c *ConfigService) GetComplianceSummaryByConfigRuleRequest(input *GetComplianceSummaryByConfigRuleInput) (req *request.Request, output *GetComplianceSummaryByConfigRuleOutput) {
op := &request.Operation{
Name: opGetComplianceSummaryByConfigRule,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetComplianceSummaryByConfigRuleInput{}
}
req = c.newRequest(op, input, output)
output = &GetComplianceSummaryByConfigRuleOutput{}
req.Data = output
return
}
// Returns the number of AWS Config rules that are compliant and noncompliant,
// up to a maximum of 25 for each.
func (c *ConfigService) GetComplianceSummaryByConfigRule(input *GetComplianceSummaryByConfigRuleInput) (*GetComplianceSummaryByConfigRuleOutput, error) {
req, out := c.GetComplianceSummaryByConfigRuleRequest(input)
err := req.Send()
return out, err
}
const opGetComplianceSummaryByResourceType = "GetComplianceSummaryByResourceType"
// GetComplianceSummaryByResourceTypeRequest generates a request for the GetComplianceSummaryByResourceType operation.
func (c *ConfigService) GetComplianceSummaryByResourceTypeRequest(input *GetComplianceSummaryByResourceTypeInput) (req *request.Request, output *GetComplianceSummaryByResourceTypeOutput) {
op := &request.Operation{
Name: opGetComplianceSummaryByResourceType,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetComplianceSummaryByResourceTypeInput{}
}
req = c.newRequest(op, input, output)
output = &GetComplianceSummaryByResourceTypeOutput{}
req.Data = output
return
}
// Returns the number of resources that are compliant and the number that are
// noncompliant. You can specify one or more resource types to get these numbers
// for each resource type. The maximum number returned is 100.
func (c *ConfigService) GetComplianceSummaryByResourceType(input *GetComplianceSummaryByResourceTypeInput) (*GetComplianceSummaryByResourceTypeOutput, error) {
req, out := c.GetComplianceSummaryByResourceTypeRequest(input)
err := req.Send()
return out, err
}
const opGetResourceConfigHistory = "GetResourceConfigHistory"
// GetResourceConfigHistoryRequest generates a request for the GetResourceConfigHistory operation.
func (c *ConfigService) GetResourceConfigHistoryRequest(input *GetResourceConfigHistoryInput) (req *request.Request, output *GetResourceConfigHistoryOutput) {
op := &request.Operation{
Name: opGetResourceConfigHistory,
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &request.Paginator{
InputTokens: []string{"nextToken"},
OutputTokens: []string{"nextToken"},
LimitToken: "limit",
TruncationToken: "",
},
}
if input == nil {
input = &GetResourceConfigHistoryInput{}
}
req = c.newRequest(op, input, output)
output = &GetResourceConfigHistoryOutput{}
req.Data = output
return
}
// Returns a list of configuration items for the specified resource. The list
// contains details about each state of the resource during the specified time
// interval.
//
// The response is paginated, and by default, AWS Config returns a limit of
// 10 configuration items per page. You can customize this number with the limit
// parameter. The response includes a nextToken string, and to get the next
// page of results, run the request again and enter this string for the nextToken
// parameter.
//
// Each call to the API is limited to span a duration of seven days. It is
// likely that the number of records returned is smaller than the specified
// limit. In such cases, you can make another call, using the nextToken.
func (c *ConfigService) GetResourceConfigHistory(input *GetResourceConfigHistoryInput) (*GetResourceConfigHistoryOutput, error) {
req, out := c.GetResourceConfigHistoryRequest(input)
err := req.Send()
return out, err
}
func (c *ConfigService) GetResourceConfigHistoryPages(input *GetResourceConfigHistoryInput, fn func(p *GetResourceConfigHistoryOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.GetResourceConfigHistoryRequest(input)
page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator"))
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*GetResourceConfigHistoryOutput), lastPage)
})
}
const opListDiscoveredResources = "ListDiscoveredResources"
// ListDiscoveredResourcesRequest generates a request for the ListDiscoveredResources operation.
func (c *ConfigService) ListDiscoveredResourcesRequest(input *ListDiscoveredResourcesInput) (req *request.Request, output *ListDiscoveredResourcesOutput) {
op := &request.Operation{
Name: opListDiscoveredResources,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListDiscoveredResourcesInput{}
}
req = c.newRequest(op, input, output)
output = &ListDiscoveredResourcesOutput{}
req.Data = output
return
}
// Accepts a resource type and returns a list of resource identifiers for the
// resources of that type. A resource identifier includes the resource type,
// ID, and (if available) the custom resource name. The results consist of resources
// that AWS Config has discovered, including those that AWS Config is not currently
// recording. You can narrow the results to include only resources that have
// specific resource IDs or a resource name.
//
// You can specify either resource IDs or a resource name but not both in the
// same request. The response is paginated, and by default AWS Config lists
// 100 resource identifiers on each page. You can customize this number with
// the limit parameter. The response includes a nextToken string, and to get
// the next page of results, run the request again and enter this string for
// the nextToken parameter.
func (c *ConfigService) ListDiscoveredResources(input *ListDiscoveredResourcesInput) (*ListDiscoveredResourcesOutput, error) {
req, out := c.ListDiscoveredResourcesRequest(input)
err := req.Send()
return out, err
}
const opPutConfigRule = "PutConfigRule"
// PutConfigRuleRequest generates a request for the PutConfigRule operation.
func (c *ConfigService) PutConfigRuleRequest(input *PutConfigRuleInput) (req *request.Request, output *PutConfigRuleOutput) {
op := &request.Operation{
Name: opPutConfigRule,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &PutConfigRuleInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &PutConfigRuleOutput{}
req.Data = output
return
}
// Adds or updates an AWS Config rule for evaluating whether your AWS resources
// comply with your desired configurations.
//
// You can use this action for customer managed Config rules and AWS managed
// Config rules. A customer managed Config rule is a custom rule that you develop
// and maintain. An AWS managed Config rule is a customizable, predefined rule
// that is provided by AWS Config.
//
// If you are adding a new customer managed Config rule, you must first create
// the AWS Lambda function that the rule invokes to evaluate your resources.
// When you use the PutConfigRule action to add the rule to AWS Config, you
// must specify the Amazon Resource Name (ARN) that AWS Lambda assigns to the
// function. Specify the ARN for the SourceIdentifier key. This key is part
// of the Source object, which is part of the ConfigRule object.
//
// If you are adding a new AWS managed Config rule, specify the rule's identifier
// for the SourceIdentifier key. To reference AWS managed Config rule identifiers,
// see Using AWS Managed Config Rules (http://docs.aws.amazon.com/config/latest/developerguide/evaluate-config_use-managed-rules.html).
//
// For any new rule that you add, specify the ConfigRuleName in the ConfigRule
// object. Do not specify the ConfigRuleArn or the ConfigRuleId. These values
// are generated by AWS Config for new rules.
//
// If you are updating a rule that you have added previously, specify the rule's
// ConfigRuleName, ConfigRuleId, or ConfigRuleArn in the ConfigRule data type
// that you use in this request.
//
// The maximum number of rules that AWS Config supports is 25.
//
// For more information about developing and using AWS Config rules, see Evaluating
// AWS Resource Configurations with AWS Config (http://docs.aws.amazon.com/config/latest/developerguide/evaluate-config.html)
// in the AWS Config Developer Guide.
func (c *ConfigService) PutConfigRule(input *PutConfigRuleInput) (*PutConfigRuleOutput, error) {
req, out := c.PutConfigRuleRequest(input)
err := req.Send()
return out, err
}
const opPutConfigurationRecorder = "PutConfigurationRecorder"
// PutConfigurationRecorderRequest generates a request for the PutConfigurationRecorder operation.
func (c *ConfigService) PutConfigurationRecorderRequest(input *PutConfigurationRecorderInput) (req *request.Request, output *PutConfigurationRecorderOutput) {
op := &request.Operation{
Name: opPutConfigurationRecorder,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &PutConfigurationRecorderInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &PutConfigurationRecorderOutput{}
req.Data = output
return
}
// Creates a new configuration recorder to record the selected resource configurations.
//
// You can use this action to change the role roleARN and/or the recordingGroup
// of an existing recorder. To change the role, call the action on the existing
// configuration recorder and specify a role.
//
// Currently, you can specify only one configuration recorder per account.
//
// If ConfigurationRecorder does not have the recordingGroup parameter specified,
// the default is to record all supported resource types.
func (c *ConfigService) PutConfigurationRecorder(input *PutConfigurationRecorderInput) (*PutConfigurationRecorderOutput, error) {
req, out := c.PutConfigurationRecorderRequest(input)
err := req.Send()
return out, err
}
const opPutDeliveryChannel = "PutDeliveryChannel"
// PutDeliveryChannelRequest generates a request for the PutDeliveryChannel operation.
func (c *ConfigService) PutDeliveryChannelRequest(input *PutDeliveryChannelInput) (req *request.Request, output *PutDeliveryChannelOutput) {
op := &request.Operation{
Name: opPutDeliveryChannel,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &PutDeliveryChannelInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &PutDeliveryChannelOutput{}
req.Data = output
return
}
// Creates a new delivery channel object to deliver the configuration information
// to an Amazon S3 bucket, and to an Amazon SNS topic.
//
// You can use this action to change the Amazon S3 bucket or an Amazon SNS
// topic of the existing delivery channel. To change the Amazon S3 bucket or
// an Amazon SNS topic, call this action and specify the changed values for
// the S3 bucket and the SNS topic. If you specify a different value for either
// the S3 bucket or the SNS topic, this action will keep the existing value
// for the parameter that is not changed.
//
// Currently, you can specify only one delivery channel per account.
func (c *ConfigService) PutDeliveryChannel(input *PutDeliveryChannelInput) (*PutDeliveryChannelOutput, error) {
req, out := c.PutDeliveryChannelRequest(input)
err := req.Send()
return out, err
}
const opPutEvaluations = "PutEvaluations"
// PutEvaluationsRequest generates a request for the PutEvaluations operation.
func (c *ConfigService) PutEvaluationsRequest(input *PutEvaluationsInput) (req *request.Request, output *PutEvaluationsOutput) {
op := &request.Operation{
Name: opPutEvaluations,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &PutEvaluationsInput{}
}
req = c.newRequest(op, input, output)
output = &PutEvaluationsOutput{}
req.Data = output
return
}
// Used by an AWS Lambda function to deliver evaluation results to AWS Config.
// This action is required in every AWS Lambda function that is invoked by an
// AWS Config rule.
func (c *ConfigService) PutEvaluations(input *PutEvaluationsInput) (*PutEvaluationsOutput, error) {
req, out := c.PutEvaluationsRequest(input)
err := req.Send()
return out, err
}
const opStartConfigurationRecorder = "StartConfigurationRecorder"
// StartConfigurationRecorderRequest generates a request for the StartConfigurationRecorder operation.
func (c *ConfigService) StartConfigurationRecorderRequest(input *StartConfigurationRecorderInput) (req *request.Request, output *StartConfigurationRecorderOutput) {
op := &request.Operation{
Name: opStartConfigurationRecorder,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &StartConfigurationRecorderInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &StartConfigurationRecorderOutput{}
req.Data = output
return
}
// Starts recording configurations of the AWS resources you have selected to
// record in your AWS account.
//
// You must have created at least one delivery channel to successfully start
// the configuration recorder.
func (c *ConfigService) StartConfigurationRecorder(input *StartConfigurationRecorderInput) (*StartConfigurationRecorderOutput, error) {
req, out := c.StartConfigurationRecorderRequest(input)
err := req.Send()
return out, err
}
const opStopConfigurationRecorder = "StopConfigurationRecorder"
// StopConfigurationRecorderRequest generates a request for the StopConfigurationRecorder operation.
func (c *ConfigService) StopConfigurationRecorderRequest(input *StopConfigurationRecorderInput) (req *request.Request, output *StopConfigurationRecorderOutput) {
op := &request.Operation{
Name: opStopConfigurationRecorder,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &StopConfigurationRecorderInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &StopConfigurationRecorderOutput{}
req.Data = output
return
}
// Stops recording configurations of the AWS resources you have selected to
// record in your AWS account.
func (c *ConfigService) StopConfigurationRecorder(input *StopConfigurationRecorderInput) (*StopConfigurationRecorderOutput, error) {
req, out := c.StopConfigurationRecorderRequest(input)
err := req.Send()
return out, err
}
// Indicates whether an AWS resource or AWS Config rule is compliant and provides
// the number of contributors that affect the compliance.
type Compliance struct {
_ struct{} `type:"structure"`
// The number of AWS resources or AWS Config rules that cause a result of NON_COMPLIANT,
// up to a maximum number.
ComplianceContributorCount *ComplianceContributorCount `type:"structure"`
// Indicates whether an AWS resource or AWS Config rule is compliant.
//
// A resource is compliant if it complies with all of the AWS Config rules
// that evaluate it, and it is noncompliant if it does not comply with one or
// more of these rules.
//
// A rule is compliant if all of the resources that the rule evaluates comply
// with it, and it is noncompliant if any of these resources do not comply.
//
// AWS Config returns the INSUFFICIENT_DATA value when no evaluation results
// are available for the AWS resource or Config rule.
//
// For the Compliance data type, AWS Config supports only COMPLIANT, NON_COMPLIANT,
// and INSUFFICIENT_DATA values. AWS Config does not support the NOT_APPLICABLE
// value for the Compliance data type.
ComplianceType *string `type:"string" enum:"ComplianceType"`
}
// String returns the string representation
func (s Compliance) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Compliance) GoString() string {
return s.String()
}
// Indicates whether an AWS Config rule is compliant. A rule is compliant if
// all of the resources that the rule evaluated comply with it, and it is noncompliant
// if any of these resources do not comply.
type ComplianceByConfigRule struct {
_ struct{} `type:"structure"`
// Indicates whether the AWS Config rule is compliant.
Compliance *Compliance `type:"structure"`
// The name of the AWS Config rule.
ConfigRuleName *string `min:"1" type:"string"`
}
// String returns the string representation
func (s ComplianceByConfigRule) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ComplianceByConfigRule) GoString() string {
return s.String()
}
// Indicates whether an AWS resource that is evaluated according to one or more
// AWS Config rules is compliant. A resource is compliant if it complies with
// all of the rules that evaluate it, and it is noncompliant if it does not
// comply with one or more of these rules.
type ComplianceByResource struct {
_ struct{} `type:"structure"`
// Indicates whether the AWS resource complies with all of the AWS Config rules
// that evaluated it.
Compliance *Compliance `type:"structure"`
// The ID of the AWS resource that was evaluated.
ResourceId *string `min:"1" type:"string"`
// The type of the AWS resource that was evaluated.
ResourceType *string `min:"1" type:"string"`
}
// String returns the string representation
func (s ComplianceByResource) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ComplianceByResource) GoString() string {
return s.String()
}
// The number of AWS resources or AWS Config rules responsible for the current
// compliance of the item, up to a maximum number.
type ComplianceContributorCount struct {
_ struct{} `type:"structure"`
// Indicates whether the maximum count is reached.
CapExceeded *bool `type:"boolean"`
// The number of AWS resources or AWS Config rules responsible for the current
// compliance of the item.
CappedCount *int64 `type:"integer"`
}
// String returns the string representation
func (s ComplianceContributorCount) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ComplianceContributorCount) GoString() string {
return s.String()
}
// The number of AWS Config rules or AWS resources that are compliant and noncompliant,
// up to a maximum.
type ComplianceSummary struct {
_ struct{} `type:"structure"`
// The time that AWS Config created the compliance summary.
ComplianceSummaryTimestamp *time.Time `type:"timestamp" timestampFormat:"unix"`
// The number of AWS Config rules or AWS resources that are compliant, up to
// a maximum of 25 for rules and 100 for resources.
CompliantResourceCount *ComplianceContributorCount `type:"structure"`
// The number of AWS Config rules or AWS resources that are noncompliant, up
// to a maximum of 25 for rules and 100 for resources.
NonCompliantResourceCount *ComplianceContributorCount `type:"structure"`
}
// String returns the string representation
func (s ComplianceSummary) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ComplianceSummary) GoString() string {
return s.String()
}
// The number of AWS resources of a specific type that are compliant or noncompliant,
// up to a maximum of 100 for each compliance.
type ComplianceSummaryByResourceType struct {
_ struct{} `type:"structure"`
// The number of AWS resources that are compliant or noncompliant, up to a maximum
// of 100 for each compliance.
ComplianceSummary *ComplianceSummary `type:"structure"`
// The type of AWS resource.
ResourceType *string `min:"1" type:"string"`
}
// String returns the string representation
func (s ComplianceSummaryByResourceType) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ComplianceSummaryByResourceType) GoString() string {
return s.String()
}
// A list that contains the status of the delivery of either the snapshot or
// the configuration history to the specified Amazon S3 bucket.
type ConfigExportDeliveryInfo struct {
_ struct{} `type:"structure"`
// The time of the last attempted delivery.
LastAttemptTime *time.Time `locationName:"lastAttemptTime" type:"timestamp" timestampFormat:"unix"`
// The error code from the last attempted delivery.
LastErrorCode *string `locationName:"lastErrorCode" type:"string"`
// The error message from the last attempted delivery.
LastErrorMessage *string `locationName:"lastErrorMessage" type:"string"`
// Status of the last attempted delivery.
LastStatus *string `locationName:"lastStatus" type:"string" enum:"DeliveryStatus"`