forked from aws/aws-sdk-go-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.go
8822 lines (7394 loc) · 310 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 cloudformation
import (
"fmt"
"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"
"github.com/aws/aws-sdk-go-v2/private/protocol/query"
)
const opCancelUpdateStack = "CancelUpdateStack"
// CancelUpdateStackRequest is a API request type for the CancelUpdateStack API operation.
type CancelUpdateStackRequest struct {
*aws.Request
Input *CancelUpdateStackInput
Copy func(*CancelUpdateStackInput) CancelUpdateStackRequest
}
// Send marshals and sends the CancelUpdateStack API request.
func (r CancelUpdateStackRequest) Send() (*CancelUpdateStackOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*CancelUpdateStackOutput), nil
}
// CancelUpdateStackRequest returns a request value for making API operation for
// AWS CloudFormation.
//
// Cancels an update on the specified stack. If the call completes successfully,
// the stack rolls back the update and reverts to the previous stack configuration.
//
// You can cancel only stacks that are in the UPDATE_IN_PROGRESS state.
//
// // Example sending a request using the CancelUpdateStackRequest method.
// req := client.CancelUpdateStackRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CancelUpdateStack
func (c *CloudFormation) CancelUpdateStackRequest(input *CancelUpdateStackInput) CancelUpdateStackRequest {
op := &aws.Operation{
Name: opCancelUpdateStack,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CancelUpdateStackInput{}
}
output := &CancelUpdateStackOutput{}
req := c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(query.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output.responseMetadata = aws.Response{Request: req}
return CancelUpdateStackRequest{Request: req, Input: input, Copy: c.CancelUpdateStackRequest}
}
const opContinueUpdateRollback = "ContinueUpdateRollback"
// ContinueUpdateRollbackRequest is a API request type for the ContinueUpdateRollback API operation.
type ContinueUpdateRollbackRequest struct {
*aws.Request
Input *ContinueUpdateRollbackInput
Copy func(*ContinueUpdateRollbackInput) ContinueUpdateRollbackRequest
}
// Send marshals and sends the ContinueUpdateRollback API request.
func (r ContinueUpdateRollbackRequest) Send() (*ContinueUpdateRollbackOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*ContinueUpdateRollbackOutput), nil
}
// ContinueUpdateRollbackRequest returns a request value for making API operation for
// AWS CloudFormation.
//
// For a specified stack that is in the UPDATE_ROLLBACK_FAILED state, continues
// rolling it back to the UPDATE_ROLLBACK_COMPLETE state. Depending on the cause
// of the failure, you can manually fix the error (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/troubleshooting.html#troubleshooting-errors-update-rollback-failed)
// and continue the rollback. By continuing the rollback, you can return your
// stack to a working state (the UPDATE_ROLLBACK_COMPLETE state), and then try
// to update the stack again.
//
// A stack goes into the UPDATE_ROLLBACK_FAILED state when AWS CloudFormation
// cannot roll back all changes after a failed stack update. For example, you
// might have a stack that is rolling back to an old database instance that
// was deleted outside of AWS CloudFormation. Because AWS CloudFormation doesn't
// know the database was deleted, it assumes that the database instance still
// exists and attempts to roll back to it, causing the update rollback to fail.
//
// // Example sending a request using the ContinueUpdateRollbackRequest method.
// req := client.ContinueUpdateRollbackRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ContinueUpdateRollback
func (c *CloudFormation) ContinueUpdateRollbackRequest(input *ContinueUpdateRollbackInput) ContinueUpdateRollbackRequest {
op := &aws.Operation{
Name: opContinueUpdateRollback,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ContinueUpdateRollbackInput{}
}
output := &ContinueUpdateRollbackOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return ContinueUpdateRollbackRequest{Request: req, Input: input, Copy: c.ContinueUpdateRollbackRequest}
}
const opCreateChangeSet = "CreateChangeSet"
// CreateChangeSetRequest is a API request type for the CreateChangeSet API operation.
type CreateChangeSetRequest struct {
*aws.Request
Input *CreateChangeSetInput
Copy func(*CreateChangeSetInput) CreateChangeSetRequest
}
// Send marshals and sends the CreateChangeSet API request.
func (r CreateChangeSetRequest) Send() (*CreateChangeSetOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*CreateChangeSetOutput), nil
}
// CreateChangeSetRequest returns a request value for making API operation for
// AWS CloudFormation.
//
// Creates a list of changes that will be applied to a stack so that you can
// review the changes before executing them. You can create a change set for
// a stack that doesn't exist or an existing stack. If you create a change set
// for a stack that doesn't exist, the change set shows all of the resources
// that AWS CloudFormation will create. If you create a change set for an existing
// stack, AWS CloudFormation compares the stack's information with the information
// that you submit in the change set and lists the differences. Use change sets
// to understand which resources AWS CloudFormation will create or change, and
// how it will change resources in an existing stack, before you create or update
// a stack.
//
// To create a change set for a stack that doesn't exist, for the ChangeSetType
// parameter, specify CREATE. To create a change set for an existing stack,
// specify UPDATE for the ChangeSetType parameter. After the CreateChangeSet
// call successfully completes, AWS CloudFormation starts creating the change
// set. To check the status of the change set or to review it, use the DescribeChangeSet
// action.
//
// When you are satisfied with the changes the change set will make, execute
// the change set by using the ExecuteChangeSet action. AWS CloudFormation doesn't
// make changes until you execute the change set.
//
// // Example sending a request using the CreateChangeSetRequest method.
// req := client.CreateChangeSetRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet
func (c *CloudFormation) CreateChangeSetRequest(input *CreateChangeSetInput) CreateChangeSetRequest {
op := &aws.Operation{
Name: opCreateChangeSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateChangeSetInput{}
}
output := &CreateChangeSetOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return CreateChangeSetRequest{Request: req, Input: input, Copy: c.CreateChangeSetRequest}
}
const opCreateStack = "CreateStack"
// CreateStackRequest is a API request type for the CreateStack API operation.
type CreateStackRequest struct {
*aws.Request
Input *CreateStackInput
Copy func(*CreateStackInput) CreateStackRequest
}
// Send marshals and sends the CreateStack API request.
func (r CreateStackRequest) Send() (*CreateStackOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*CreateStackOutput), nil
}
// CreateStackRequest returns a request value for making API operation for
// AWS CloudFormation.
//
// Creates a stack as specified in the template. After the call completes successfully,
// the stack creation starts. You can check the status of the stack via the
// DescribeStacks API.
//
// // Example sending a request using the CreateStackRequest method.
// req := client.CreateStackRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStack
func (c *CloudFormation) CreateStackRequest(input *CreateStackInput) CreateStackRequest {
op := &aws.Operation{
Name: opCreateStack,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateStackInput{}
}
output := &CreateStackOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return CreateStackRequest{Request: req, Input: input, Copy: c.CreateStackRequest}
}
const opCreateStackInstances = "CreateStackInstances"
// CreateStackInstancesRequest is a API request type for the CreateStackInstances API operation.
type CreateStackInstancesRequest struct {
*aws.Request
Input *CreateStackInstancesInput
Copy func(*CreateStackInstancesInput) CreateStackInstancesRequest
}
// Send marshals and sends the CreateStackInstances API request.
func (r CreateStackInstancesRequest) Send() (*CreateStackInstancesOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*CreateStackInstancesOutput), nil
}
// CreateStackInstancesRequest returns a request value for making API operation for
// AWS CloudFormation.
//
// Creates stack instances for the specified accounts, within the specified
// regions. A stack instance refers to a stack in a specific account and region.
// Accounts and Regions are required parameters—you must specify at least one
// account and one region.
//
// // Example sending a request using the CreateStackInstancesRequest method.
// req := client.CreateStackInstancesRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStackInstances
func (c *CloudFormation) CreateStackInstancesRequest(input *CreateStackInstancesInput) CreateStackInstancesRequest {
op := &aws.Operation{
Name: opCreateStackInstances,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateStackInstancesInput{}
}
output := &CreateStackInstancesOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return CreateStackInstancesRequest{Request: req, Input: input, Copy: c.CreateStackInstancesRequest}
}
const opCreateStackSet = "CreateStackSet"
// CreateStackSetRequest is a API request type for the CreateStackSet API operation.
type CreateStackSetRequest struct {
*aws.Request
Input *CreateStackSetInput
Copy func(*CreateStackSetInput) CreateStackSetRequest
}
// Send marshals and sends the CreateStackSet API request.
func (r CreateStackSetRequest) Send() (*CreateStackSetOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*CreateStackSetOutput), nil
}
// CreateStackSetRequest returns a request value for making API operation for
// AWS CloudFormation.
//
// Creates a stack set.
//
// // Example sending a request using the CreateStackSetRequest method.
// req := client.CreateStackSetRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStackSet
func (c *CloudFormation) CreateStackSetRequest(input *CreateStackSetInput) CreateStackSetRequest {
op := &aws.Operation{
Name: opCreateStackSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateStackSetInput{}
}
output := &CreateStackSetOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return CreateStackSetRequest{Request: req, Input: input, Copy: c.CreateStackSetRequest}
}
const opDeleteChangeSet = "DeleteChangeSet"
// DeleteChangeSetRequest is a API request type for the DeleteChangeSet API operation.
type DeleteChangeSetRequest struct {
*aws.Request
Input *DeleteChangeSetInput
Copy func(*DeleteChangeSetInput) DeleteChangeSetRequest
}
// Send marshals and sends the DeleteChangeSet API request.
func (r DeleteChangeSetRequest) Send() (*DeleteChangeSetOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteChangeSetOutput), nil
}
// DeleteChangeSetRequest returns a request value for making API operation for
// AWS CloudFormation.
//
// Deletes the specified change set. Deleting change sets ensures that no one
// executes the wrong change set.
//
// If the call successfully completes, AWS CloudFormation successfully deleted
// the change set.
//
// // Example sending a request using the DeleteChangeSetRequest method.
// req := client.DeleteChangeSetRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteChangeSet
func (c *CloudFormation) DeleteChangeSetRequest(input *DeleteChangeSetInput) DeleteChangeSetRequest {
op := &aws.Operation{
Name: opDeleteChangeSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteChangeSetInput{}
}
output := &DeleteChangeSetOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DeleteChangeSetRequest{Request: req, Input: input, Copy: c.DeleteChangeSetRequest}
}
const opDeleteStack = "DeleteStack"
// DeleteStackRequest is a API request type for the DeleteStack API operation.
type DeleteStackRequest struct {
*aws.Request
Input *DeleteStackInput
Copy func(*DeleteStackInput) DeleteStackRequest
}
// Send marshals and sends the DeleteStack API request.
func (r DeleteStackRequest) Send() (*DeleteStackOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteStackOutput), nil
}
// DeleteStackRequest returns a request value for making API operation for
// AWS CloudFormation.
//
// Deletes a specified stack. Once the call completes successfully, stack deletion
// starts. Deleted stacks do not show up in the DescribeStacks API if the deletion
// has been completed successfully.
//
// // Example sending a request using the DeleteStackRequest method.
// req := client.DeleteStackRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStack
func (c *CloudFormation) DeleteStackRequest(input *DeleteStackInput) DeleteStackRequest {
op := &aws.Operation{
Name: opDeleteStack,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteStackInput{}
}
output := &DeleteStackOutput{}
req := c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(query.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output.responseMetadata = aws.Response{Request: req}
return DeleteStackRequest{Request: req, Input: input, Copy: c.DeleteStackRequest}
}
const opDeleteStackInstances = "DeleteStackInstances"
// DeleteStackInstancesRequest is a API request type for the DeleteStackInstances API operation.
type DeleteStackInstancesRequest struct {
*aws.Request
Input *DeleteStackInstancesInput
Copy func(*DeleteStackInstancesInput) DeleteStackInstancesRequest
}
// Send marshals and sends the DeleteStackInstances API request.
func (r DeleteStackInstancesRequest) Send() (*DeleteStackInstancesOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteStackInstancesOutput), nil
}
// DeleteStackInstancesRequest returns a request value for making API operation for
// AWS CloudFormation.
//
// Deletes stack instances for the specified accounts, in the specified regions.
//
// // Example sending a request using the DeleteStackInstancesRequest method.
// req := client.DeleteStackInstancesRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStackInstances
func (c *CloudFormation) DeleteStackInstancesRequest(input *DeleteStackInstancesInput) DeleteStackInstancesRequest {
op := &aws.Operation{
Name: opDeleteStackInstances,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteStackInstancesInput{}
}
output := &DeleteStackInstancesOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DeleteStackInstancesRequest{Request: req, Input: input, Copy: c.DeleteStackInstancesRequest}
}
const opDeleteStackSet = "DeleteStackSet"
// DeleteStackSetRequest is a API request type for the DeleteStackSet API operation.
type DeleteStackSetRequest struct {
*aws.Request
Input *DeleteStackSetInput
Copy func(*DeleteStackSetInput) DeleteStackSetRequest
}
// Send marshals and sends the DeleteStackSet API request.
func (r DeleteStackSetRequest) Send() (*DeleteStackSetOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteStackSetOutput), nil
}
// DeleteStackSetRequest returns a request value for making API operation for
// AWS CloudFormation.
//
// Deletes a stack set. Before you can delete a stack set, all of its member
// stack instances must be deleted. For more information about how to do this,
// see DeleteStackInstances.
//
// // Example sending a request using the DeleteStackSetRequest method.
// req := client.DeleteStackSetRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStackSet
func (c *CloudFormation) DeleteStackSetRequest(input *DeleteStackSetInput) DeleteStackSetRequest {
op := &aws.Operation{
Name: opDeleteStackSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteStackSetInput{}
}
output := &DeleteStackSetOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DeleteStackSetRequest{Request: req, Input: input, Copy: c.DeleteStackSetRequest}
}
const opDescribeAccountLimits = "DescribeAccountLimits"
// DescribeAccountLimitsRequest is a API request type for the DescribeAccountLimits API operation.
type DescribeAccountLimitsRequest struct {
*aws.Request
Input *DescribeAccountLimitsInput
Copy func(*DescribeAccountLimitsInput) DescribeAccountLimitsRequest
}
// Send marshals and sends the DescribeAccountLimits API request.
func (r DescribeAccountLimitsRequest) Send() (*DescribeAccountLimitsOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DescribeAccountLimitsOutput), nil
}
// DescribeAccountLimitsRequest returns a request value for making API operation for
// AWS CloudFormation.
//
// Retrieves your account's AWS CloudFormation limits, such as the maximum number
// of stacks that you can create in your account.
//
// // Example sending a request using the DescribeAccountLimitsRequest method.
// req := client.DescribeAccountLimitsRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeAccountLimits
func (c *CloudFormation) DescribeAccountLimitsRequest(input *DescribeAccountLimitsInput) DescribeAccountLimitsRequest {
op := &aws.Operation{
Name: opDescribeAccountLimits,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeAccountLimitsInput{}
}
output := &DescribeAccountLimitsOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DescribeAccountLimitsRequest{Request: req, Input: input, Copy: c.DescribeAccountLimitsRequest}
}
const opDescribeChangeSet = "DescribeChangeSet"
// DescribeChangeSetRequest is a API request type for the DescribeChangeSet API operation.
type DescribeChangeSetRequest struct {
*aws.Request
Input *DescribeChangeSetInput
Copy func(*DescribeChangeSetInput) DescribeChangeSetRequest
}
// Send marshals and sends the DescribeChangeSet API request.
func (r DescribeChangeSetRequest) Send() (*DescribeChangeSetOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DescribeChangeSetOutput), nil
}
// DescribeChangeSetRequest returns a request value for making API operation for
// AWS CloudFormation.
//
// Returns the inputs for the change set and a list of changes that AWS CloudFormation
// will make if you execute the change set. For more information, see Updating
// Stacks Using Change Sets (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-changesets.html)
// in the AWS CloudFormation User Guide.
//
// // Example sending a request using the DescribeChangeSetRequest method.
// req := client.DescribeChangeSetRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeChangeSet
func (c *CloudFormation) DescribeChangeSetRequest(input *DescribeChangeSetInput) DescribeChangeSetRequest {
op := &aws.Operation{
Name: opDescribeChangeSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeChangeSetInput{}
}
output := &DescribeChangeSetOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DescribeChangeSetRequest{Request: req, Input: input, Copy: c.DescribeChangeSetRequest}
}
const opDescribeStackEvents = "DescribeStackEvents"
// DescribeStackEventsRequest is a API request type for the DescribeStackEvents API operation.
type DescribeStackEventsRequest struct {
*aws.Request
Input *DescribeStackEventsInput
Copy func(*DescribeStackEventsInput) DescribeStackEventsRequest
}
// Send marshals and sends the DescribeStackEvents API request.
func (r DescribeStackEventsRequest) Send() (*DescribeStackEventsOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DescribeStackEventsOutput), nil
}
// DescribeStackEventsRequest returns a request value for making API operation for
// AWS CloudFormation.
//
// Returns all stack related events for a specified stack in reverse chronological
// order. For more information about a stack's event history, go to Stacks (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/concept-stack.html)
// in the AWS CloudFormation User Guide.
//
// You can list events for stacks that have failed to create or have been deleted
// by specifying the unique stack identifier (stack ID).
//
// // Example sending a request using the DescribeStackEventsRequest method.
// req := client.DescribeStackEventsRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackEvents
func (c *CloudFormation) DescribeStackEventsRequest(input *DescribeStackEventsInput) DescribeStackEventsRequest {
op := &aws.Operation{
Name: opDescribeStackEvents,
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &aws.Paginator{
InputTokens: []string{"NextToken"},
OutputTokens: []string{"NextToken"},
LimitToken: "",
TruncationToken: "",
},
}
if input == nil {
input = &DescribeStackEventsInput{}
}
output := &DescribeStackEventsOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DescribeStackEventsRequest{Request: req, Input: input, Copy: c.DescribeStackEventsRequest}
}
// Paginate pages iterates over the pages of a DescribeStackEventsRequest 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 DescribeStackEvents operation.
// req := client.DescribeStackEventsRequest(input)
// p := req.Paginate()
// for p.Next() {
// page := p.CurrentPage()
// }
//
// if err := p.Err(); err != nil {
// return err
// }
//
func (p *DescribeStackEventsRequest) Paginate(opts ...aws.Option) DescribeStackEventsPager {
return DescribeStackEventsPager{
Pager: aws.Pager{
NewRequest: func() (*aws.Request, error) {
var inCpy *DescribeStackEventsInput
if p.Input != nil {
tmp := *p.Input
inCpy = &tmp
}
req := p.Copy(inCpy)
req.ApplyOptions(opts...)
return req.Request, nil
},
},
}
}
// DescribeStackEventsPager is used to paginate the request. This can be done by
// calling Next and CurrentPage.
type DescribeStackEventsPager struct {
aws.Pager
}
func (p *DescribeStackEventsPager) CurrentPage() *DescribeStackEventsOutput {
return p.Pager.CurrentPage().(*DescribeStackEventsOutput)
}
const opDescribeStackInstance = "DescribeStackInstance"
// DescribeStackInstanceRequest is a API request type for the DescribeStackInstance API operation.
type DescribeStackInstanceRequest struct {
*aws.Request
Input *DescribeStackInstanceInput
Copy func(*DescribeStackInstanceInput) DescribeStackInstanceRequest
}
// Send marshals and sends the DescribeStackInstance API request.
func (r DescribeStackInstanceRequest) Send() (*DescribeStackInstanceOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DescribeStackInstanceOutput), nil
}
// DescribeStackInstanceRequest returns a request value for making API operation for
// AWS CloudFormation.
//
// Returns the stack instance that's associated with the specified stack set,
// AWS account, and region.
//
// For a list of stack instances that are associated with a specific stack set,
// use ListStackInstances.
//
// // Example sending a request using the DescribeStackInstanceRequest method.
// req := client.DescribeStackInstanceRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackInstance
func (c *CloudFormation) DescribeStackInstanceRequest(input *DescribeStackInstanceInput) DescribeStackInstanceRequest {
op := &aws.Operation{
Name: opDescribeStackInstance,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeStackInstanceInput{}
}
output := &DescribeStackInstanceOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DescribeStackInstanceRequest{Request: req, Input: input, Copy: c.DescribeStackInstanceRequest}
}
const opDescribeStackResource = "DescribeStackResource"
// DescribeStackResourceRequest is a API request type for the DescribeStackResource API operation.
type DescribeStackResourceRequest struct {
*aws.Request
Input *DescribeStackResourceInput
Copy func(*DescribeStackResourceInput) DescribeStackResourceRequest
}
// Send marshals and sends the DescribeStackResource API request.
func (r DescribeStackResourceRequest) Send() (*DescribeStackResourceOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DescribeStackResourceOutput), nil
}
// DescribeStackResourceRequest returns a request value for making API operation for
// AWS CloudFormation.
//
// Returns a description of the specified resource in the specified stack.
//
// For deleted stacks, DescribeStackResource returns resource information for
// up to 90 days after the stack has been deleted.
//
// // Example sending a request using the DescribeStackResourceRequest method.
// req := client.DescribeStackResourceRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackResource
func (c *CloudFormation) DescribeStackResourceRequest(input *DescribeStackResourceInput) DescribeStackResourceRequest {
op := &aws.Operation{
Name: opDescribeStackResource,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeStackResourceInput{}
}
output := &DescribeStackResourceOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DescribeStackResourceRequest{Request: req, Input: input, Copy: c.DescribeStackResourceRequest}
}
const opDescribeStackResources = "DescribeStackResources"
// DescribeStackResourcesRequest is a API request type for the DescribeStackResources API operation.
type DescribeStackResourcesRequest struct {
*aws.Request
Input *DescribeStackResourcesInput
Copy func(*DescribeStackResourcesInput) DescribeStackResourcesRequest
}
// Send marshals and sends the DescribeStackResources API request.
func (r DescribeStackResourcesRequest) Send() (*DescribeStackResourcesOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DescribeStackResourcesOutput), nil
}
// DescribeStackResourcesRequest returns a request value for making API operation for
// AWS CloudFormation.
//
// Returns AWS resource descriptions for running and deleted stacks. If StackName
// is specified, all the associated resources that are part of the stack are
// returned. If PhysicalResourceId is specified, the associated resources of
// the stack that the resource belongs to are returned.
//
// Only the first 100 resources will be returned. If your stack has more resources
// than this, you should use ListStackResources instead.
//
// For deleted stacks, DescribeStackResources returns resource information for
// up to 90 days after the stack has been deleted.
//
// You must specify either StackName or PhysicalResourceId, but not both. In
// addition, you can specify LogicalResourceId to filter the returned result.
// For more information about resources, the LogicalResourceId and PhysicalResourceId,
// go to the AWS CloudFormation User Guide (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/).
//
// A ValidationError is returned if you specify both StackName and PhysicalResourceId
// in the same request.
//
// // Example sending a request using the DescribeStackResourcesRequest method.
// req := client.DescribeStackResourcesRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackResources
func (c *CloudFormation) DescribeStackResourcesRequest(input *DescribeStackResourcesInput) DescribeStackResourcesRequest {
op := &aws.Operation{
Name: opDescribeStackResources,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeStackResourcesInput{}
}
output := &DescribeStackResourcesOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DescribeStackResourcesRequest{Request: req, Input: input, Copy: c.DescribeStackResourcesRequest}
}
const opDescribeStackSet = "DescribeStackSet"
// DescribeStackSetRequest is a API request type for the DescribeStackSet API operation.
type DescribeStackSetRequest struct {
*aws.Request
Input *DescribeStackSetInput
Copy func(*DescribeStackSetInput) DescribeStackSetRequest
}
// Send marshals and sends the DescribeStackSet API request.
func (r DescribeStackSetRequest) Send() (*DescribeStackSetOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DescribeStackSetOutput), nil
}
// DescribeStackSetRequest returns a request value for making API operation for
// AWS CloudFormation.
//
// Returns the description of the specified stack set.
//
// // Example sending a request using the DescribeStackSetRequest method.
// req := client.DescribeStackSetRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackSet
func (c *CloudFormation) DescribeStackSetRequest(input *DescribeStackSetInput) DescribeStackSetRequest {
op := &aws.Operation{
Name: opDescribeStackSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeStackSetInput{}
}
output := &DescribeStackSetOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DescribeStackSetRequest{Request: req, Input: input, Copy: c.DescribeStackSetRequest}
}