forked from aws/aws-sdk-go-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.go
9080 lines (7569 loc) · 292 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 lexmodelbuildingservice
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/restjson"
)
const opCreateBotVersion = "CreateBotVersion"
// CreateBotVersionRequest is a API request type for the CreateBotVersion API operation.
type CreateBotVersionRequest struct {
*aws.Request
Input *CreateBotVersionInput
}
// Send marshals and sends the CreateBotVersion API request.
func (r CreateBotVersionRequest) Send() (*CreateBotVersionOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*CreateBotVersionOutput), nil
}
// CreateBotVersionRequest returns a request value for making API operation for
// Amazon Lex Model Building Service.
//
// Creates a new version of the bot based on the $LATEST version. If the $LATEST
// version of this resource hasn't changed since you created the last version,
// Amazon Lex doesn't create a new version. It returns the last created version.
//
// You can update only the $LATEST version of the bot. You can't update the
// numbered versions that you create with the CreateBotVersion operation.
//
// When you create the first version of a bot, Amazon Lex sets the version to
// 1. Subsequent versions increment by 1. For more information, see versioning-intro.
//
// This operation requires permission for the lex:CreateBotVersion action.
//
// // Example sending a request using the CreateBotVersionRequest method.
// req := client.CreateBotVersionRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/CreateBotVersion
func (c *LexModelBuildingService) CreateBotVersionRequest(input *CreateBotVersionInput) CreateBotVersionRequest {
op := &aws.Operation{
Name: opCreateBotVersion,
HTTPMethod: "POST",
HTTPPath: "/bots/{name}/versions",
}
if input == nil {
input = &CreateBotVersionInput{}
}
output := &CreateBotVersionOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return CreateBotVersionRequest{Request: req, Input: input}
}
const opCreateIntentVersion = "CreateIntentVersion"
// CreateIntentVersionRequest is a API request type for the CreateIntentVersion API operation.
type CreateIntentVersionRequest struct {
*aws.Request
Input *CreateIntentVersionInput
}
// Send marshals and sends the CreateIntentVersion API request.
func (r CreateIntentVersionRequest) Send() (*CreateIntentVersionOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*CreateIntentVersionOutput), nil
}
// CreateIntentVersionRequest returns a request value for making API operation for
// Amazon Lex Model Building Service.
//
// Creates a new version of an intent based on the $LATEST version of the intent.
// If the $LATEST version of this intent hasn't changed since you last updated
// it, Amazon Lex doesn't create a new version. It returns the last version
// you created.
//
// You can update only the $LATEST version of the intent. You can't update the
// numbered versions that you create with the CreateIntentVersion operation.
//
// When you create a version of an intent, Amazon Lex sets the version to 1.
// Subsequent versions increment by 1. For more information, see versioning-intro.
//
// This operation requires permissions to perform the lex:CreateIntentVersion
// action.
//
// // Example sending a request using the CreateIntentVersionRequest method.
// req := client.CreateIntentVersionRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/CreateIntentVersion
func (c *LexModelBuildingService) CreateIntentVersionRequest(input *CreateIntentVersionInput) CreateIntentVersionRequest {
op := &aws.Operation{
Name: opCreateIntentVersion,
HTTPMethod: "POST",
HTTPPath: "/intents/{name}/versions",
}
if input == nil {
input = &CreateIntentVersionInput{}
}
output := &CreateIntentVersionOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return CreateIntentVersionRequest{Request: req, Input: input}
}
const opCreateSlotTypeVersion = "CreateSlotTypeVersion"
// CreateSlotTypeVersionRequest is a API request type for the CreateSlotTypeVersion API operation.
type CreateSlotTypeVersionRequest struct {
*aws.Request
Input *CreateSlotTypeVersionInput
}
// Send marshals and sends the CreateSlotTypeVersion API request.
func (r CreateSlotTypeVersionRequest) Send() (*CreateSlotTypeVersionOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*CreateSlotTypeVersionOutput), nil
}
// CreateSlotTypeVersionRequest returns a request value for making API operation for
// Amazon Lex Model Building Service.
//
// Creates a new version of a slot type based on the $LATEST version of the
// specified slot type. If the $LATEST version of this resource has not changed
// since the last version that you created, Amazon Lex doesn't create a new
// version. It returns the last version that you created.
//
// You can update only the $LATEST version of a slot type. You can't update
// the numbered versions that you create with the CreateSlotTypeVersion operation.
//
// When you create a version of a slot type, Amazon Lex sets the version to
// 1. Subsequent versions increment by 1. For more information, see versioning-intro.
//
// This operation requires permissions for the lex:CreateSlotTypeVersion action.
//
// // Example sending a request using the CreateSlotTypeVersionRequest method.
// req := client.CreateSlotTypeVersionRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/CreateSlotTypeVersion
func (c *LexModelBuildingService) CreateSlotTypeVersionRequest(input *CreateSlotTypeVersionInput) CreateSlotTypeVersionRequest {
op := &aws.Operation{
Name: opCreateSlotTypeVersion,
HTTPMethod: "POST",
HTTPPath: "/slottypes/{name}/versions",
}
if input == nil {
input = &CreateSlotTypeVersionInput{}
}
output := &CreateSlotTypeVersionOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return CreateSlotTypeVersionRequest{Request: req, Input: input}
}
const opDeleteBot = "DeleteBot"
// DeleteBotRequest is a API request type for the DeleteBot API operation.
type DeleteBotRequest struct {
*aws.Request
Input *DeleteBotInput
}
// Send marshals and sends the DeleteBot API request.
func (r DeleteBotRequest) Send() (*DeleteBotOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteBotOutput), nil
}
// DeleteBotRequest returns a request value for making API operation for
// Amazon Lex Model Building Service.
//
// Deletes all versions of the bot, including the $LATEST version. To delete
// a specific version of the bot, use the DeleteBotVersion operation.
//
// If a bot has an alias, you can't delete it. Instead, the DeleteBot operation
// returns a ResourceInUseException exception that includes a reference to the
// alias that refers to the bot. To remove the reference to the bot, delete
// the alias. If you get the same exception again, delete the referring alias
// until the DeleteBot operation is successful.
//
// This operation requires permissions for the lex:DeleteBot action.
//
// // Example sending a request using the DeleteBotRequest method.
// req := client.DeleteBotRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteBot
func (c *LexModelBuildingService) DeleteBotRequest(input *DeleteBotInput) DeleteBotRequest {
op := &aws.Operation{
Name: opDeleteBot,
HTTPMethod: "DELETE",
HTTPPath: "/bots/{name}",
}
if input == nil {
input = &DeleteBotInput{}
}
output := &DeleteBotOutput{}
req := c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output.responseMetadata = aws.Response{Request: req}
return DeleteBotRequest{Request: req, Input: input}
}
const opDeleteBotAlias = "DeleteBotAlias"
// DeleteBotAliasRequest is a API request type for the DeleteBotAlias API operation.
type DeleteBotAliasRequest struct {
*aws.Request
Input *DeleteBotAliasInput
}
// Send marshals and sends the DeleteBotAlias API request.
func (r DeleteBotAliasRequest) Send() (*DeleteBotAliasOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteBotAliasOutput), nil
}
// DeleteBotAliasRequest returns a request value for making API operation for
// Amazon Lex Model Building Service.
//
// Deletes an alias for the specified bot.
//
// You can't delete an alias that is used in the association between a bot and
// a messaging channel. If an alias is used in a channel association, the DeleteBot
// operation returns a ResourceInUseException exception that includes a reference
// to the channel association that refers to the bot. You can remove the reference
// to the alias by deleting the channel association. If you get the same exception
// again, delete the referring association until the DeleteBotAlias operation
// is successful.
//
// // Example sending a request using the DeleteBotAliasRequest method.
// req := client.DeleteBotAliasRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteBotAlias
func (c *LexModelBuildingService) DeleteBotAliasRequest(input *DeleteBotAliasInput) DeleteBotAliasRequest {
op := &aws.Operation{
Name: opDeleteBotAlias,
HTTPMethod: "DELETE",
HTTPPath: "/bots/{botName}/aliases/{name}",
}
if input == nil {
input = &DeleteBotAliasInput{}
}
output := &DeleteBotAliasOutput{}
req := c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output.responseMetadata = aws.Response{Request: req}
return DeleteBotAliasRequest{Request: req, Input: input}
}
const opDeleteBotChannelAssociation = "DeleteBotChannelAssociation"
// DeleteBotChannelAssociationRequest is a API request type for the DeleteBotChannelAssociation API operation.
type DeleteBotChannelAssociationRequest struct {
*aws.Request
Input *DeleteBotChannelAssociationInput
}
// Send marshals and sends the DeleteBotChannelAssociation API request.
func (r DeleteBotChannelAssociationRequest) Send() (*DeleteBotChannelAssociationOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteBotChannelAssociationOutput), nil
}
// DeleteBotChannelAssociationRequest returns a request value for making API operation for
// Amazon Lex Model Building Service.
//
// Deletes the association between an Amazon Lex bot and a messaging platform.
//
// This operation requires permission for the lex:DeleteBotChannelAssociation
// action.
//
// // Example sending a request using the DeleteBotChannelAssociationRequest method.
// req := client.DeleteBotChannelAssociationRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteBotChannelAssociation
func (c *LexModelBuildingService) DeleteBotChannelAssociationRequest(input *DeleteBotChannelAssociationInput) DeleteBotChannelAssociationRequest {
op := &aws.Operation{
Name: opDeleteBotChannelAssociation,
HTTPMethod: "DELETE",
HTTPPath: "/bots/{botName}/aliases/{aliasName}/channels/{name}",
}
if input == nil {
input = &DeleteBotChannelAssociationInput{}
}
output := &DeleteBotChannelAssociationOutput{}
req := c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output.responseMetadata = aws.Response{Request: req}
return DeleteBotChannelAssociationRequest{Request: req, Input: input}
}
const opDeleteBotVersion = "DeleteBotVersion"
// DeleteBotVersionRequest is a API request type for the DeleteBotVersion API operation.
type DeleteBotVersionRequest struct {
*aws.Request
Input *DeleteBotVersionInput
}
// Send marshals and sends the DeleteBotVersion API request.
func (r DeleteBotVersionRequest) Send() (*DeleteBotVersionOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteBotVersionOutput), nil
}
// DeleteBotVersionRequest returns a request value for making API operation for
// Amazon Lex Model Building Service.
//
// Deletes a specific version of a bot. To delete all versions of a bot, use
// the DeleteBot operation.
//
// This operation requires permissions for the lex:DeleteBotVersion action.
//
// // Example sending a request using the DeleteBotVersionRequest method.
// req := client.DeleteBotVersionRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteBotVersion
func (c *LexModelBuildingService) DeleteBotVersionRequest(input *DeleteBotVersionInput) DeleteBotVersionRequest {
op := &aws.Operation{
Name: opDeleteBotVersion,
HTTPMethod: "DELETE",
HTTPPath: "/bots/{name}/versions/{version}",
}
if input == nil {
input = &DeleteBotVersionInput{}
}
output := &DeleteBotVersionOutput{}
req := c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output.responseMetadata = aws.Response{Request: req}
return DeleteBotVersionRequest{Request: req, Input: input}
}
const opDeleteIntent = "DeleteIntent"
// DeleteIntentRequest is a API request type for the DeleteIntent API operation.
type DeleteIntentRequest struct {
*aws.Request
Input *DeleteIntentInput
}
// Send marshals and sends the DeleteIntent API request.
func (r DeleteIntentRequest) Send() (*DeleteIntentOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteIntentOutput), nil
}
// DeleteIntentRequest returns a request value for making API operation for
// Amazon Lex Model Building Service.
//
// Deletes all versions of the intent, including the $LATEST version. To delete
// a specific version of the intent, use the DeleteIntentVersion operation.
//
// You can delete a version of an intent only if it is not referenced. To delete
// an intent that is referred to in one or more bots (see how-it-works), you
// must remove those references first.
//
// If you get the ResourceInUseException exception, it provides an example reference
// that shows where the intent is referenced. To remove the reference to the
// intent, either update the bot or delete it. If you get the same exception
// when you attempt to delete the intent again, repeat until the intent has
// no references and the call to DeleteIntent is successful.
//
// This operation requires permission for the lex:DeleteIntent action.
//
// // Example sending a request using the DeleteIntentRequest method.
// req := client.DeleteIntentRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteIntent
func (c *LexModelBuildingService) DeleteIntentRequest(input *DeleteIntentInput) DeleteIntentRequest {
op := &aws.Operation{
Name: opDeleteIntent,
HTTPMethod: "DELETE",
HTTPPath: "/intents/{name}",
}
if input == nil {
input = &DeleteIntentInput{}
}
output := &DeleteIntentOutput{}
req := c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output.responseMetadata = aws.Response{Request: req}
return DeleteIntentRequest{Request: req, Input: input}
}
const opDeleteIntentVersion = "DeleteIntentVersion"
// DeleteIntentVersionRequest is a API request type for the DeleteIntentVersion API operation.
type DeleteIntentVersionRequest struct {
*aws.Request
Input *DeleteIntentVersionInput
}
// Send marshals and sends the DeleteIntentVersion API request.
func (r DeleteIntentVersionRequest) Send() (*DeleteIntentVersionOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteIntentVersionOutput), nil
}
// DeleteIntentVersionRequest returns a request value for making API operation for
// Amazon Lex Model Building Service.
//
// Deletes a specific version of an intent. To delete all versions of a intent,
// use the DeleteIntent operation.
//
// This operation requires permissions for the lex:DeleteIntentVersion action.
//
// // Example sending a request using the DeleteIntentVersionRequest method.
// req := client.DeleteIntentVersionRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteIntentVersion
func (c *LexModelBuildingService) DeleteIntentVersionRequest(input *DeleteIntentVersionInput) DeleteIntentVersionRequest {
op := &aws.Operation{
Name: opDeleteIntentVersion,
HTTPMethod: "DELETE",
HTTPPath: "/intents/{name}/versions/{version}",
}
if input == nil {
input = &DeleteIntentVersionInput{}
}
output := &DeleteIntentVersionOutput{}
req := c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output.responseMetadata = aws.Response{Request: req}
return DeleteIntentVersionRequest{Request: req, Input: input}
}
const opDeleteSlotType = "DeleteSlotType"
// DeleteSlotTypeRequest is a API request type for the DeleteSlotType API operation.
type DeleteSlotTypeRequest struct {
*aws.Request
Input *DeleteSlotTypeInput
}
// Send marshals and sends the DeleteSlotType API request.
func (r DeleteSlotTypeRequest) Send() (*DeleteSlotTypeOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteSlotTypeOutput), nil
}
// DeleteSlotTypeRequest returns a request value for making API operation for
// Amazon Lex Model Building Service.
//
// Deletes all versions of the slot type, including the $LATEST version. To
// delete a specific version of the slot type, use the DeleteSlotTypeVersion
// operation.
//
// You can delete a version of a slot type only if it is not referenced. To
// delete a slot type that is referred to in one or more intents, you must remove
// those references first.
//
// If you get the ResourceInUseException exception, the exception provides an
// example reference that shows the intent where the slot type is referenced.
// To remove the reference to the slot type, either update the intent or delete
// it. If you get the same exception when you attempt to delete the slot type
// again, repeat until the slot type has no references and the DeleteSlotType
// call is successful.
//
// This operation requires permission for the lex:DeleteSlotType action.
//
// // Example sending a request using the DeleteSlotTypeRequest method.
// req := client.DeleteSlotTypeRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteSlotType
func (c *LexModelBuildingService) DeleteSlotTypeRequest(input *DeleteSlotTypeInput) DeleteSlotTypeRequest {
op := &aws.Operation{
Name: opDeleteSlotType,
HTTPMethod: "DELETE",
HTTPPath: "/slottypes/{name}",
}
if input == nil {
input = &DeleteSlotTypeInput{}
}
output := &DeleteSlotTypeOutput{}
req := c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output.responseMetadata = aws.Response{Request: req}
return DeleteSlotTypeRequest{Request: req, Input: input}
}
const opDeleteSlotTypeVersion = "DeleteSlotTypeVersion"
// DeleteSlotTypeVersionRequest is a API request type for the DeleteSlotTypeVersion API operation.
type DeleteSlotTypeVersionRequest struct {
*aws.Request
Input *DeleteSlotTypeVersionInput
}
// Send marshals and sends the DeleteSlotTypeVersion API request.
func (r DeleteSlotTypeVersionRequest) Send() (*DeleteSlotTypeVersionOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteSlotTypeVersionOutput), nil
}
// DeleteSlotTypeVersionRequest returns a request value for making API operation for
// Amazon Lex Model Building Service.
//
// Deletes a specific version of a slot type. To delete all versions of a slot
// type, use the DeleteSlotType operation.
//
// This operation requires permissions for the lex:DeleteSlotTypeVersion action.
//
// // Example sending a request using the DeleteSlotTypeVersionRequest method.
// req := client.DeleteSlotTypeVersionRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteSlotTypeVersion
func (c *LexModelBuildingService) DeleteSlotTypeVersionRequest(input *DeleteSlotTypeVersionInput) DeleteSlotTypeVersionRequest {
op := &aws.Operation{
Name: opDeleteSlotTypeVersion,
HTTPMethod: "DELETE",
HTTPPath: "/slottypes/{name}/version/{version}",
}
if input == nil {
input = &DeleteSlotTypeVersionInput{}
}
output := &DeleteSlotTypeVersionOutput{}
req := c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output.responseMetadata = aws.Response{Request: req}
return DeleteSlotTypeVersionRequest{Request: req, Input: input}
}
const opDeleteUtterances = "DeleteUtterances"
// DeleteUtterancesRequest is a API request type for the DeleteUtterances API operation.
type DeleteUtterancesRequest struct {
*aws.Request
Input *DeleteUtterancesInput
}
// Send marshals and sends the DeleteUtterances API request.
func (r DeleteUtterancesRequest) Send() (*DeleteUtterancesOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteUtterancesOutput), nil
}
// DeleteUtterancesRequest returns a request value for making API operation for
// Amazon Lex Model Building Service.
//
// Deletes stored utterances.
//
// Amazon Lex stores the utterances that users send to your bot unless the childDirected
// field in the bot is set to true. Utterances are stored for 15 days for use
// with the GetUtterancesView operation, and then stored indefinitely for use
// in improving the ability of your bot to respond to user input.
//
// Use the DeleteStoredUtterances operation to manually delete stored utterances
// for a specific user.
//
// This operation requires permissions for the lex:DeleteUtterances action.
//
// // Example sending a request using the DeleteUtterancesRequest method.
// req := client.DeleteUtterancesRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteUtterances
func (c *LexModelBuildingService) DeleteUtterancesRequest(input *DeleteUtterancesInput) DeleteUtterancesRequest {
op := &aws.Operation{
Name: opDeleteUtterances,
HTTPMethod: "DELETE",
HTTPPath: "/bots/{botName}/utterances/{userId}",
}
if input == nil {
input = &DeleteUtterancesInput{}
}
output := &DeleteUtterancesOutput{}
req := c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output.responseMetadata = aws.Response{Request: req}
return DeleteUtterancesRequest{Request: req, Input: input}
}
const opGetBot = "GetBot"
// GetBotRequest is a API request type for the GetBot API operation.
type GetBotRequest struct {
*aws.Request
Input *GetBotInput
}
// Send marshals and sends the GetBot API request.
func (r GetBotRequest) Send() (*GetBotOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*GetBotOutput), nil
}
// GetBotRequest returns a request value for making API operation for
// Amazon Lex Model Building Service.
//
// Returns metadata information for a specific bot. You must provide the bot
// name and the bot version or alias.
//
// This operation requires permissions for the lex:GetBot action.
//
// // Example sending a request using the GetBotRequest method.
// req := client.GetBotRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBot
func (c *LexModelBuildingService) GetBotRequest(input *GetBotInput) GetBotRequest {
op := &aws.Operation{
Name: opGetBot,
HTTPMethod: "GET",
HTTPPath: "/bots/{name}/versions/{versionoralias}",
}
if input == nil {
input = &GetBotInput{}
}
output := &GetBotOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return GetBotRequest{Request: req, Input: input}
}
const opGetBotAlias = "GetBotAlias"
// GetBotAliasRequest is a API request type for the GetBotAlias API operation.
type GetBotAliasRequest struct {
*aws.Request
Input *GetBotAliasInput
}
// Send marshals and sends the GetBotAlias API request.
func (r GetBotAliasRequest) Send() (*GetBotAliasOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*GetBotAliasOutput), nil
}
// GetBotAliasRequest returns a request value for making API operation for
// Amazon Lex Model Building Service.
//
// Returns information about an Amazon Lex bot alias. For more information about
// aliases, see versioning-aliases.
//
// This operation requires permissions for the lex:GetBotAlias action.
//
// // Example sending a request using the GetBotAliasRequest method.
// req := client.GetBotAliasRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotAlias
func (c *LexModelBuildingService) GetBotAliasRequest(input *GetBotAliasInput) GetBotAliasRequest {
op := &aws.Operation{
Name: opGetBotAlias,
HTTPMethod: "GET",
HTTPPath: "/bots/{botName}/aliases/{name}",
}
if input == nil {
input = &GetBotAliasInput{}
}
output := &GetBotAliasOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return GetBotAliasRequest{Request: req, Input: input}
}
const opGetBotAliases = "GetBotAliases"
// GetBotAliasesRequest is a API request type for the GetBotAliases API operation.
type GetBotAliasesRequest struct {
*aws.Request
Input *GetBotAliasesInput
}
// Send marshals and sends the GetBotAliases API request.
func (r GetBotAliasesRequest) Send() (*GetBotAliasesOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*GetBotAliasesOutput), nil
}
// GetBotAliasesRequest returns a request value for making API operation for
// Amazon Lex Model Building Service.
//
// Returns a list of aliases for a specified Amazon Lex bot.
//
// This operation requires permissions for the lex:GetBotAliases action.
//
// // Example sending a request using the GetBotAliasesRequest method.
// req := client.GetBotAliasesRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotAliases
func (c *LexModelBuildingService) GetBotAliasesRequest(input *GetBotAliasesInput) GetBotAliasesRequest {
op := &aws.Operation{
Name: opGetBotAliases,
HTTPMethod: "GET",
HTTPPath: "/bots/{botName}/aliases/",
Paginator: &aws.Paginator{
InputTokens: []string{"nextToken"},
OutputTokens: []string{"nextToken"},
LimitToken: "maxResults",
TruncationToken: "",
},
}
if input == nil {
input = &GetBotAliasesInput{}
}
output := &GetBotAliasesOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return GetBotAliasesRequest{Request: req, Input: input}
}
// GetBotAliasesPages iterates over the pages of a GetBotAliases operation,
// calling the "fn" function with the response data for each page. To stop
// iterating, return false from the fn function.
//
// See GetBotAliases method for more information on how to use this operation.
//
// Note: This operation can generate multiple requests to a service.
//
// // Example iterating over at most 3 pages of a GetBotAliases operation.
// pageNum := 0
// err := client.GetBotAliasesPages(params,
// func(page *GetBotAliasesOutput, lastPage bool) bool {
// pageNum++
// fmt.Println(page)
// return pageNum <= 3
// })
//
func (c *LexModelBuildingService) GetBotAliasesPages(input *GetBotAliasesInput, fn func(*GetBotAliasesOutput, bool) bool) error {
return c.GetBotAliasesPagesWithContext(aws.BackgroundContext(), input, fn)
}
// GetBotAliasesPagesWithContext same as GetBotAliasesPages except
// it takes a Context and allows setting request options on the pages.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *LexModelBuildingService) GetBotAliasesPagesWithContext(ctx aws.Context, input *GetBotAliasesInput, fn func(*GetBotAliasesOutput, bool) bool, opts ...aws.Option) error {
p := aws.Pagination{
NewRequest: func() (*aws.Request, error) {
var inCpy *GetBotAliasesInput
if input != nil {
tmp := *input
inCpy = &tmp
}
req := c.GetBotAliasesRequest(inCpy)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return req.Request, nil
},
}
cont := true
for p.Next() && cont {
cont = fn(p.Page().(*GetBotAliasesOutput), !p.HasNextPage())
}
return p.Err()
}
const opGetBotChannelAssociation = "GetBotChannelAssociation"
// GetBotChannelAssociationRequest is a API request type for the GetBotChannelAssociation API operation.
type GetBotChannelAssociationRequest struct {
*aws.Request
Input *GetBotChannelAssociationInput
}
// Send marshals and sends the GetBotChannelAssociation API request.
func (r GetBotChannelAssociationRequest) Send() (*GetBotChannelAssociationOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*GetBotChannelAssociationOutput), nil
}
// GetBotChannelAssociationRequest returns a request value for making API operation for
// Amazon Lex Model Building Service.
//
// Returns information about the association between an Amazon Lex bot and a
// messaging platform.
//
// This operation requires permissions for the lex:GetBotChannelAssociation
// action.
//
// // Example sending a request using the GetBotChannelAssociationRequest method.
// req := client.GetBotChannelAssociationRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotChannelAssociation
func (c *LexModelBuildingService) GetBotChannelAssociationRequest(input *GetBotChannelAssociationInput) GetBotChannelAssociationRequest {
op := &aws.Operation{
Name: opGetBotChannelAssociation,
HTTPMethod: "GET",
HTTPPath: "/bots/{botName}/aliases/{aliasName}/channels/{name}",
}
if input == nil {
input = &GetBotChannelAssociationInput{}
}
output := &GetBotChannelAssociationOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return GetBotChannelAssociationRequest{Request: req, Input: input}
}
const opGetBotChannelAssociations = "GetBotChannelAssociations"
// GetBotChannelAssociationsRequest is a API request type for the GetBotChannelAssociations API operation.
type GetBotChannelAssociationsRequest struct {
*aws.Request
Input *GetBotChannelAssociationsInput
}
// Send marshals and sends the GetBotChannelAssociations API request.
func (r GetBotChannelAssociationsRequest) Send() (*GetBotChannelAssociationsOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*GetBotChannelAssociationsOutput), nil