forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.go
2206 lines (1774 loc) · 72.1 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 cloudformation provides a client for AWS CloudFormation.
package cloudformation
import (
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awsutil"
)
const opCancelUpdateStack = "CancelUpdateStack"
// CancelUpdateStackRequest generates a request for the CancelUpdateStack operation.
func (c *CloudFormation) CancelUpdateStackRequest(input *CancelUpdateStackInput) (req *aws.Request, output *CancelUpdateStackOutput) {
op := &aws.Operation{
Name: opCancelUpdateStack,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CancelUpdateStackInput{}
}
req = c.newRequest(op, input, output)
output = &CancelUpdateStackOutput{}
req.Data = output
return
}
// Cancels an update on the specified stack. If the call completes successfully,
// the stack will roll back the update and revert to the previous stack configuration.
//
// Only stacks that are in the UPDATE_IN_PROGRESS state can be canceled.
func (c *CloudFormation) CancelUpdateStack(input *CancelUpdateStackInput) (*CancelUpdateStackOutput, error) {
req, out := c.CancelUpdateStackRequest(input)
err := req.Send()
return out, err
}
const opCreateStack = "CreateStack"
// CreateStackRequest generates a request for the CreateStack operation.
func (c *CloudFormation) CreateStackRequest(input *CreateStackInput) (req *aws.Request, output *CreateStackOutput) {
op := &aws.Operation{
Name: opCreateStack,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateStackInput{}
}
req = c.newRequest(op, input, output)
output = &CreateStackOutput{}
req.Data = output
return
}
// 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.
func (c *CloudFormation) CreateStack(input *CreateStackInput) (*CreateStackOutput, error) {
req, out := c.CreateStackRequest(input)
err := req.Send()
return out, err
}
const opDeleteStack = "DeleteStack"
// DeleteStackRequest generates a request for the DeleteStack operation.
func (c *CloudFormation) DeleteStackRequest(input *DeleteStackInput) (req *aws.Request, output *DeleteStackOutput) {
op := &aws.Operation{
Name: opDeleteStack,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteStackInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteStackOutput{}
req.Data = output
return
}
// 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.
func (c *CloudFormation) DeleteStack(input *DeleteStackInput) (*DeleteStackOutput, error) {
req, out := c.DeleteStackRequest(input)
err := req.Send()
return out, err
}
const opDescribeStackEvents = "DescribeStackEvents"
// DescribeStackEventsRequest generates a request for the DescribeStackEvents operation.
func (c *CloudFormation) DescribeStackEventsRequest(input *DescribeStackEventsInput) (req *aws.Request, output *DescribeStackEventsOutput) {
op := &aws.Operation{
Name: opDescribeStackEvents,
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &aws.Paginator{
InputTokens: []string{"NextToken"},
OutputTokens: []string{"NextToken"},
LimitToken: "",
TruncationToken: "",
},
}
if input == nil {
input = &DescribeStackEventsInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeStackEventsOutput{}
req.Data = output
return
}
// Returns all stack related events for a specified stack. 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).
func (c *CloudFormation) DescribeStackEvents(input *DescribeStackEventsInput) (*DescribeStackEventsOutput, error) {
req, out := c.DescribeStackEventsRequest(input)
err := req.Send()
return out, err
}
func (c *CloudFormation) DescribeStackEventsPages(input *DescribeStackEventsInput, fn func(p *DescribeStackEventsOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.DescribeStackEventsRequest(input)
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*DescribeStackEventsOutput), lastPage)
})
}
const opDescribeStackResource = "DescribeStackResource"
// DescribeStackResourceRequest generates a request for the DescribeStackResource operation.
func (c *CloudFormation) DescribeStackResourceRequest(input *DescribeStackResourceInput) (req *aws.Request, output *DescribeStackResourceOutput) {
op := &aws.Operation{
Name: opDescribeStackResource,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeStackResourceInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeStackResourceOutput{}
req.Data = output
return
}
// 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.
func (c *CloudFormation) DescribeStackResource(input *DescribeStackResourceInput) (*DescribeStackResourceOutput, error) {
req, out := c.DescribeStackResourceRequest(input)
err := req.Send()
return out, err
}
const opDescribeStackResources = "DescribeStackResources"
// DescribeStackResourcesRequest generates a request for the DescribeStackResources operation.
func (c *CloudFormation) DescribeStackResourcesRequest(input *DescribeStackResourcesInput) (req *aws.Request, output *DescribeStackResourcesOutput) {
op := &aws.Operation{
Name: opDescribeStackResources,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeStackResourcesInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeStackResourcesOutput{}
req.Data = output
return
}
// 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.
func (c *CloudFormation) DescribeStackResources(input *DescribeStackResourcesInput) (*DescribeStackResourcesOutput, error) {
req, out := c.DescribeStackResourcesRequest(input)
err := req.Send()
return out, err
}
const opDescribeStacks = "DescribeStacks"
// DescribeStacksRequest generates a request for the DescribeStacks operation.
func (c *CloudFormation) DescribeStacksRequest(input *DescribeStacksInput) (req *aws.Request, output *DescribeStacksOutput) {
op := &aws.Operation{
Name: opDescribeStacks,
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &aws.Paginator{
InputTokens: []string{"NextToken"},
OutputTokens: []string{"NextToken"},
LimitToken: "",
TruncationToken: "",
},
}
if input == nil {
input = &DescribeStacksInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeStacksOutput{}
req.Data = output
return
}
// Returns the description for the specified stack; if no stack name was specified,
// then it returns the description for all the stacks created.
func (c *CloudFormation) DescribeStacks(input *DescribeStacksInput) (*DescribeStacksOutput, error) {
req, out := c.DescribeStacksRequest(input)
err := req.Send()
return out, err
}
func (c *CloudFormation) DescribeStacksPages(input *DescribeStacksInput, fn func(p *DescribeStacksOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.DescribeStacksRequest(input)
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*DescribeStacksOutput), lastPage)
})
}
const opEstimateTemplateCost = "EstimateTemplateCost"
// EstimateTemplateCostRequest generates a request for the EstimateTemplateCost operation.
func (c *CloudFormation) EstimateTemplateCostRequest(input *EstimateTemplateCostInput) (req *aws.Request, output *EstimateTemplateCostOutput) {
op := &aws.Operation{
Name: opEstimateTemplateCost,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &EstimateTemplateCostInput{}
}
req = c.newRequest(op, input, output)
output = &EstimateTemplateCostOutput{}
req.Data = output
return
}
// Returns the estimated monthly cost of a template. The return value is an
// AWS Simple Monthly Calculator URL with a query string that describes the
// resources required to run the template.
func (c *CloudFormation) EstimateTemplateCost(input *EstimateTemplateCostInput) (*EstimateTemplateCostOutput, error) {
req, out := c.EstimateTemplateCostRequest(input)
err := req.Send()
return out, err
}
const opGetStackPolicy = "GetStackPolicy"
// GetStackPolicyRequest generates a request for the GetStackPolicy operation.
func (c *CloudFormation) GetStackPolicyRequest(input *GetStackPolicyInput) (req *aws.Request, output *GetStackPolicyOutput) {
op := &aws.Operation{
Name: opGetStackPolicy,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetStackPolicyInput{}
}
req = c.newRequest(op, input, output)
output = &GetStackPolicyOutput{}
req.Data = output
return
}
// Returns the stack policy for a specified stack. If a stack doesn't have a
// policy, a null value is returned.
func (c *CloudFormation) GetStackPolicy(input *GetStackPolicyInput) (*GetStackPolicyOutput, error) {
req, out := c.GetStackPolicyRequest(input)
err := req.Send()
return out, err
}
const opGetTemplate = "GetTemplate"
// GetTemplateRequest generates a request for the GetTemplate operation.
func (c *CloudFormation) GetTemplateRequest(input *GetTemplateInput) (req *aws.Request, output *GetTemplateOutput) {
op := &aws.Operation{
Name: opGetTemplate,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetTemplateInput{}
}
req = c.newRequest(op, input, output)
output = &GetTemplateOutput{}
req.Data = output
return
}
// Returns the template body for a specified stack. You can get the template
// for running or deleted stacks.
//
// For deleted stacks, GetTemplate returns the template for up to 90 days after
// the stack has been deleted.
//
// If the template does not exist, a ValidationError is returned.
func (c *CloudFormation) GetTemplate(input *GetTemplateInput) (*GetTemplateOutput, error) {
req, out := c.GetTemplateRequest(input)
err := req.Send()
return out, err
}
const opGetTemplateSummary = "GetTemplateSummary"
// GetTemplateSummaryRequest generates a request for the GetTemplateSummary operation.
func (c *CloudFormation) GetTemplateSummaryRequest(input *GetTemplateSummaryInput) (req *aws.Request, output *GetTemplateSummaryOutput) {
op := &aws.Operation{
Name: opGetTemplateSummary,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetTemplateSummaryInput{}
}
req = c.newRequest(op, input, output)
output = &GetTemplateSummaryOutput{}
req.Data = output
return
}
// Returns information about a new or existing template. The GetTemplateSummary
// action is useful for viewing parameter information, such as default parameter
// values and parameter types, before you create or update a stack.
//
// You can use the GetTemplateSummary action when you submit a template, or
// you can get template information for a running or deleted stack.
//
// For deleted stacks, GetTemplateSummary returns the template information
// for up to 90 days after the stack has been deleted. If the template does
// not exist, a ValidationError is returned.
func (c *CloudFormation) GetTemplateSummary(input *GetTemplateSummaryInput) (*GetTemplateSummaryOutput, error) {
req, out := c.GetTemplateSummaryRequest(input)
err := req.Send()
return out, err
}
const opListStackResources = "ListStackResources"
// ListStackResourcesRequest generates a request for the ListStackResources operation.
func (c *CloudFormation) ListStackResourcesRequest(input *ListStackResourcesInput) (req *aws.Request, output *ListStackResourcesOutput) {
op := &aws.Operation{
Name: opListStackResources,
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &aws.Paginator{
InputTokens: []string{"NextToken"},
OutputTokens: []string{"NextToken"},
LimitToken: "",
TruncationToken: "",
},
}
if input == nil {
input = &ListStackResourcesInput{}
}
req = c.newRequest(op, input, output)
output = &ListStackResourcesOutput{}
req.Data = output
return
}
// Returns descriptions of all resources of the specified stack.
//
// For deleted stacks, ListStackResources returns resource information for
// up to 90 days after the stack has been deleted.
func (c *CloudFormation) ListStackResources(input *ListStackResourcesInput) (*ListStackResourcesOutput, error) {
req, out := c.ListStackResourcesRequest(input)
err := req.Send()
return out, err
}
func (c *CloudFormation) ListStackResourcesPages(input *ListStackResourcesInput, fn func(p *ListStackResourcesOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.ListStackResourcesRequest(input)
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*ListStackResourcesOutput), lastPage)
})
}
const opListStacks = "ListStacks"
// ListStacksRequest generates a request for the ListStacks operation.
func (c *CloudFormation) ListStacksRequest(input *ListStacksInput) (req *aws.Request, output *ListStacksOutput) {
op := &aws.Operation{
Name: opListStacks,
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &aws.Paginator{
InputTokens: []string{"NextToken"},
OutputTokens: []string{"NextToken"},
LimitToken: "",
TruncationToken: "",
},
}
if input == nil {
input = &ListStacksInput{}
}
req = c.newRequest(op, input, output)
output = &ListStacksOutput{}
req.Data = output
return
}
// Returns the summary information for stacks whose status matches the specified
// StackStatusFilter. Summary information for stacks that have been deleted
// is kept for 90 days after the stack is deleted. If no StackStatusFilter is
// specified, summary information for all stacks is returned (including existing
// stacks and stacks that have been deleted).
func (c *CloudFormation) ListStacks(input *ListStacksInput) (*ListStacksOutput, error) {
req, out := c.ListStacksRequest(input)
err := req.Send()
return out, err
}
func (c *CloudFormation) ListStacksPages(input *ListStacksInput, fn func(p *ListStacksOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.ListStacksRequest(input)
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*ListStacksOutput), lastPage)
})
}
const opSetStackPolicy = "SetStackPolicy"
// SetStackPolicyRequest generates a request for the SetStackPolicy operation.
func (c *CloudFormation) SetStackPolicyRequest(input *SetStackPolicyInput) (req *aws.Request, output *SetStackPolicyOutput) {
op := &aws.Operation{
Name: opSetStackPolicy,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &SetStackPolicyInput{}
}
req = c.newRequest(op, input, output)
output = &SetStackPolicyOutput{}
req.Data = output
return
}
// Sets a stack policy for a specified stack.
func (c *CloudFormation) SetStackPolicy(input *SetStackPolicyInput) (*SetStackPolicyOutput, error) {
req, out := c.SetStackPolicyRequest(input)
err := req.Send()
return out, err
}
const opSignalResource = "SignalResource"
// SignalResourceRequest generates a request for the SignalResource operation.
func (c *CloudFormation) SignalResourceRequest(input *SignalResourceInput) (req *aws.Request, output *SignalResourceOutput) {
op := &aws.Operation{
Name: opSignalResource,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &SignalResourceInput{}
}
req = c.newRequest(op, input, output)
output = &SignalResourceOutput{}
req.Data = output
return
}
// Sends a signal to the specified resource with a success or failure status.
// You can use the SignalResource API in conjunction with a creation policy
// or update policy. AWS CloudFormation doesn't proceed with a stack creation
// or update until resources receive the required number of signals or the timeout
// period is exceeded. The SignalResource API is useful in cases where you want
// to send signals from anywhere other than an Amazon EC2 instance.
func (c *CloudFormation) SignalResource(input *SignalResourceInput) (*SignalResourceOutput, error) {
req, out := c.SignalResourceRequest(input)
err := req.Send()
return out, err
}
const opUpdateStack = "UpdateStack"
// UpdateStackRequest generates a request for the UpdateStack operation.
func (c *CloudFormation) UpdateStackRequest(input *UpdateStackInput) (req *aws.Request, output *UpdateStackOutput) {
op := &aws.Operation{
Name: opUpdateStack,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateStackInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateStackOutput{}
req.Data = output
return
}
// Updates a stack as specified in the template. After the call completes successfully,
// the stack update starts. You can check the status of the stack via the DescribeStacks
// action.
//
// To get a copy of the template for an existing stack, you can use the GetTemplate
// action.
//
// Tags that were associated with this stack during creation time will still
// be associated with the stack after an UpdateStack operation.
//
// For more information about creating an update template, updating a stack,
// and monitoring the progress of the update, see Updating a Stack (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks.html).
func (c *CloudFormation) UpdateStack(input *UpdateStackInput) (*UpdateStackOutput, error) {
req, out := c.UpdateStackRequest(input)
err := req.Send()
return out, err
}
const opValidateTemplate = "ValidateTemplate"
// ValidateTemplateRequest generates a request for the ValidateTemplate operation.
func (c *CloudFormation) ValidateTemplateRequest(input *ValidateTemplateInput) (req *aws.Request, output *ValidateTemplateOutput) {
op := &aws.Operation{
Name: opValidateTemplate,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ValidateTemplateInput{}
}
req = c.newRequest(op, input, output)
output = &ValidateTemplateOutput{}
req.Data = output
return
}
// Validates a specified template.
func (c *CloudFormation) ValidateTemplate(input *ValidateTemplateInput) (*ValidateTemplateOutput, error) {
req, out := c.ValidateTemplateRequest(input)
err := req.Send()
return out, err
}
// The input for CancelUpdateStack action.
type CancelUpdateStackInput struct {
// The name or the unique stack ID that is associated with the stack.
StackName *string `type:"string" required:"true"`
metadataCancelUpdateStackInput `json:"-" xml:"-"`
}
type metadataCancelUpdateStackInput struct {
SDKShapeTraits bool `type:"structure"`
}
// String returns the string representation
func (s CancelUpdateStackInput) String() string {
return awsutil.StringValue(s)
}
// GoString returns the string representation
func (s CancelUpdateStackInput) GoString() string {
return s.String()
}
type CancelUpdateStackOutput struct {
metadataCancelUpdateStackOutput `json:"-" xml:"-"`
}
type metadataCancelUpdateStackOutput struct {
SDKShapeTraits bool `type:"structure"`
}
// String returns the string representation
func (s CancelUpdateStackOutput) String() string {
return awsutil.StringValue(s)
}
// GoString returns the string representation
func (s CancelUpdateStackOutput) GoString() string {
return s.String()
}
// The input for CreateStack action.
type CreateStackInput struct {
// A list of capabilities that you must specify before AWS CloudFormation can
// create or update certain stacks. Some stack templates might include resources
// that can affect permissions in your AWS account. For those stacks, you must
// explicitly acknowledge their capabilities by specifying this parameter.
//
// Currently, the only valid value is CAPABILITY_IAM, which is required for
// the following resources: AWS::IAM::AccessKey (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html),
// AWS::IAM::Group (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html),
// AWS::IAM::InstanceProfile (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html),
// AWS::IAM::Policy (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html),
// AWS::IAM::Role (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html),
// AWS::IAM::User (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html),
// and AWS::IAM::UserToGroupAddition (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html).
// If your stack template contains these resources, we recommend that you review
// any permissions associated with them. If you don't specify this parameter,
// this action returns an InsufficientCapabilities error.
Capabilities []*string `type:"list"`
// Set to true to disable rollback of the stack if stack creation failed. You
// can specify either DisableRollback or OnFailure, but not both.
//
// Default: false
DisableRollback *bool `type:"boolean"`
// The Simple Notification Service (SNS) topic ARNs to publish stack related
// events. You can find your SNS topic ARNs using the SNS console (http://console.aws.amazon.com/sns)
// or your Command Line Interface (CLI).
NotificationARNs []*string `type:"list"`
// Determines what action will be taken if stack creation fails. This must be
// one of: DO_NOTHING, ROLLBACK, or DELETE. You can specify either OnFailure
// or DisableRollback, but not both.
//
// Default: ROLLBACK
OnFailure *string `type:"string"`
// A list of Parameter structures that specify input parameters for the stack.
Parameters []*Parameter `type:"list"`
// The name that is associated with the stack. The name must be unique in the
// region in which you are creating the stack.
//
// A stack name can contain only alphanumeric characters (case sensitive) and
// hyphens. It must start with an alphabetic character and cannot be longer
// than 255 characters.
StackName *string `type:"string" required:"true"`
// Structure containing the stack policy body. For more information, go to
// Prevent Updates to Stack Resources (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html)
// in the AWS CloudFormation User Guide. You can specify either the StackPolicyBody
// or the StackPolicyURL parameter, but not both.
StackPolicyBody *string `type:"string"`
// Location of a file containing the stack policy. The URL must point to a policy
// (max size: 16KB) located in an S3 bucket in the same region as the stack.
// You can specify either the StackPolicyBody or the StackPolicyURL parameter,
// but not both.
StackPolicyURL *string `type:"string"`
// A set of user-defined Tags to associate with this stack, represented by key/value
// pairs. Tags defined for the stack are propagated to EC2 resources that are
// created as part of the stack. A maximum number of 10 tags can be specified.
Tags []*Tag `type:"list"`
// Structure containing the template body with a minimum length of 1 byte and
// a maximum length of 51,200 bytes. For more information, go to Template Anatomy
// (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html)
// in the AWS CloudFormation User Guide.
//
// Conditional: You must specify either the TemplateBody or the TemplateURL
// parameter, but not both.
TemplateBody *string `type:"string"`
// Location of file containing the template body. The URL must point to a template
// (max size: 460,800 bytes) located in an S3 bucket in the same region as the
// stack. For more information, go to the Template Anatomy (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html)
// in the AWS CloudFormation User Guide.
//
// Conditional: You must specify either the TemplateBody or the TemplateURL
// parameter, but not both.
TemplateURL *string `type:"string"`
// The amount of time that can pass before the stack status becomes CREATE_FAILED;
// if DisableRollback is not set or is set to false, the stack will be rolled
// back.
TimeoutInMinutes *int64 `type:"integer"`
metadataCreateStackInput `json:"-" xml:"-"`
}
type metadataCreateStackInput struct {
SDKShapeTraits bool `type:"structure"`
}
// String returns the string representation
func (s CreateStackInput) String() string {
return awsutil.StringValue(s)
}
// GoString returns the string representation
func (s CreateStackInput) GoString() string {
return s.String()
}
// The output for a CreateStack action.
type CreateStackOutput struct {
// Unique identifier of the stack.
StackID *string `locationName:"StackId" type:"string"`
metadataCreateStackOutput `json:"-" xml:"-"`
}
type metadataCreateStackOutput struct {
SDKShapeTraits bool `type:"structure"`
}
// String returns the string representation
func (s CreateStackOutput) String() string {
return awsutil.StringValue(s)
}
// GoString returns the string representation
func (s CreateStackOutput) GoString() string {
return s.String()
}
// The input for DeleteStack action.
type DeleteStackInput struct {
// The name or the unique stack ID that is associated with the stack.
StackName *string `type:"string" required:"true"`
metadataDeleteStackInput `json:"-" xml:"-"`
}
type metadataDeleteStackInput struct {
SDKShapeTraits bool `type:"structure"`
}
// String returns the string representation
func (s DeleteStackInput) String() string {
return awsutil.StringValue(s)
}
// GoString returns the string representation
func (s DeleteStackInput) GoString() string {
return s.String()
}
type DeleteStackOutput struct {
metadataDeleteStackOutput `json:"-" xml:"-"`
}
type metadataDeleteStackOutput struct {
SDKShapeTraits bool `type:"structure"`
}
// String returns the string representation
func (s DeleteStackOutput) String() string {
return awsutil.StringValue(s)
}
// GoString returns the string representation
func (s DeleteStackOutput) GoString() string {
return s.String()
}
// The input for DescribeStackEvents action.
type DescribeStackEventsInput struct {
// String that identifies the start of the next list of events, if there is
// one.
//
// Default: There is no default value.
NextToken *string `type:"string"`
// The name or the unique stack ID that is associated with the stack, which
// are not always interchangeable:
//
// Running stacks: You can specify either the stack's name or its unique stack
// ID. Deleted stacks: You must specify the unique stack ID. Default: There
// is no default value.
StackName *string `type:"string"`
metadataDescribeStackEventsInput `json:"-" xml:"-"`
}
type metadataDescribeStackEventsInput struct {
SDKShapeTraits bool `type:"structure"`
}
// String returns the string representation
func (s DescribeStackEventsInput) String() string {
return awsutil.StringValue(s)
}
// GoString returns the string representation
func (s DescribeStackEventsInput) GoString() string {
return s.String()
}
// The output for a DescribeStackEvents action.
type DescribeStackEventsOutput struct {
// String that identifies the start of the next list of events, if there is
// one.
NextToken *string `type:"string"`
// A list of StackEvents structures.
StackEvents []*StackEvent `type:"list"`
metadataDescribeStackEventsOutput `json:"-" xml:"-"`
}
type metadataDescribeStackEventsOutput struct {
SDKShapeTraits bool `type:"structure"`
}
// String returns the string representation
func (s DescribeStackEventsOutput) String() string {
return awsutil.StringValue(s)
}
// GoString returns the string representation
func (s DescribeStackEventsOutput) GoString() string {
return s.String()
}
// The input for DescribeStackResource action.
type DescribeStackResourceInput struct {
// The logical name of the resource as specified in the template.
//
// Default: There is no default value.
LogicalResourceID *string `locationName:"LogicalResourceId" type:"string" required:"true"`
// The name or the unique stack ID that is associated with the stack, which
// are not always interchangeable:
//
// Running stacks: You can specify either the stack's name or its unique stack
// ID. Deleted stacks: You must specify the unique stack ID. Default: There
// is no default value.
StackName *string `type:"string" required:"true"`
metadataDescribeStackResourceInput `json:"-" xml:"-"`
}
type metadataDescribeStackResourceInput struct {
SDKShapeTraits bool `type:"structure"`
}
// String returns the string representation
func (s DescribeStackResourceInput) String() string {
return awsutil.StringValue(s)
}
// GoString returns the string representation
func (s DescribeStackResourceInput) GoString() string {
return s.String()
}
// The output for a DescribeStackResource action.
type DescribeStackResourceOutput struct {
// A StackResourceDetail structure containing the description of the specified
// resource in the specified stack.
StackResourceDetail *StackResourceDetail `type:"structure"`
metadataDescribeStackResourceOutput `json:"-" xml:"-"`
}
type metadataDescribeStackResourceOutput struct {
SDKShapeTraits bool `type:"structure"`
}
// String returns the string representation
func (s DescribeStackResourceOutput) String() string {
return awsutil.StringValue(s)
}
// GoString returns the string representation
func (s DescribeStackResourceOutput) GoString() string {
return s.String()
}
// The input for DescribeStackResources action.
type DescribeStackResourcesInput struct {
// The logical name of the resource as specified in the template.
//
// Default: There is no default value.
LogicalResourceID *string `locationName:"LogicalResourceId" type:"string"`
// The name or unique identifier that corresponds to a physical instance ID
// of a resource supported by AWS CloudFormation.
//
// For example, for an Amazon Elastic Compute Cloud (EC2) instance, PhysicalResourceId
// corresponds to the InstanceId. You can pass the EC2 InstanceId to DescribeStackResources
// to find which stack the instance belongs to and what other resources are
// part of the stack.
//
// Required: Conditional. If you do not specify PhysicalResourceId, you must
// specify StackName.
//
// Default: There is no default value.
PhysicalResourceID *string `locationName:"PhysicalResourceId" type:"string"`
// The name or the unique stack ID that is associated with the stack, which
// are not always interchangeable:
//
// Running stacks: You can specify either the stack's name or its unique stack
// ID. Deleted stacks: You must specify the unique stack ID. Default: There
// is no default value.
//
// Required: Conditional. If you do not specify StackName, you must specify
// PhysicalResourceId.
StackName *string `type:"string"`
metadataDescribeStackResourcesInput `json:"-" xml:"-"`
}
type metadataDescribeStackResourcesInput struct {
SDKShapeTraits bool `type:"structure"`
}
// String returns the string representation
func (s DescribeStackResourcesInput) String() string {
return awsutil.StringValue(s)
}
// GoString returns the string representation
func (s DescribeStackResourcesInput) GoString() string {
return s.String()
}
// The output for a DescribeStackResources action.
type DescribeStackResourcesOutput struct {
// A list of StackResource structures.
StackResources []*StackResource `type:"list"`
metadataDescribeStackResourcesOutput `json:"-" xml:"-"`
}
type metadataDescribeStackResourcesOutput struct {
SDKShapeTraits bool `type:"structure"`
}
// String returns the string representation
func (s DescribeStackResourcesOutput) String() string {
return awsutil.StringValue(s)
}
// GoString returns the string representation
func (s DescribeStackResourcesOutput) GoString() string {
return s.String()
}
// The input for DescribeStacks action.
type DescribeStacksInput struct {
// String that identifies the start of the next list of stacks, if there is
// one.
NextToken *string `type:"string"`
// The name or the unique stack ID that is associated with the stack, which
// are not always interchangeable:
//
// Running stacks: You can specify either the stack's name or its unique stack
// ID. Deleted stacks: You must specify the unique stack ID. Default: There