forked from journeymidnight/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.go
1806 lines (1446 loc) · 48.2 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 cloudhsm provides a client for Amazon CloudHSM.
package cloudhsm
import (
"fmt"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/request"
)
const opAddTagsToResource = "AddTagsToResource"
// AddTagsToResourceRequest generates a request for the AddTagsToResource operation.
func (c *CloudHSM) AddTagsToResourceRequest(input *AddTagsToResourceInput) (req *request.Request, output *AddTagsToResourceOutput) {
op := &request.Operation{
Name: opAddTagsToResource,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &AddTagsToResourceInput{}
}
req = c.newRequest(op, input, output)
output = &AddTagsToResourceOutput{}
req.Data = output
return
}
// Adds or overwrites one or more tags for the specified AWS CloudHSM resource.
//
// Each tag consists of a key and a value. Tag keys must be unique to each
// resource.
func (c *CloudHSM) AddTagsToResource(input *AddTagsToResourceInput) (*AddTagsToResourceOutput, error) {
req, out := c.AddTagsToResourceRequest(input)
err := req.Send()
return out, err
}
const opCreateHapg = "CreateHapg"
// CreateHapgRequest generates a request for the CreateHapg operation.
func (c *CloudHSM) CreateHapgRequest(input *CreateHapgInput) (req *request.Request, output *CreateHapgOutput) {
op := &request.Operation{
Name: opCreateHapg,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateHapgInput{}
}
req = c.newRequest(op, input, output)
output = &CreateHapgOutput{}
req.Data = output
return
}
// Creates a high-availability partition group. A high-availability partition
// group is a group of partitions that spans multiple physical HSMs.
func (c *CloudHSM) CreateHapg(input *CreateHapgInput) (*CreateHapgOutput, error) {
req, out := c.CreateHapgRequest(input)
err := req.Send()
return out, err
}
const opCreateHsm = "CreateHsm"
// CreateHsmRequest generates a request for the CreateHsm operation.
func (c *CloudHSM) CreateHsmRequest(input *CreateHsmInput) (req *request.Request, output *CreateHsmOutput) {
op := &request.Operation{
Name: opCreateHsm,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateHsmInput{}
}
req = c.newRequest(op, input, output)
output = &CreateHsmOutput{}
req.Data = output
return
}
// Creates an uninitialized HSM instance.
//
// There is an upfront fee charged for each HSM instance that you create with
// the CreateHsm operation. If you accidentally provision an HSM and want to
// request a refund, delete the instance using the DeleteHsm operation, go to
// the AWS Support Center (https://console.aws.amazon.com/support/home#/), create
// a new case, and select Account and Billing Support.
//
// It can take up to 20 minutes to create and provision an HSM. You can monitor
// the status of the HSM with the DescribeHsm operation. The HSM is ready to
// be initialized when the status changes to RUNNING.
func (c *CloudHSM) CreateHsm(input *CreateHsmInput) (*CreateHsmOutput, error) {
req, out := c.CreateHsmRequest(input)
err := req.Send()
return out, err
}
const opCreateLunaClient = "CreateLunaClient"
// CreateLunaClientRequest generates a request for the CreateLunaClient operation.
func (c *CloudHSM) CreateLunaClientRequest(input *CreateLunaClientInput) (req *request.Request, output *CreateLunaClientOutput) {
op := &request.Operation{
Name: opCreateLunaClient,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateLunaClientInput{}
}
req = c.newRequest(op, input, output)
output = &CreateLunaClientOutput{}
req.Data = output
return
}
// Creates an HSM client.
func (c *CloudHSM) CreateLunaClient(input *CreateLunaClientInput) (*CreateLunaClientOutput, error) {
req, out := c.CreateLunaClientRequest(input)
err := req.Send()
return out, err
}
const opDeleteHapg = "DeleteHapg"
// DeleteHapgRequest generates a request for the DeleteHapg operation.
func (c *CloudHSM) DeleteHapgRequest(input *DeleteHapgInput) (req *request.Request, output *DeleteHapgOutput) {
op := &request.Operation{
Name: opDeleteHapg,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteHapgInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteHapgOutput{}
req.Data = output
return
}
// Deletes a high-availability partition group.
func (c *CloudHSM) DeleteHapg(input *DeleteHapgInput) (*DeleteHapgOutput, error) {
req, out := c.DeleteHapgRequest(input)
err := req.Send()
return out, err
}
const opDeleteHsm = "DeleteHsm"
// DeleteHsmRequest generates a request for the DeleteHsm operation.
func (c *CloudHSM) DeleteHsmRequest(input *DeleteHsmInput) (req *request.Request, output *DeleteHsmOutput) {
op := &request.Operation{
Name: opDeleteHsm,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteHsmInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteHsmOutput{}
req.Data = output
return
}
// Deletes an HSM. After completion, this operation cannot be undone and your
// key material cannot be recovered.
func (c *CloudHSM) DeleteHsm(input *DeleteHsmInput) (*DeleteHsmOutput, error) {
req, out := c.DeleteHsmRequest(input)
err := req.Send()
return out, err
}
const opDeleteLunaClient = "DeleteLunaClient"
// DeleteLunaClientRequest generates a request for the DeleteLunaClient operation.
func (c *CloudHSM) DeleteLunaClientRequest(input *DeleteLunaClientInput) (req *request.Request, output *DeleteLunaClientOutput) {
op := &request.Operation{
Name: opDeleteLunaClient,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteLunaClientInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteLunaClientOutput{}
req.Data = output
return
}
// Deletes a client.
func (c *CloudHSM) DeleteLunaClient(input *DeleteLunaClientInput) (*DeleteLunaClientOutput, error) {
req, out := c.DeleteLunaClientRequest(input)
err := req.Send()
return out, err
}
const opDescribeHapg = "DescribeHapg"
// DescribeHapgRequest generates a request for the DescribeHapg operation.
func (c *CloudHSM) DescribeHapgRequest(input *DescribeHapgInput) (req *request.Request, output *DescribeHapgOutput) {
op := &request.Operation{
Name: opDescribeHapg,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeHapgInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeHapgOutput{}
req.Data = output
return
}
// Retrieves information about a high-availability partition group.
func (c *CloudHSM) DescribeHapg(input *DescribeHapgInput) (*DescribeHapgOutput, error) {
req, out := c.DescribeHapgRequest(input)
err := req.Send()
return out, err
}
const opDescribeHsm = "DescribeHsm"
// DescribeHsmRequest generates a request for the DescribeHsm operation.
func (c *CloudHSM) DescribeHsmRequest(input *DescribeHsmInput) (req *request.Request, output *DescribeHsmOutput) {
op := &request.Operation{
Name: opDescribeHsm,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeHsmInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeHsmOutput{}
req.Data = output
return
}
// Retrieves information about an HSM. You can identify the HSM by its ARN or
// its serial number.
func (c *CloudHSM) DescribeHsm(input *DescribeHsmInput) (*DescribeHsmOutput, error) {
req, out := c.DescribeHsmRequest(input)
err := req.Send()
return out, err
}
const opDescribeLunaClient = "DescribeLunaClient"
// DescribeLunaClientRequest generates a request for the DescribeLunaClient operation.
func (c *CloudHSM) DescribeLunaClientRequest(input *DescribeLunaClientInput) (req *request.Request, output *DescribeLunaClientOutput) {
op := &request.Operation{
Name: opDescribeLunaClient,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeLunaClientInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeLunaClientOutput{}
req.Data = output
return
}
// Retrieves information about an HSM client.
func (c *CloudHSM) DescribeLunaClient(input *DescribeLunaClientInput) (*DescribeLunaClientOutput, error) {
req, out := c.DescribeLunaClientRequest(input)
err := req.Send()
return out, err
}
const opGetConfig = "GetConfig"
// GetConfigRequest generates a request for the GetConfig operation.
func (c *CloudHSM) GetConfigRequest(input *GetConfigInput) (req *request.Request, output *GetConfigOutput) {
op := &request.Operation{
Name: opGetConfig,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetConfigInput{}
}
req = c.newRequest(op, input, output)
output = &GetConfigOutput{}
req.Data = output
return
}
// Gets the configuration files necessary to connect to all high availability
// partition groups the client is associated with.
func (c *CloudHSM) GetConfig(input *GetConfigInput) (*GetConfigOutput, error) {
req, out := c.GetConfigRequest(input)
err := req.Send()
return out, err
}
const opListAvailableZones = "ListAvailableZones"
// ListAvailableZonesRequest generates a request for the ListAvailableZones operation.
func (c *CloudHSM) ListAvailableZonesRequest(input *ListAvailableZonesInput) (req *request.Request, output *ListAvailableZonesOutput) {
op := &request.Operation{
Name: opListAvailableZones,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListAvailableZonesInput{}
}
req = c.newRequest(op, input, output)
output = &ListAvailableZonesOutput{}
req.Data = output
return
}
// Lists the Availability Zones that have available AWS CloudHSM capacity.
func (c *CloudHSM) ListAvailableZones(input *ListAvailableZonesInput) (*ListAvailableZonesOutput, error) {
req, out := c.ListAvailableZonesRequest(input)
err := req.Send()
return out, err
}
const opListHapgs = "ListHapgs"
// ListHapgsRequest generates a request for the ListHapgs operation.
func (c *CloudHSM) ListHapgsRequest(input *ListHapgsInput) (req *request.Request, output *ListHapgsOutput) {
op := &request.Operation{
Name: opListHapgs,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListHapgsInput{}
}
req = c.newRequest(op, input, output)
output = &ListHapgsOutput{}
req.Data = output
return
}
// Lists the high-availability partition groups for the account.
//
// This operation supports pagination with the use of the NextToken member.
// If more results are available, the NextToken member of the response contains
// a token that you pass in the next call to ListHapgs to retrieve the next
// set of items.
func (c *CloudHSM) ListHapgs(input *ListHapgsInput) (*ListHapgsOutput, error) {
req, out := c.ListHapgsRequest(input)
err := req.Send()
return out, err
}
const opListHsms = "ListHsms"
// ListHsmsRequest generates a request for the ListHsms operation.
func (c *CloudHSM) ListHsmsRequest(input *ListHsmsInput) (req *request.Request, output *ListHsmsOutput) {
op := &request.Operation{
Name: opListHsms,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListHsmsInput{}
}
req = c.newRequest(op, input, output)
output = &ListHsmsOutput{}
req.Data = output
return
}
// Retrieves the identifiers of all of the HSMs provisioned for the current
// customer.
//
// This operation supports pagination with the use of the NextToken member.
// If more results are available, the NextToken member of the response contains
// a token that you pass in the next call to ListHsms to retrieve the next set
// of items.
func (c *CloudHSM) ListHsms(input *ListHsmsInput) (*ListHsmsOutput, error) {
req, out := c.ListHsmsRequest(input)
err := req.Send()
return out, err
}
const opListLunaClients = "ListLunaClients"
// ListLunaClientsRequest generates a request for the ListLunaClients operation.
func (c *CloudHSM) ListLunaClientsRequest(input *ListLunaClientsInput) (req *request.Request, output *ListLunaClientsOutput) {
op := &request.Operation{
Name: opListLunaClients,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListLunaClientsInput{}
}
req = c.newRequest(op, input, output)
output = &ListLunaClientsOutput{}
req.Data = output
return
}
// Lists all of the clients.
//
// This operation supports pagination with the use of the NextToken member.
// If more results are available, the NextToken member of the response contains
// a token that you pass in the next call to ListLunaClients to retrieve the
// next set of items.
func (c *CloudHSM) ListLunaClients(input *ListLunaClientsInput) (*ListLunaClientsOutput, error) {
req, out := c.ListLunaClientsRequest(input)
err := req.Send()
return out, err
}
const opListTagsForResource = "ListTagsForResource"
// ListTagsForResourceRequest generates a request for the ListTagsForResource operation.
func (c *CloudHSM) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req *request.Request, output *ListTagsForResourceOutput) {
op := &request.Operation{
Name: opListTagsForResource,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListTagsForResourceInput{}
}
req = c.newRequest(op, input, output)
output = &ListTagsForResourceOutput{}
req.Data = output
return
}
// Returns a list of all tags for the specified AWS CloudHSM resource.
func (c *CloudHSM) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error) {
req, out := c.ListTagsForResourceRequest(input)
err := req.Send()
return out, err
}
const opModifyHapg = "ModifyHapg"
// ModifyHapgRequest generates a request for the ModifyHapg operation.
func (c *CloudHSM) ModifyHapgRequest(input *ModifyHapgInput) (req *request.Request, output *ModifyHapgOutput) {
op := &request.Operation{
Name: opModifyHapg,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ModifyHapgInput{}
}
req = c.newRequest(op, input, output)
output = &ModifyHapgOutput{}
req.Data = output
return
}
// Modifies an existing high-availability partition group.
func (c *CloudHSM) ModifyHapg(input *ModifyHapgInput) (*ModifyHapgOutput, error) {
req, out := c.ModifyHapgRequest(input)
err := req.Send()
return out, err
}
const opModifyHsm = "ModifyHsm"
// ModifyHsmRequest generates a request for the ModifyHsm operation.
func (c *CloudHSM) ModifyHsmRequest(input *ModifyHsmInput) (req *request.Request, output *ModifyHsmOutput) {
op := &request.Operation{
Name: opModifyHsm,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ModifyHsmInput{}
}
req = c.newRequest(op, input, output)
output = &ModifyHsmOutput{}
req.Data = output
return
}
// Modifies an HSM.
//
// This operation can result in the HSM being offline for up to 15 minutes
// while the AWS CloudHSM service is reconfigured. If you are modifying a production
// HSM, you should ensure that your AWS CloudHSM service is configured for high
// availability, and consider executing this operation during a maintenance
// window.
func (c *CloudHSM) ModifyHsm(input *ModifyHsmInput) (*ModifyHsmOutput, error) {
req, out := c.ModifyHsmRequest(input)
err := req.Send()
return out, err
}
const opModifyLunaClient = "ModifyLunaClient"
// ModifyLunaClientRequest generates a request for the ModifyLunaClient operation.
func (c *CloudHSM) ModifyLunaClientRequest(input *ModifyLunaClientInput) (req *request.Request, output *ModifyLunaClientOutput) {
op := &request.Operation{
Name: opModifyLunaClient,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ModifyLunaClientInput{}
}
req = c.newRequest(op, input, output)
output = &ModifyLunaClientOutput{}
req.Data = output
return
}
// Modifies the certificate used by the client.
//
// This action can potentially start a workflow to install the new certificate
// on the client's HSMs.
func (c *CloudHSM) ModifyLunaClient(input *ModifyLunaClientInput) (*ModifyLunaClientOutput, error) {
req, out := c.ModifyLunaClientRequest(input)
err := req.Send()
return out, err
}
const opRemoveTagsFromResource = "RemoveTagsFromResource"
// RemoveTagsFromResourceRequest generates a request for the RemoveTagsFromResource operation.
func (c *CloudHSM) RemoveTagsFromResourceRequest(input *RemoveTagsFromResourceInput) (req *request.Request, output *RemoveTagsFromResourceOutput) {
op := &request.Operation{
Name: opRemoveTagsFromResource,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &RemoveTagsFromResourceInput{}
}
req = c.newRequest(op, input, output)
output = &RemoveTagsFromResourceOutput{}
req.Data = output
return
}
// Removes one or more tags from the specified AWS CloudHSM resource.
//
// To remove a tag, specify only the tag key to remove (not the value). To
// overwrite the value for an existing tag, use AddTagsToResource.
func (c *CloudHSM) RemoveTagsFromResource(input *RemoveTagsFromResourceInput) (*RemoveTagsFromResourceOutput, error) {
req, out := c.RemoveTagsFromResourceRequest(input)
err := req.Send()
return out, err
}
type AddTagsToResourceInput struct {
_ struct{} `type:"structure"`
// The Amazon Resource Name (ARN) of the AWS CloudHSM resource to tag.
ResourceArn *string `type:"string" required:"true"`
// One or more tags.
TagList []*Tag `type:"list" required:"true"`
}
// String returns the string representation
func (s AddTagsToResourceInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AddTagsToResourceInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *AddTagsToResourceInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "AddTagsToResourceInput"}
if s.ResourceArn == nil {
invalidParams.Add(request.NewErrParamRequired("ResourceArn"))
}
if s.TagList == nil {
invalidParams.Add(request.NewErrParamRequired("TagList"))
}
if s.TagList != nil {
for i, v := range s.TagList {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "TagList", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
type AddTagsToResourceOutput struct {
_ struct{} `type:"structure"`
// The status of the operation.
Status *string `type:"string" required:"true"`
}
// String returns the string representation
func (s AddTagsToResourceOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AddTagsToResourceOutput) GoString() string {
return s.String()
}
// Contains the inputs for the CreateHapgRequest action.
type CreateHapgInput struct {
_ struct{} `type:"structure"`
// The label of the new high-availability partition group.
Label *string `type:"string" required:"true"`
}
// String returns the string representation
func (s CreateHapgInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateHapgInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *CreateHapgInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "CreateHapgInput"}
if s.Label == nil {
invalidParams.Add(request.NewErrParamRequired("Label"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// Contains the output of the CreateHAPartitionGroup action.
type CreateHapgOutput struct {
_ struct{} `type:"structure"`
// The ARN of the high-availability partition group.
HapgArn *string `type:"string"`
}
// String returns the string representation
func (s CreateHapgOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateHapgOutput) GoString() string {
return s.String()
}
// Contains the inputs for the CreateHsm operation.
type CreateHsmInput struct {
_ struct{} `locationName:"CreateHsmRequest" type:"structure"`
// A user-defined token to ensure idempotence. Subsequent calls to this operation
// with the same token will be ignored.
ClientToken *string `locationName:"ClientToken" type:"string"`
// The IP address to assign to the HSM's ENI.
//
// If an IP address is not specified, an IP address will be randomly chosen
// from the CIDR range of the subnet.
EniIp *string `locationName:"EniIp" type:"string"`
// The external ID from IamRoleArn, if present.
ExternalId *string `locationName:"ExternalId" type:"string"`
// The ARN of an IAM role to enable the AWS CloudHSM service to allocate an
// ENI on your behalf.
IamRoleArn *string `locationName:"IamRoleArn" type:"string" required:"true"`
// The SSH public key to install on the HSM.
SshKey *string `locationName:"SshKey" type:"string" required:"true"`
// The identifier of the subnet in your VPC in which to place the HSM.
SubnetId *string `locationName:"SubnetId" type:"string" required:"true"`
// Specifies the type of subscription for the HSM.
//
// PRODUCTION - The HSM is being used in a production environment. TRIAL -
// The HSM is being used in a product trial.
SubscriptionType *string `locationName:"SubscriptionType" type:"string" required:"true" enum:"SubscriptionType"`
// The IP address for the syslog monitoring server. The AWS CloudHSM service
// only supports one syslog monitoring server.
SyslogIp *string `locationName:"SyslogIp" type:"string"`
}
// String returns the string representation
func (s CreateHsmInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateHsmInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *CreateHsmInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "CreateHsmInput"}
if s.IamRoleArn == nil {
invalidParams.Add(request.NewErrParamRequired("IamRoleArn"))
}
if s.SshKey == nil {
invalidParams.Add(request.NewErrParamRequired("SshKey"))
}
if s.SubnetId == nil {
invalidParams.Add(request.NewErrParamRequired("SubnetId"))
}
if s.SubscriptionType == nil {
invalidParams.Add(request.NewErrParamRequired("SubscriptionType"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// Contains the output of the CreateHsm operation.
type CreateHsmOutput struct {
_ struct{} `type:"structure"`
// The ARN of the HSM.
HsmArn *string `type:"string"`
}
// String returns the string representation
func (s CreateHsmOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateHsmOutput) GoString() string {
return s.String()
}
// Contains the inputs for the CreateLunaClient action.
type CreateLunaClientInput struct {
_ struct{} `type:"structure"`
// The contents of a Base64-Encoded X.509 v3 certificate to be installed on
// the HSMs used by this client.
Certificate *string `min:"600" type:"string" required:"true"`
// The label for the client.
Label *string `type:"string"`
}
// String returns the string representation
func (s CreateLunaClientInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateLunaClientInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *CreateLunaClientInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "CreateLunaClientInput"}
if s.Certificate == nil {
invalidParams.Add(request.NewErrParamRequired("Certificate"))
}
if s.Certificate != nil && len(*s.Certificate) < 600 {
invalidParams.Add(request.NewErrParamMinLen("Certificate", 600))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// Contains the output of the CreateLunaClient action.
type CreateLunaClientOutput struct {
_ struct{} `type:"structure"`
// The ARN of the client.
ClientArn *string `type:"string"`
}
// String returns the string representation
func (s CreateLunaClientOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateLunaClientOutput) GoString() string {
return s.String()
}
// Contains the inputs for the DeleteHapg action.
type DeleteHapgInput struct {
_ struct{} `type:"structure"`
// The ARN of the high-availability partition group to delete.
HapgArn *string `type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteHapgInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteHapgInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DeleteHapgInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DeleteHapgInput"}
if s.HapgArn == nil {
invalidParams.Add(request.NewErrParamRequired("HapgArn"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// Contains the output of the DeleteHapg action.
type DeleteHapgOutput struct {
_ struct{} `type:"structure"`
// The status of the action.
Status *string `type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteHapgOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteHapgOutput) GoString() string {
return s.String()
}
// Contains the inputs for the DeleteHsm operation.
type DeleteHsmInput struct {
_ struct{} `locationName:"DeleteHsmRequest" type:"structure"`
// The ARN of the HSM to delete.
HsmArn *string `locationName:"HsmArn" type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteHsmInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteHsmInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DeleteHsmInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DeleteHsmInput"}
if s.HsmArn == nil {
invalidParams.Add(request.NewErrParamRequired("HsmArn"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// Contains the output of the DeleteHsm operation.
type DeleteHsmOutput struct {
_ struct{} `type:"structure"`
// The status of the operation.
Status *string `type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteHsmOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteHsmOutput) GoString() string {
return s.String()
}
type DeleteLunaClientInput struct {
_ struct{} `type:"structure"`
// The ARN of the client to delete.
ClientArn *string `type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteLunaClientInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteLunaClientInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DeleteLunaClientInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DeleteLunaClientInput"}
if s.ClientArn == nil {
invalidParams.Add(request.NewErrParamRequired("ClientArn"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
type DeleteLunaClientOutput struct {
_ struct{} `type:"structure"`
// The status of the action.
Status *string `type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteLunaClientOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteLunaClientOutput) GoString() string {
return s.String()
}
// Contains the inputs for the DescribeHapg action.
type DescribeHapgInput struct {