-
Notifications
You must be signed in to change notification settings - Fork 17
/
awss3.go
1027 lines (1024 loc) · 51.8 KB
/
awss3.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
package awss3
import (
"reflect"
_jsii_ "github.com/aws/jsii-runtime-go/runtime"
)
func init() {
_jsii_.RegisterClass(
"aws-cdk-lib.aws_s3.BlockPublicAccess",
reflect.TypeOf((*BlockPublicAccess)(nil)).Elem(),
[]_jsii_.Member{
_jsii_.MemberProperty{JsiiProperty: "blockPublicAcls", GoGetter: "BlockPublicAcls"},
_jsii_.MemberProperty{JsiiProperty: "blockPublicPolicy", GoGetter: "BlockPublicPolicy"},
_jsii_.MemberProperty{JsiiProperty: "ignorePublicAcls", GoGetter: "IgnorePublicAcls"},
_jsii_.MemberProperty{JsiiProperty: "restrictPublicBuckets", GoGetter: "RestrictPublicBuckets"},
},
func() interface{} {
return &jsiiProxy_BlockPublicAccess{}
},
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.BlockPublicAccessOptions",
reflect.TypeOf((*BlockPublicAccessOptions)(nil)).Elem(),
)
_jsii_.RegisterClass(
"aws-cdk-lib.aws_s3.Bucket",
reflect.TypeOf((*Bucket)(nil)).Elem(),
[]_jsii_.Member{
_jsii_.MemberMethod{JsiiMethod: "addCorsRule", GoMethod: "AddCorsRule"},
_jsii_.MemberMethod{JsiiMethod: "addEventNotification", GoMethod: "AddEventNotification"},
_jsii_.MemberMethod{JsiiMethod: "addInventory", GoMethod: "AddInventory"},
_jsii_.MemberMethod{JsiiMethod: "addLifecycleRule", GoMethod: "AddLifecycleRule"},
_jsii_.MemberMethod{JsiiMethod: "addMetric", GoMethod: "AddMetric"},
_jsii_.MemberMethod{JsiiMethod: "addObjectCreatedNotification", GoMethod: "AddObjectCreatedNotification"},
_jsii_.MemberMethod{JsiiMethod: "addObjectRemovedNotification", GoMethod: "AddObjectRemovedNotification"},
_jsii_.MemberMethod{JsiiMethod: "addToResourcePolicy", GoMethod: "AddToResourcePolicy"},
_jsii_.MemberMethod{JsiiMethod: "applyRemovalPolicy", GoMethod: "ApplyRemovalPolicy"},
_jsii_.MemberMethod{JsiiMethod: "arnForObjects", GoMethod: "ArnForObjects"},
_jsii_.MemberProperty{JsiiProperty: "autoCreatePolicy", GoGetter: "AutoCreatePolicy"},
_jsii_.MemberProperty{JsiiProperty: "bucketArn", GoGetter: "BucketArn"},
_jsii_.MemberProperty{JsiiProperty: "bucketDomainName", GoGetter: "BucketDomainName"},
_jsii_.MemberProperty{JsiiProperty: "bucketDualStackDomainName", GoGetter: "BucketDualStackDomainName"},
_jsii_.MemberProperty{JsiiProperty: "bucketName", GoGetter: "BucketName"},
_jsii_.MemberProperty{JsiiProperty: "bucketRegionalDomainName", GoGetter: "BucketRegionalDomainName"},
_jsii_.MemberProperty{JsiiProperty: "bucketWebsiteDomainName", GoGetter: "BucketWebsiteDomainName"},
_jsii_.MemberProperty{JsiiProperty: "bucketWebsiteUrl", GoGetter: "BucketWebsiteUrl"},
_jsii_.MemberProperty{JsiiProperty: "disallowPublicAccess", GoGetter: "DisallowPublicAccess"},
_jsii_.MemberMethod{JsiiMethod: "enableEventBridgeNotification", GoMethod: "EnableEventBridgeNotification"},
_jsii_.MemberProperty{JsiiProperty: "encryptionKey", GoGetter: "EncryptionKey"},
_jsii_.MemberProperty{JsiiProperty: "env", GoGetter: "Env"},
_jsii_.MemberMethod{JsiiMethod: "generatePhysicalName", GoMethod: "GeneratePhysicalName"},
_jsii_.MemberMethod{JsiiMethod: "getResourceArnAttribute", GoMethod: "GetResourceArnAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getResourceNameAttribute", GoMethod: "GetResourceNameAttribute"},
_jsii_.MemberMethod{JsiiMethod: "grantDelete", GoMethod: "GrantDelete"},
_jsii_.MemberMethod{JsiiMethod: "grantPublicAccess", GoMethod: "GrantPublicAccess"},
_jsii_.MemberMethod{JsiiMethod: "grantPut", GoMethod: "GrantPut"},
_jsii_.MemberMethod{JsiiMethod: "grantPutAcl", GoMethod: "GrantPutAcl"},
_jsii_.MemberMethod{JsiiMethod: "grantRead", GoMethod: "GrantRead"},
_jsii_.MemberMethod{JsiiMethod: "grantReadWrite", GoMethod: "GrantReadWrite"},
_jsii_.MemberMethod{JsiiMethod: "grantWrite", GoMethod: "GrantWrite"},
_jsii_.MemberProperty{JsiiProperty: "isWebsite", GoGetter: "IsWebsite"},
_jsii_.MemberProperty{JsiiProperty: "node", GoGetter: "Node"},
_jsii_.MemberProperty{JsiiProperty: "notificationsHandlerRole", GoGetter: "NotificationsHandlerRole"},
_jsii_.MemberMethod{JsiiMethod: "onCloudTrailEvent", GoMethod: "OnCloudTrailEvent"},
_jsii_.MemberMethod{JsiiMethod: "onCloudTrailPutObject", GoMethod: "OnCloudTrailPutObject"},
_jsii_.MemberMethod{JsiiMethod: "onCloudTrailWriteObject", GoMethod: "OnCloudTrailWriteObject"},
_jsii_.MemberProperty{JsiiProperty: "physicalName", GoGetter: "PhysicalName"},
_jsii_.MemberProperty{JsiiProperty: "policy", GoGetter: "Policy"},
_jsii_.MemberMethod{JsiiMethod: "s3UrlForObject", GoMethod: "S3UrlForObject"},
_jsii_.MemberProperty{JsiiProperty: "stack", GoGetter: "Stack"},
_jsii_.MemberMethod{JsiiMethod: "toString", GoMethod: "ToString"},
_jsii_.MemberMethod{JsiiMethod: "transferAccelerationUrlForObject", GoMethod: "TransferAccelerationUrlForObject"},
_jsii_.MemberMethod{JsiiMethod: "urlForObject", GoMethod: "UrlForObject"},
_jsii_.MemberMethod{JsiiMethod: "virtualHostedUrlForObject", GoMethod: "VirtualHostedUrlForObject"},
},
func() interface{} {
j := jsiiProxy_Bucket{}
_jsii_.InitJsiiProxy(&j.jsiiProxy_BucketBase)
return &j
},
)
_jsii_.RegisterEnum(
"aws-cdk-lib.aws_s3.BucketAccessControl",
reflect.TypeOf((*BucketAccessControl)(nil)).Elem(),
map[string]interface{}{
"PRIVATE": BucketAccessControl_PRIVATE,
"PUBLIC_READ": BucketAccessControl_PUBLIC_READ,
"PUBLIC_READ_WRITE": BucketAccessControl_PUBLIC_READ_WRITE,
"AUTHENTICATED_READ": BucketAccessControl_AUTHENTICATED_READ,
"LOG_DELIVERY_WRITE": BucketAccessControl_LOG_DELIVERY_WRITE,
"BUCKET_OWNER_READ": BucketAccessControl_BUCKET_OWNER_READ,
"BUCKET_OWNER_FULL_CONTROL": BucketAccessControl_BUCKET_OWNER_FULL_CONTROL,
"AWS_EXEC_READ": BucketAccessControl_AWS_EXEC_READ,
},
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.BucketAttributes",
reflect.TypeOf((*BucketAttributes)(nil)).Elem(),
)
_jsii_.RegisterClass(
"aws-cdk-lib.aws_s3.BucketBase",
reflect.TypeOf((*BucketBase)(nil)).Elem(),
[]_jsii_.Member{
_jsii_.MemberMethod{JsiiMethod: "addEventNotification", GoMethod: "AddEventNotification"},
_jsii_.MemberMethod{JsiiMethod: "addObjectCreatedNotification", GoMethod: "AddObjectCreatedNotification"},
_jsii_.MemberMethod{JsiiMethod: "addObjectRemovedNotification", GoMethod: "AddObjectRemovedNotification"},
_jsii_.MemberMethod{JsiiMethod: "addToResourcePolicy", GoMethod: "AddToResourcePolicy"},
_jsii_.MemberMethod{JsiiMethod: "applyRemovalPolicy", GoMethod: "ApplyRemovalPolicy"},
_jsii_.MemberMethod{JsiiMethod: "arnForObjects", GoMethod: "ArnForObjects"},
_jsii_.MemberProperty{JsiiProperty: "autoCreatePolicy", GoGetter: "AutoCreatePolicy"},
_jsii_.MemberProperty{JsiiProperty: "bucketArn", GoGetter: "BucketArn"},
_jsii_.MemberProperty{JsiiProperty: "bucketDomainName", GoGetter: "BucketDomainName"},
_jsii_.MemberProperty{JsiiProperty: "bucketDualStackDomainName", GoGetter: "BucketDualStackDomainName"},
_jsii_.MemberProperty{JsiiProperty: "bucketName", GoGetter: "BucketName"},
_jsii_.MemberProperty{JsiiProperty: "bucketRegionalDomainName", GoGetter: "BucketRegionalDomainName"},
_jsii_.MemberProperty{JsiiProperty: "bucketWebsiteDomainName", GoGetter: "BucketWebsiteDomainName"},
_jsii_.MemberProperty{JsiiProperty: "bucketWebsiteUrl", GoGetter: "BucketWebsiteUrl"},
_jsii_.MemberProperty{JsiiProperty: "disallowPublicAccess", GoGetter: "DisallowPublicAccess"},
_jsii_.MemberMethod{JsiiMethod: "enableEventBridgeNotification", GoMethod: "EnableEventBridgeNotification"},
_jsii_.MemberProperty{JsiiProperty: "encryptionKey", GoGetter: "EncryptionKey"},
_jsii_.MemberProperty{JsiiProperty: "env", GoGetter: "Env"},
_jsii_.MemberMethod{JsiiMethod: "generatePhysicalName", GoMethod: "GeneratePhysicalName"},
_jsii_.MemberMethod{JsiiMethod: "getResourceArnAttribute", GoMethod: "GetResourceArnAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getResourceNameAttribute", GoMethod: "GetResourceNameAttribute"},
_jsii_.MemberMethod{JsiiMethod: "grantDelete", GoMethod: "GrantDelete"},
_jsii_.MemberMethod{JsiiMethod: "grantPublicAccess", GoMethod: "GrantPublicAccess"},
_jsii_.MemberMethod{JsiiMethod: "grantPut", GoMethod: "GrantPut"},
_jsii_.MemberMethod{JsiiMethod: "grantPutAcl", GoMethod: "GrantPutAcl"},
_jsii_.MemberMethod{JsiiMethod: "grantRead", GoMethod: "GrantRead"},
_jsii_.MemberMethod{JsiiMethod: "grantReadWrite", GoMethod: "GrantReadWrite"},
_jsii_.MemberMethod{JsiiMethod: "grantWrite", GoMethod: "GrantWrite"},
_jsii_.MemberProperty{JsiiProperty: "isWebsite", GoGetter: "IsWebsite"},
_jsii_.MemberProperty{JsiiProperty: "node", GoGetter: "Node"},
_jsii_.MemberProperty{JsiiProperty: "notificationsHandlerRole", GoGetter: "NotificationsHandlerRole"},
_jsii_.MemberMethod{JsiiMethod: "onCloudTrailEvent", GoMethod: "OnCloudTrailEvent"},
_jsii_.MemberMethod{JsiiMethod: "onCloudTrailPutObject", GoMethod: "OnCloudTrailPutObject"},
_jsii_.MemberMethod{JsiiMethod: "onCloudTrailWriteObject", GoMethod: "OnCloudTrailWriteObject"},
_jsii_.MemberProperty{JsiiProperty: "physicalName", GoGetter: "PhysicalName"},
_jsii_.MemberProperty{JsiiProperty: "policy", GoGetter: "Policy"},
_jsii_.MemberMethod{JsiiMethod: "s3UrlForObject", GoMethod: "S3UrlForObject"},
_jsii_.MemberProperty{JsiiProperty: "stack", GoGetter: "Stack"},
_jsii_.MemberMethod{JsiiMethod: "toString", GoMethod: "ToString"},
_jsii_.MemberMethod{JsiiMethod: "transferAccelerationUrlForObject", GoMethod: "TransferAccelerationUrlForObject"},
_jsii_.MemberMethod{JsiiMethod: "urlForObject", GoMethod: "UrlForObject"},
_jsii_.MemberMethod{JsiiMethod: "virtualHostedUrlForObject", GoMethod: "VirtualHostedUrlForObject"},
},
func() interface{} {
j := jsiiProxy_BucketBase{}
_jsii_.InitJsiiProxy(&j.Type__awscdkResource)
_jsii_.InitJsiiProxy(&j.jsiiProxy_IBucket)
return &j
},
)
_jsii_.RegisterEnum(
"aws-cdk-lib.aws_s3.BucketEncryption",
reflect.TypeOf((*BucketEncryption)(nil)).Elem(),
map[string]interface{}{
"UNENCRYPTED": BucketEncryption_UNENCRYPTED,
"KMS_MANAGED": BucketEncryption_KMS_MANAGED,
"S3_MANAGED": BucketEncryption_S3_MANAGED,
"KMS": BucketEncryption_KMS,
},
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.BucketMetrics",
reflect.TypeOf((*BucketMetrics)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.BucketNotificationDestinationConfig",
reflect.TypeOf((*BucketNotificationDestinationConfig)(nil)).Elem(),
)
_jsii_.RegisterEnum(
"aws-cdk-lib.aws_s3.BucketNotificationDestinationType",
reflect.TypeOf((*BucketNotificationDestinationType)(nil)).Elem(),
map[string]interface{}{
"LAMBDA": BucketNotificationDestinationType_LAMBDA,
"QUEUE": BucketNotificationDestinationType_QUEUE,
"TOPIC": BucketNotificationDestinationType_TOPIC,
},
)
_jsii_.RegisterClass(
"aws-cdk-lib.aws_s3.BucketPolicy",
reflect.TypeOf((*BucketPolicy)(nil)).Elem(),
[]_jsii_.Member{
_jsii_.MemberMethod{JsiiMethod: "applyRemovalPolicy", GoMethod: "ApplyRemovalPolicy"},
_jsii_.MemberProperty{JsiiProperty: "bucket", GoGetter: "Bucket"},
_jsii_.MemberProperty{JsiiProperty: "document", GoGetter: "Document"},
_jsii_.MemberProperty{JsiiProperty: "env", GoGetter: "Env"},
_jsii_.MemberMethod{JsiiMethod: "generatePhysicalName", GoMethod: "GeneratePhysicalName"},
_jsii_.MemberMethod{JsiiMethod: "getResourceArnAttribute", GoMethod: "GetResourceArnAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getResourceNameAttribute", GoMethod: "GetResourceNameAttribute"},
_jsii_.MemberProperty{JsiiProperty: "node", GoGetter: "Node"},
_jsii_.MemberProperty{JsiiProperty: "physicalName", GoGetter: "PhysicalName"},
_jsii_.MemberProperty{JsiiProperty: "stack", GoGetter: "Stack"},
_jsii_.MemberMethod{JsiiMethod: "toString", GoMethod: "ToString"},
},
func() interface{} {
j := jsiiProxy_BucketPolicy{}
_jsii_.InitJsiiProxy(&j.Type__awscdkResource)
return &j
},
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.BucketPolicyProps",
reflect.TypeOf((*BucketPolicyProps)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.BucketProps",
reflect.TypeOf((*BucketProps)(nil)).Elem(),
)
_jsii_.RegisterClass(
"aws-cdk-lib.aws_s3.CfnAccessPoint",
reflect.TypeOf((*CfnAccessPoint)(nil)).Elem(),
[]_jsii_.Member{
_jsii_.MemberMethod{JsiiMethod: "addDeletionOverride", GoMethod: "AddDeletionOverride"},
_jsii_.MemberMethod{JsiiMethod: "addDependsOn", GoMethod: "AddDependsOn"},
_jsii_.MemberMethod{JsiiMethod: "addMetadata", GoMethod: "AddMetadata"},
_jsii_.MemberMethod{JsiiMethod: "addOverride", GoMethod: "AddOverride"},
_jsii_.MemberMethod{JsiiMethod: "addPropertyDeletionOverride", GoMethod: "AddPropertyDeletionOverride"},
_jsii_.MemberMethod{JsiiMethod: "addPropertyOverride", GoMethod: "AddPropertyOverride"},
_jsii_.MemberMethod{JsiiMethod: "applyRemovalPolicy", GoMethod: "ApplyRemovalPolicy"},
_jsii_.MemberProperty{JsiiProperty: "attrAlias", GoGetter: "AttrAlias"},
_jsii_.MemberProperty{JsiiProperty: "attrArn", GoGetter: "AttrArn"},
_jsii_.MemberProperty{JsiiProperty: "attrName", GoGetter: "AttrName"},
_jsii_.MemberProperty{JsiiProperty: "attrNetworkOrigin", GoGetter: "AttrNetworkOrigin"},
_jsii_.MemberProperty{JsiiProperty: "bucket", GoGetter: "Bucket"},
_jsii_.MemberProperty{JsiiProperty: "cfnOptions", GoGetter: "CfnOptions"},
_jsii_.MemberProperty{JsiiProperty: "cfnProperties", GoGetter: "CfnProperties"},
_jsii_.MemberProperty{JsiiProperty: "cfnResourceType", GoGetter: "CfnResourceType"},
_jsii_.MemberProperty{JsiiProperty: "creationStack", GoGetter: "CreationStack"},
_jsii_.MemberMethod{JsiiMethod: "getAtt", GoMethod: "GetAtt"},
_jsii_.MemberMethod{JsiiMethod: "getMetadata", GoMethod: "GetMetadata"},
_jsii_.MemberMethod{JsiiMethod: "inspect", GoMethod: "Inspect"},
_jsii_.MemberProperty{JsiiProperty: "logicalId", GoGetter: "LogicalId"},
_jsii_.MemberProperty{JsiiProperty: "name", GoGetter: "Name"},
_jsii_.MemberProperty{JsiiProperty: "node", GoGetter: "Node"},
_jsii_.MemberMethod{JsiiMethod: "overrideLogicalId", GoMethod: "OverrideLogicalId"},
_jsii_.MemberProperty{JsiiProperty: "policy", GoGetter: "Policy"},
_jsii_.MemberProperty{JsiiProperty: "policyStatus", GoGetter: "PolicyStatus"},
_jsii_.MemberProperty{JsiiProperty: "publicAccessBlockConfiguration", GoGetter: "PublicAccessBlockConfiguration"},
_jsii_.MemberProperty{JsiiProperty: "ref", GoGetter: "Ref"},
_jsii_.MemberMethod{JsiiMethod: "renderProperties", GoMethod: "RenderProperties"},
_jsii_.MemberMethod{JsiiMethod: "shouldSynthesize", GoMethod: "ShouldSynthesize"},
_jsii_.MemberProperty{JsiiProperty: "stack", GoGetter: "Stack"},
_jsii_.MemberMethod{JsiiMethod: "toString", GoMethod: "ToString"},
_jsii_.MemberProperty{JsiiProperty: "updatedProperites", GoGetter: "UpdatedProperites"},
_jsii_.MemberProperty{JsiiProperty: "updatedProperties", GoGetter: "UpdatedProperties"},
_jsii_.MemberMethod{JsiiMethod: "validateProperties", GoMethod: "ValidateProperties"},
_jsii_.MemberProperty{JsiiProperty: "vpcConfiguration", GoGetter: "VpcConfiguration"},
},
func() interface{} {
j := jsiiProxy_CfnAccessPoint{}
_jsii_.InitJsiiProxy(&j.Type__awscdkCfnResource)
_jsii_.InitJsiiProxy(&j.Type__awscdkIInspectable)
return &j
},
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnAccessPoint.PublicAccessBlockConfigurationProperty",
reflect.TypeOf((*CfnAccessPoint_PublicAccessBlockConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnAccessPoint.VpcConfigurationProperty",
reflect.TypeOf((*CfnAccessPoint_VpcConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnAccessPointProps",
reflect.TypeOf((*CfnAccessPointProps)(nil)).Elem(),
)
_jsii_.RegisterClass(
"aws-cdk-lib.aws_s3.CfnBucket",
reflect.TypeOf((*CfnBucket)(nil)).Elem(),
[]_jsii_.Member{
_jsii_.MemberProperty{JsiiProperty: "accelerateConfiguration", GoGetter: "AccelerateConfiguration"},
_jsii_.MemberProperty{JsiiProperty: "accessControl", GoGetter: "AccessControl"},
_jsii_.MemberMethod{JsiiMethod: "addDeletionOverride", GoMethod: "AddDeletionOverride"},
_jsii_.MemberMethod{JsiiMethod: "addDependsOn", GoMethod: "AddDependsOn"},
_jsii_.MemberMethod{JsiiMethod: "addMetadata", GoMethod: "AddMetadata"},
_jsii_.MemberMethod{JsiiMethod: "addOverride", GoMethod: "AddOverride"},
_jsii_.MemberMethod{JsiiMethod: "addPropertyDeletionOverride", GoMethod: "AddPropertyDeletionOverride"},
_jsii_.MemberMethod{JsiiMethod: "addPropertyOverride", GoMethod: "AddPropertyOverride"},
_jsii_.MemberProperty{JsiiProperty: "analyticsConfigurations", GoGetter: "AnalyticsConfigurations"},
_jsii_.MemberMethod{JsiiMethod: "applyRemovalPolicy", GoMethod: "ApplyRemovalPolicy"},
_jsii_.MemberProperty{JsiiProperty: "attrArn", GoGetter: "AttrArn"},
_jsii_.MemberProperty{JsiiProperty: "attrDomainName", GoGetter: "AttrDomainName"},
_jsii_.MemberProperty{JsiiProperty: "attrDualStackDomainName", GoGetter: "AttrDualStackDomainName"},
_jsii_.MemberProperty{JsiiProperty: "attrRegionalDomainName", GoGetter: "AttrRegionalDomainName"},
_jsii_.MemberProperty{JsiiProperty: "attrWebsiteUrl", GoGetter: "AttrWebsiteUrl"},
_jsii_.MemberProperty{JsiiProperty: "bucketEncryption", GoGetter: "BucketEncryption"},
_jsii_.MemberProperty{JsiiProperty: "bucketName", GoGetter: "BucketName"},
_jsii_.MemberProperty{JsiiProperty: "cfnOptions", GoGetter: "CfnOptions"},
_jsii_.MemberProperty{JsiiProperty: "cfnProperties", GoGetter: "CfnProperties"},
_jsii_.MemberProperty{JsiiProperty: "cfnResourceType", GoGetter: "CfnResourceType"},
_jsii_.MemberProperty{JsiiProperty: "corsConfiguration", GoGetter: "CorsConfiguration"},
_jsii_.MemberProperty{JsiiProperty: "creationStack", GoGetter: "CreationStack"},
_jsii_.MemberMethod{JsiiMethod: "getAtt", GoMethod: "GetAtt"},
_jsii_.MemberMethod{JsiiMethod: "getMetadata", GoMethod: "GetMetadata"},
_jsii_.MemberMethod{JsiiMethod: "inspect", GoMethod: "Inspect"},
_jsii_.MemberProperty{JsiiProperty: "intelligentTieringConfigurations", GoGetter: "IntelligentTieringConfigurations"},
_jsii_.MemberProperty{JsiiProperty: "inventoryConfigurations", GoGetter: "InventoryConfigurations"},
_jsii_.MemberProperty{JsiiProperty: "lifecycleConfiguration", GoGetter: "LifecycleConfiguration"},
_jsii_.MemberProperty{JsiiProperty: "loggingConfiguration", GoGetter: "LoggingConfiguration"},
_jsii_.MemberProperty{JsiiProperty: "logicalId", GoGetter: "LogicalId"},
_jsii_.MemberProperty{JsiiProperty: "metricsConfigurations", GoGetter: "MetricsConfigurations"},
_jsii_.MemberProperty{JsiiProperty: "node", GoGetter: "Node"},
_jsii_.MemberProperty{JsiiProperty: "notificationConfiguration", GoGetter: "NotificationConfiguration"},
_jsii_.MemberProperty{JsiiProperty: "objectLockConfiguration", GoGetter: "ObjectLockConfiguration"},
_jsii_.MemberProperty{JsiiProperty: "objectLockEnabled", GoGetter: "ObjectLockEnabled"},
_jsii_.MemberMethod{JsiiMethod: "overrideLogicalId", GoMethod: "OverrideLogicalId"},
_jsii_.MemberProperty{JsiiProperty: "ownershipControls", GoGetter: "OwnershipControls"},
_jsii_.MemberProperty{JsiiProperty: "publicAccessBlockConfiguration", GoGetter: "PublicAccessBlockConfiguration"},
_jsii_.MemberProperty{JsiiProperty: "ref", GoGetter: "Ref"},
_jsii_.MemberMethod{JsiiMethod: "renderProperties", GoMethod: "RenderProperties"},
_jsii_.MemberProperty{JsiiProperty: "replicationConfiguration", GoGetter: "ReplicationConfiguration"},
_jsii_.MemberMethod{JsiiMethod: "shouldSynthesize", GoMethod: "ShouldSynthesize"},
_jsii_.MemberProperty{JsiiProperty: "stack", GoGetter: "Stack"},
_jsii_.MemberProperty{JsiiProperty: "tags", GoGetter: "Tags"},
_jsii_.MemberMethod{JsiiMethod: "toString", GoMethod: "ToString"},
_jsii_.MemberProperty{JsiiProperty: "updatedProperites", GoGetter: "UpdatedProperites"},
_jsii_.MemberProperty{JsiiProperty: "updatedProperties", GoGetter: "UpdatedProperties"},
_jsii_.MemberMethod{JsiiMethod: "validateProperties", GoMethod: "ValidateProperties"},
_jsii_.MemberProperty{JsiiProperty: "versioningConfiguration", GoGetter: "VersioningConfiguration"},
_jsii_.MemberProperty{JsiiProperty: "websiteConfiguration", GoGetter: "WebsiteConfiguration"},
},
func() interface{} {
j := jsiiProxy_CfnBucket{}
_jsii_.InitJsiiProxy(&j.Type__awscdkCfnResource)
_jsii_.InitJsiiProxy(&j.Type__awscdkIInspectable)
return &j
},
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.AbortIncompleteMultipartUploadProperty",
reflect.TypeOf((*CfnBucket_AbortIncompleteMultipartUploadProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.AccelerateConfigurationProperty",
reflect.TypeOf((*CfnBucket_AccelerateConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.AccessControlTranslationProperty",
reflect.TypeOf((*CfnBucket_AccessControlTranslationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.AnalyticsConfigurationProperty",
reflect.TypeOf((*CfnBucket_AnalyticsConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.BucketEncryptionProperty",
reflect.TypeOf((*CfnBucket_BucketEncryptionProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.CorsConfigurationProperty",
reflect.TypeOf((*CfnBucket_CorsConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.CorsRuleProperty",
reflect.TypeOf((*CfnBucket_CorsRuleProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.DataExportProperty",
reflect.TypeOf((*CfnBucket_DataExportProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.DefaultRetentionProperty",
reflect.TypeOf((*CfnBucket_DefaultRetentionProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.DeleteMarkerReplicationProperty",
reflect.TypeOf((*CfnBucket_DeleteMarkerReplicationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.DestinationProperty",
reflect.TypeOf((*CfnBucket_DestinationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.EncryptionConfigurationProperty",
reflect.TypeOf((*CfnBucket_EncryptionConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.EventBridgeConfigurationProperty",
reflect.TypeOf((*CfnBucket_EventBridgeConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.FilterRuleProperty",
reflect.TypeOf((*CfnBucket_FilterRuleProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.IntelligentTieringConfigurationProperty",
reflect.TypeOf((*CfnBucket_IntelligentTieringConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.InventoryConfigurationProperty",
reflect.TypeOf((*CfnBucket_InventoryConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.LambdaConfigurationProperty",
reflect.TypeOf((*CfnBucket_LambdaConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.LifecycleConfigurationProperty",
reflect.TypeOf((*CfnBucket_LifecycleConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.LoggingConfigurationProperty",
reflect.TypeOf((*CfnBucket_LoggingConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.MetricsConfigurationProperty",
reflect.TypeOf((*CfnBucket_MetricsConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.MetricsProperty",
reflect.TypeOf((*CfnBucket_MetricsProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.NoncurrentVersionExpirationProperty",
reflect.TypeOf((*CfnBucket_NoncurrentVersionExpirationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.NoncurrentVersionTransitionProperty",
reflect.TypeOf((*CfnBucket_NoncurrentVersionTransitionProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.NotificationConfigurationProperty",
reflect.TypeOf((*CfnBucket_NotificationConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.NotificationFilterProperty",
reflect.TypeOf((*CfnBucket_NotificationFilterProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.ObjectLockConfigurationProperty",
reflect.TypeOf((*CfnBucket_ObjectLockConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.ObjectLockRuleProperty",
reflect.TypeOf((*CfnBucket_ObjectLockRuleProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.OwnershipControlsProperty",
reflect.TypeOf((*CfnBucket_OwnershipControlsProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.OwnershipControlsRuleProperty",
reflect.TypeOf((*CfnBucket_OwnershipControlsRuleProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.PublicAccessBlockConfigurationProperty",
reflect.TypeOf((*CfnBucket_PublicAccessBlockConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.QueueConfigurationProperty",
reflect.TypeOf((*CfnBucket_QueueConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.RedirectAllRequestsToProperty",
reflect.TypeOf((*CfnBucket_RedirectAllRequestsToProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.RedirectRuleProperty",
reflect.TypeOf((*CfnBucket_RedirectRuleProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.ReplicaModificationsProperty",
reflect.TypeOf((*CfnBucket_ReplicaModificationsProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.ReplicationConfigurationProperty",
reflect.TypeOf((*CfnBucket_ReplicationConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.ReplicationDestinationProperty",
reflect.TypeOf((*CfnBucket_ReplicationDestinationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.ReplicationRuleAndOperatorProperty",
reflect.TypeOf((*CfnBucket_ReplicationRuleAndOperatorProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.ReplicationRuleFilterProperty",
reflect.TypeOf((*CfnBucket_ReplicationRuleFilterProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.ReplicationRuleProperty",
reflect.TypeOf((*CfnBucket_ReplicationRuleProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.ReplicationTimeProperty",
reflect.TypeOf((*CfnBucket_ReplicationTimeProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.ReplicationTimeValueProperty",
reflect.TypeOf((*CfnBucket_ReplicationTimeValueProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.RoutingRuleConditionProperty",
reflect.TypeOf((*CfnBucket_RoutingRuleConditionProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.RoutingRuleProperty",
reflect.TypeOf((*CfnBucket_RoutingRuleProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.RuleProperty",
reflect.TypeOf((*CfnBucket_RuleProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.S3KeyFilterProperty",
reflect.TypeOf((*CfnBucket_S3KeyFilterProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.ServerSideEncryptionByDefaultProperty",
reflect.TypeOf((*CfnBucket_ServerSideEncryptionByDefaultProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.ServerSideEncryptionRuleProperty",
reflect.TypeOf((*CfnBucket_ServerSideEncryptionRuleProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.SourceSelectionCriteriaProperty",
reflect.TypeOf((*CfnBucket_SourceSelectionCriteriaProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.SseKmsEncryptedObjectsProperty",
reflect.TypeOf((*CfnBucket_SseKmsEncryptedObjectsProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.StorageClassAnalysisProperty",
reflect.TypeOf((*CfnBucket_StorageClassAnalysisProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.TagFilterProperty",
reflect.TypeOf((*CfnBucket_TagFilterProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.TieringProperty",
reflect.TypeOf((*CfnBucket_TieringProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.TopicConfigurationProperty",
reflect.TypeOf((*CfnBucket_TopicConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.TransitionProperty",
reflect.TypeOf((*CfnBucket_TransitionProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.VersioningConfigurationProperty",
reflect.TypeOf((*CfnBucket_VersioningConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucket.WebsiteConfigurationProperty",
reflect.TypeOf((*CfnBucket_WebsiteConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterClass(
"aws-cdk-lib.aws_s3.CfnBucketPolicy",
reflect.TypeOf((*CfnBucketPolicy)(nil)).Elem(),
[]_jsii_.Member{
_jsii_.MemberMethod{JsiiMethod: "addDeletionOverride", GoMethod: "AddDeletionOverride"},
_jsii_.MemberMethod{JsiiMethod: "addDependsOn", GoMethod: "AddDependsOn"},
_jsii_.MemberMethod{JsiiMethod: "addMetadata", GoMethod: "AddMetadata"},
_jsii_.MemberMethod{JsiiMethod: "addOverride", GoMethod: "AddOverride"},
_jsii_.MemberMethod{JsiiMethod: "addPropertyDeletionOverride", GoMethod: "AddPropertyDeletionOverride"},
_jsii_.MemberMethod{JsiiMethod: "addPropertyOverride", GoMethod: "AddPropertyOverride"},
_jsii_.MemberMethod{JsiiMethod: "applyRemovalPolicy", GoMethod: "ApplyRemovalPolicy"},
_jsii_.MemberProperty{JsiiProperty: "bucket", GoGetter: "Bucket"},
_jsii_.MemberProperty{JsiiProperty: "cfnOptions", GoGetter: "CfnOptions"},
_jsii_.MemberProperty{JsiiProperty: "cfnProperties", GoGetter: "CfnProperties"},
_jsii_.MemberProperty{JsiiProperty: "cfnResourceType", GoGetter: "CfnResourceType"},
_jsii_.MemberProperty{JsiiProperty: "creationStack", GoGetter: "CreationStack"},
_jsii_.MemberMethod{JsiiMethod: "getAtt", GoMethod: "GetAtt"},
_jsii_.MemberMethod{JsiiMethod: "getMetadata", GoMethod: "GetMetadata"},
_jsii_.MemberMethod{JsiiMethod: "inspect", GoMethod: "Inspect"},
_jsii_.MemberProperty{JsiiProperty: "logicalId", GoGetter: "LogicalId"},
_jsii_.MemberProperty{JsiiProperty: "node", GoGetter: "Node"},
_jsii_.MemberMethod{JsiiMethod: "overrideLogicalId", GoMethod: "OverrideLogicalId"},
_jsii_.MemberProperty{JsiiProperty: "policyDocument", GoGetter: "PolicyDocument"},
_jsii_.MemberProperty{JsiiProperty: "ref", GoGetter: "Ref"},
_jsii_.MemberMethod{JsiiMethod: "renderProperties", GoMethod: "RenderProperties"},
_jsii_.MemberMethod{JsiiMethod: "shouldSynthesize", GoMethod: "ShouldSynthesize"},
_jsii_.MemberProperty{JsiiProperty: "stack", GoGetter: "Stack"},
_jsii_.MemberMethod{JsiiMethod: "toString", GoMethod: "ToString"},
_jsii_.MemberProperty{JsiiProperty: "updatedProperites", GoGetter: "UpdatedProperites"},
_jsii_.MemberProperty{JsiiProperty: "updatedProperties", GoGetter: "UpdatedProperties"},
_jsii_.MemberMethod{JsiiMethod: "validateProperties", GoMethod: "ValidateProperties"},
},
func() interface{} {
j := jsiiProxy_CfnBucketPolicy{}
_jsii_.InitJsiiProxy(&j.Type__awscdkCfnResource)
_jsii_.InitJsiiProxy(&j.Type__awscdkIInspectable)
return &j
},
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucketPolicyProps",
reflect.TypeOf((*CfnBucketPolicyProps)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnBucketProps",
reflect.TypeOf((*CfnBucketProps)(nil)).Elem(),
)
_jsii_.RegisterClass(
"aws-cdk-lib.aws_s3.CfnMultiRegionAccessPoint",
reflect.TypeOf((*CfnMultiRegionAccessPoint)(nil)).Elem(),
[]_jsii_.Member{
_jsii_.MemberMethod{JsiiMethod: "addDeletionOverride", GoMethod: "AddDeletionOverride"},
_jsii_.MemberMethod{JsiiMethod: "addDependsOn", GoMethod: "AddDependsOn"},
_jsii_.MemberMethod{JsiiMethod: "addMetadata", GoMethod: "AddMetadata"},
_jsii_.MemberMethod{JsiiMethod: "addOverride", GoMethod: "AddOverride"},
_jsii_.MemberMethod{JsiiMethod: "addPropertyDeletionOverride", GoMethod: "AddPropertyDeletionOverride"},
_jsii_.MemberMethod{JsiiMethod: "addPropertyOverride", GoMethod: "AddPropertyOverride"},
_jsii_.MemberMethod{JsiiMethod: "applyRemovalPolicy", GoMethod: "ApplyRemovalPolicy"},
_jsii_.MemberProperty{JsiiProperty: "attrAlias", GoGetter: "AttrAlias"},
_jsii_.MemberProperty{JsiiProperty: "attrCreatedAt", GoGetter: "AttrCreatedAt"},
_jsii_.MemberProperty{JsiiProperty: "cfnOptions", GoGetter: "CfnOptions"},
_jsii_.MemberProperty{JsiiProperty: "cfnProperties", GoGetter: "CfnProperties"},
_jsii_.MemberProperty{JsiiProperty: "cfnResourceType", GoGetter: "CfnResourceType"},
_jsii_.MemberProperty{JsiiProperty: "creationStack", GoGetter: "CreationStack"},
_jsii_.MemberMethod{JsiiMethod: "getAtt", GoMethod: "GetAtt"},
_jsii_.MemberMethod{JsiiMethod: "getMetadata", GoMethod: "GetMetadata"},
_jsii_.MemberMethod{JsiiMethod: "inspect", GoMethod: "Inspect"},
_jsii_.MemberProperty{JsiiProperty: "logicalId", GoGetter: "LogicalId"},
_jsii_.MemberProperty{JsiiProperty: "name", GoGetter: "Name"},
_jsii_.MemberProperty{JsiiProperty: "node", GoGetter: "Node"},
_jsii_.MemberMethod{JsiiMethod: "overrideLogicalId", GoMethod: "OverrideLogicalId"},
_jsii_.MemberProperty{JsiiProperty: "publicAccessBlockConfiguration", GoGetter: "PublicAccessBlockConfiguration"},
_jsii_.MemberProperty{JsiiProperty: "ref", GoGetter: "Ref"},
_jsii_.MemberProperty{JsiiProperty: "regions", GoGetter: "Regions"},
_jsii_.MemberMethod{JsiiMethod: "renderProperties", GoMethod: "RenderProperties"},
_jsii_.MemberMethod{JsiiMethod: "shouldSynthesize", GoMethod: "ShouldSynthesize"},
_jsii_.MemberProperty{JsiiProperty: "stack", GoGetter: "Stack"},
_jsii_.MemberMethod{JsiiMethod: "toString", GoMethod: "ToString"},
_jsii_.MemberProperty{JsiiProperty: "updatedProperites", GoGetter: "UpdatedProperites"},
_jsii_.MemberProperty{JsiiProperty: "updatedProperties", GoGetter: "UpdatedProperties"},
_jsii_.MemberMethod{JsiiMethod: "validateProperties", GoMethod: "ValidateProperties"},
},
func() interface{} {
j := jsiiProxy_CfnMultiRegionAccessPoint{}
_jsii_.InitJsiiProxy(&j.Type__awscdkCfnResource)
_jsii_.InitJsiiProxy(&j.Type__awscdkIInspectable)
return &j
},
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnMultiRegionAccessPoint.PublicAccessBlockConfigurationProperty",
reflect.TypeOf((*CfnMultiRegionAccessPoint_PublicAccessBlockConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnMultiRegionAccessPoint.RegionProperty",
reflect.TypeOf((*CfnMultiRegionAccessPoint_RegionProperty)(nil)).Elem(),
)
_jsii_.RegisterClass(
"aws-cdk-lib.aws_s3.CfnMultiRegionAccessPointPolicy",
reflect.TypeOf((*CfnMultiRegionAccessPointPolicy)(nil)).Elem(),
[]_jsii_.Member{
_jsii_.MemberMethod{JsiiMethod: "addDeletionOverride", GoMethod: "AddDeletionOverride"},
_jsii_.MemberMethod{JsiiMethod: "addDependsOn", GoMethod: "AddDependsOn"},
_jsii_.MemberMethod{JsiiMethod: "addMetadata", GoMethod: "AddMetadata"},
_jsii_.MemberMethod{JsiiMethod: "addOverride", GoMethod: "AddOverride"},
_jsii_.MemberMethod{JsiiMethod: "addPropertyDeletionOverride", GoMethod: "AddPropertyDeletionOverride"},
_jsii_.MemberMethod{JsiiMethod: "addPropertyOverride", GoMethod: "AddPropertyOverride"},
_jsii_.MemberMethod{JsiiMethod: "applyRemovalPolicy", GoMethod: "ApplyRemovalPolicy"},
_jsii_.MemberProperty{JsiiProperty: "cfnOptions", GoGetter: "CfnOptions"},
_jsii_.MemberProperty{JsiiProperty: "cfnProperties", GoGetter: "CfnProperties"},
_jsii_.MemberProperty{JsiiProperty: "cfnResourceType", GoGetter: "CfnResourceType"},
_jsii_.MemberProperty{JsiiProperty: "creationStack", GoGetter: "CreationStack"},
_jsii_.MemberMethod{JsiiMethod: "getAtt", GoMethod: "GetAtt"},
_jsii_.MemberMethod{JsiiMethod: "getMetadata", GoMethod: "GetMetadata"},
_jsii_.MemberMethod{JsiiMethod: "inspect", GoMethod: "Inspect"},
_jsii_.MemberProperty{JsiiProperty: "logicalId", GoGetter: "LogicalId"},
_jsii_.MemberProperty{JsiiProperty: "mrapName", GoGetter: "MrapName"},
_jsii_.MemberProperty{JsiiProperty: "node", GoGetter: "Node"},
_jsii_.MemberMethod{JsiiMethod: "overrideLogicalId", GoMethod: "OverrideLogicalId"},
_jsii_.MemberProperty{JsiiProperty: "policy", GoGetter: "Policy"},
_jsii_.MemberProperty{JsiiProperty: "ref", GoGetter: "Ref"},
_jsii_.MemberMethod{JsiiMethod: "renderProperties", GoMethod: "RenderProperties"},
_jsii_.MemberMethod{JsiiMethod: "shouldSynthesize", GoMethod: "ShouldSynthesize"},
_jsii_.MemberProperty{JsiiProperty: "stack", GoGetter: "Stack"},
_jsii_.MemberMethod{JsiiMethod: "toString", GoMethod: "ToString"},
_jsii_.MemberProperty{JsiiProperty: "updatedProperites", GoGetter: "UpdatedProperites"},
_jsii_.MemberProperty{JsiiProperty: "updatedProperties", GoGetter: "UpdatedProperties"},
_jsii_.MemberMethod{JsiiMethod: "validateProperties", GoMethod: "ValidateProperties"},
},
func() interface{} {
j := jsiiProxy_CfnMultiRegionAccessPointPolicy{}
_jsii_.InitJsiiProxy(&j.Type__awscdkCfnResource)
_jsii_.InitJsiiProxy(&j.Type__awscdkIInspectable)
return &j
},
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnMultiRegionAccessPointPolicyProps",
reflect.TypeOf((*CfnMultiRegionAccessPointPolicyProps)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnMultiRegionAccessPointProps",
reflect.TypeOf((*CfnMultiRegionAccessPointProps)(nil)).Elem(),
)
_jsii_.RegisterClass(
"aws-cdk-lib.aws_s3.CfnStorageLens",
reflect.TypeOf((*CfnStorageLens)(nil)).Elem(),
[]_jsii_.Member{
_jsii_.MemberMethod{JsiiMethod: "addDeletionOverride", GoMethod: "AddDeletionOverride"},
_jsii_.MemberMethod{JsiiMethod: "addDependsOn", GoMethod: "AddDependsOn"},
_jsii_.MemberMethod{JsiiMethod: "addMetadata", GoMethod: "AddMetadata"},
_jsii_.MemberMethod{JsiiMethod: "addOverride", GoMethod: "AddOverride"},
_jsii_.MemberMethod{JsiiMethod: "addPropertyDeletionOverride", GoMethod: "AddPropertyDeletionOverride"},
_jsii_.MemberMethod{JsiiMethod: "addPropertyOverride", GoMethod: "AddPropertyOverride"},
_jsii_.MemberMethod{JsiiMethod: "applyRemovalPolicy", GoMethod: "ApplyRemovalPolicy"},
_jsii_.MemberProperty{JsiiProperty: "attrStorageLensConfigurationStorageLensArn", GoGetter: "AttrStorageLensConfigurationStorageLensArn"},
_jsii_.MemberProperty{JsiiProperty: "cfnOptions", GoGetter: "CfnOptions"},
_jsii_.MemberProperty{JsiiProperty: "cfnProperties", GoGetter: "CfnProperties"},
_jsii_.MemberProperty{JsiiProperty: "cfnResourceType", GoGetter: "CfnResourceType"},
_jsii_.MemberProperty{JsiiProperty: "creationStack", GoGetter: "CreationStack"},
_jsii_.MemberMethod{JsiiMethod: "getAtt", GoMethod: "GetAtt"},
_jsii_.MemberMethod{JsiiMethod: "getMetadata", GoMethod: "GetMetadata"},
_jsii_.MemberMethod{JsiiMethod: "inspect", GoMethod: "Inspect"},
_jsii_.MemberProperty{JsiiProperty: "logicalId", GoGetter: "LogicalId"},
_jsii_.MemberProperty{JsiiProperty: "node", GoGetter: "Node"},
_jsii_.MemberMethod{JsiiMethod: "overrideLogicalId", GoMethod: "OverrideLogicalId"},
_jsii_.MemberProperty{JsiiProperty: "ref", GoGetter: "Ref"},
_jsii_.MemberMethod{JsiiMethod: "renderProperties", GoMethod: "RenderProperties"},
_jsii_.MemberMethod{JsiiMethod: "shouldSynthesize", GoMethod: "ShouldSynthesize"},
_jsii_.MemberProperty{JsiiProperty: "stack", GoGetter: "Stack"},
_jsii_.MemberProperty{JsiiProperty: "storageLensConfiguration", GoGetter: "StorageLensConfiguration"},
_jsii_.MemberProperty{JsiiProperty: "tags", GoGetter: "Tags"},
_jsii_.MemberMethod{JsiiMethod: "toString", GoMethod: "ToString"},
_jsii_.MemberProperty{JsiiProperty: "updatedProperites", GoGetter: "UpdatedProperites"},
_jsii_.MemberProperty{JsiiProperty: "updatedProperties", GoGetter: "UpdatedProperties"},
_jsii_.MemberMethod{JsiiMethod: "validateProperties", GoMethod: "ValidateProperties"},
},
func() interface{} {
j := jsiiProxy_CfnStorageLens{}
_jsii_.InitJsiiProxy(&j.Type__awscdkCfnResource)
_jsii_.InitJsiiProxy(&j.Type__awscdkIInspectable)
return &j
},
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnStorageLens.AccountLevelProperty",
reflect.TypeOf((*CfnStorageLens_AccountLevelProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnStorageLens.ActivityMetricsProperty",
reflect.TypeOf((*CfnStorageLens_ActivityMetricsProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnStorageLens.AwsOrgProperty",
reflect.TypeOf((*CfnStorageLens_AwsOrgProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnStorageLens.BucketLevelProperty",
reflect.TypeOf((*CfnStorageLens_BucketLevelProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnStorageLens.BucketsAndRegionsProperty",
reflect.TypeOf((*CfnStorageLens_BucketsAndRegionsProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnStorageLens.CloudWatchMetricsProperty",
reflect.TypeOf((*CfnStorageLens_CloudWatchMetricsProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnStorageLens.DataExportProperty",
reflect.TypeOf((*CfnStorageLens_DataExportProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnStorageLens.EncryptionProperty",
reflect.TypeOf((*CfnStorageLens_EncryptionProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnStorageLens.PrefixLevelProperty",
reflect.TypeOf((*CfnStorageLens_PrefixLevelProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnStorageLens.PrefixLevelStorageMetricsProperty",
reflect.TypeOf((*CfnStorageLens_PrefixLevelStorageMetricsProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnStorageLens.S3BucketDestinationProperty",
reflect.TypeOf((*CfnStorageLens_S3BucketDestinationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnStorageLens.SSEKMSProperty",
reflect.TypeOf((*CfnStorageLens_SSEKMSProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnStorageLens.SelectionCriteriaProperty",
reflect.TypeOf((*CfnStorageLens_SelectionCriteriaProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnStorageLens.StorageLensConfigurationProperty",
reflect.TypeOf((*CfnStorageLens_StorageLensConfigurationProperty)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CfnStorageLensProps",
reflect.TypeOf((*CfnStorageLensProps)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.CorsRule",
reflect.TypeOf((*CorsRule)(nil)).Elem(),
)
_jsii_.RegisterEnum(
"aws-cdk-lib.aws_s3.EventType",
reflect.TypeOf((*EventType)(nil)).Elem(),
map[string]interface{}{
"OBJECT_CREATED": EventType_OBJECT_CREATED,
"OBJECT_CREATED_PUT": EventType_OBJECT_CREATED_PUT,
"OBJECT_CREATED_POST": EventType_OBJECT_CREATED_POST,
"OBJECT_CREATED_COPY": EventType_OBJECT_CREATED_COPY,
"OBJECT_CREATED_COMPLETE_MULTIPART_UPLOAD": EventType_OBJECT_CREATED_COMPLETE_MULTIPART_UPLOAD,
"OBJECT_REMOVED": EventType_OBJECT_REMOVED,
"OBJECT_REMOVED_DELETE": EventType_OBJECT_REMOVED_DELETE,
"OBJECT_REMOVED_DELETE_MARKER_CREATED": EventType_OBJECT_REMOVED_DELETE_MARKER_CREATED,
"OBJECT_RESTORE_POST": EventType_OBJECT_RESTORE_POST,
"OBJECT_RESTORE_COMPLETED": EventType_OBJECT_RESTORE_COMPLETED,
"OBJECT_RESTORE_DELETE": EventType_OBJECT_RESTORE_DELETE,
"REDUCED_REDUNDANCY_LOST_OBJECT": EventType_REDUCED_REDUNDANCY_LOST_OBJECT,
"REPLICATION_OPERATION_FAILED_REPLICATION": EventType_REPLICATION_OPERATION_FAILED_REPLICATION,
"REPLICATION_OPERATION_MISSED_THRESHOLD": EventType_REPLICATION_OPERATION_MISSED_THRESHOLD,
"REPLICATION_OPERATION_REPLICATED_AFTER_THRESHOLD": EventType_REPLICATION_OPERATION_REPLICATED_AFTER_THRESHOLD,
"REPLICATION_OPERATION_NOT_TRACKED": EventType_REPLICATION_OPERATION_NOT_TRACKED,
"LIFECYCLE_EXPIRATION": EventType_LIFECYCLE_EXPIRATION,
"LIFECYCLE_EXPIRATION_DELETE": EventType_LIFECYCLE_EXPIRATION_DELETE,
"LIFECYCLE_EXPIRATION_DELETE_MARKER_CREATED": EventType_LIFECYCLE_EXPIRATION_DELETE_MARKER_CREATED,
"LIFECYCLE_TRANSITION": EventType_LIFECYCLE_TRANSITION,
"INTELLIGENT_TIERING": EventType_INTELLIGENT_TIERING,
"OBJECT_TAGGING": EventType_OBJECT_TAGGING,
"OBJECT_TAGGING_PUT": EventType_OBJECT_TAGGING_PUT,
"OBJECT_TAGGING_DELETE": EventType_OBJECT_TAGGING_DELETE,
"OBJECT_ACL_PUT": EventType_OBJECT_ACL_PUT,
},
)
_jsii_.RegisterEnum(
"aws-cdk-lib.aws_s3.HttpMethods",
reflect.TypeOf((*HttpMethods)(nil)).Elem(),
map[string]interface{}{
"GET": HttpMethods_GET,
"PUT": HttpMethods_PUT,
"HEAD": HttpMethods_HEAD,
"POST": HttpMethods_POST,
"DELETE": HttpMethods_DELETE,
},
)
_jsii_.RegisterInterface(
"aws-cdk-lib.aws_s3.IBucket",
reflect.TypeOf((*IBucket)(nil)).Elem(),
[]_jsii_.Member{
_jsii_.MemberMethod{JsiiMethod: "addEventNotification", GoMethod: "AddEventNotification"},
_jsii_.MemberMethod{JsiiMethod: "addObjectCreatedNotification", GoMethod: "AddObjectCreatedNotification"},
_jsii_.MemberMethod{JsiiMethod: "addObjectRemovedNotification", GoMethod: "AddObjectRemovedNotification"},
_jsii_.MemberMethod{JsiiMethod: "addToResourcePolicy", GoMethod: "AddToResourcePolicy"},
_jsii_.MemberMethod{JsiiMethod: "applyRemovalPolicy", GoMethod: "ApplyRemovalPolicy"},
_jsii_.MemberMethod{JsiiMethod: "arnForObjects", GoMethod: "ArnForObjects"},
_jsii_.MemberProperty{JsiiProperty: "bucketArn", GoGetter: "BucketArn"},
_jsii_.MemberProperty{JsiiProperty: "bucketDomainName", GoGetter: "BucketDomainName"},
_jsii_.MemberProperty{JsiiProperty: "bucketDualStackDomainName", GoGetter: "BucketDualStackDomainName"},
_jsii_.MemberProperty{JsiiProperty: "bucketName", GoGetter: "BucketName"},
_jsii_.MemberProperty{JsiiProperty: "bucketRegionalDomainName", GoGetter: "BucketRegionalDomainName"},
_jsii_.MemberProperty{JsiiProperty: "bucketWebsiteDomainName", GoGetter: "BucketWebsiteDomainName"},
_jsii_.MemberProperty{JsiiProperty: "bucketWebsiteUrl", GoGetter: "BucketWebsiteUrl"},
_jsii_.MemberMethod{JsiiMethod: "enableEventBridgeNotification", GoMethod: "EnableEventBridgeNotification"},
_jsii_.MemberProperty{JsiiProperty: "encryptionKey", GoGetter: "EncryptionKey"},
_jsii_.MemberProperty{JsiiProperty: "env", GoGetter: "Env"},
_jsii_.MemberMethod{JsiiMethod: "grantDelete", GoMethod: "GrantDelete"},
_jsii_.MemberMethod{JsiiMethod: "grantPublicAccess", GoMethod: "GrantPublicAccess"},
_jsii_.MemberMethod{JsiiMethod: "grantPut", GoMethod: "GrantPut"},
_jsii_.MemberMethod{JsiiMethod: "grantPutAcl", GoMethod: "GrantPutAcl"},
_jsii_.MemberMethod{JsiiMethod: "grantRead", GoMethod: "GrantRead"},
_jsii_.MemberMethod{JsiiMethod: "grantReadWrite", GoMethod: "GrantReadWrite"},
_jsii_.MemberMethod{JsiiMethod: "grantWrite", GoMethod: "GrantWrite"},
_jsii_.MemberProperty{JsiiProperty: "isWebsite", GoGetter: "IsWebsite"},
_jsii_.MemberProperty{JsiiProperty: "node", GoGetter: "Node"},
_jsii_.MemberMethod{JsiiMethod: "onCloudTrailEvent", GoMethod: "OnCloudTrailEvent"},
_jsii_.MemberMethod{JsiiMethod: "onCloudTrailPutObject", GoMethod: "OnCloudTrailPutObject"},
_jsii_.MemberMethod{JsiiMethod: "onCloudTrailWriteObject", GoMethod: "OnCloudTrailWriteObject"},
_jsii_.MemberProperty{JsiiProperty: "policy", GoGetter: "Policy"},
_jsii_.MemberMethod{JsiiMethod: "s3UrlForObject", GoMethod: "S3UrlForObject"},
_jsii_.MemberProperty{JsiiProperty: "stack", GoGetter: "Stack"},
_jsii_.MemberMethod{JsiiMethod: "transferAccelerationUrlForObject", GoMethod: "TransferAccelerationUrlForObject"},
_jsii_.MemberMethod{JsiiMethod: "urlForObject", GoMethod: "UrlForObject"},
_jsii_.MemberMethod{JsiiMethod: "virtualHostedUrlForObject", GoMethod: "VirtualHostedUrlForObject"},
},
func() interface{} {
j := jsiiProxy_IBucket{}
_jsii_.InitJsiiProxy(&j.Type__awscdkIResource)
return &j
},
)
_jsii_.RegisterInterface(
"aws-cdk-lib.aws_s3.IBucketNotificationDestination",
reflect.TypeOf((*IBucketNotificationDestination)(nil)).Elem(),
[]_jsii_.Member{
_jsii_.MemberMethod{JsiiMethod: "bind", GoMethod: "Bind"},
},
func() interface{} {
return &jsiiProxy_IBucketNotificationDestination{}
},
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.IntelligentTieringConfiguration",
reflect.TypeOf((*IntelligentTieringConfiguration)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.Inventory",
reflect.TypeOf((*Inventory)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.InventoryDestination",
reflect.TypeOf((*InventoryDestination)(nil)).Elem(),
)
_jsii_.RegisterEnum(
"aws-cdk-lib.aws_s3.InventoryFormat",
reflect.TypeOf((*InventoryFormat)(nil)).Elem(),
map[string]interface{}{
"CSV": InventoryFormat_CSV,
"PARQUET": InventoryFormat_PARQUET,
"ORC": InventoryFormat_ORC,
},
)
_jsii_.RegisterEnum(
"aws-cdk-lib.aws_s3.InventoryFrequency",
reflect.TypeOf((*InventoryFrequency)(nil)).Elem(),
map[string]interface{}{
"DAILY": InventoryFrequency_DAILY,
"WEEKLY": InventoryFrequency_WEEKLY,
},
)
_jsii_.RegisterEnum(
"aws-cdk-lib.aws_s3.InventoryObjectVersion",
reflect.TypeOf((*InventoryObjectVersion)(nil)).Elem(),
map[string]interface{}{
"ALL": InventoryObjectVersion_ALL,
"CURRENT": InventoryObjectVersion_CURRENT,
},
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.LifecycleRule",
reflect.TypeOf((*LifecycleRule)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.Location",
reflect.TypeOf((*Location)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.NoncurrentVersionTransition",
reflect.TypeOf((*NoncurrentVersionTransition)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.NotificationKeyFilter",
reflect.TypeOf((*NotificationKeyFilter)(nil)).Elem(),
)
_jsii_.RegisterEnum(
"aws-cdk-lib.aws_s3.ObjectOwnership",
reflect.TypeOf((*ObjectOwnership)(nil)).Elem(),
map[string]interface{}{
"BUCKET_OWNER_ENFORCED": ObjectOwnership_BUCKET_OWNER_ENFORCED,
"BUCKET_OWNER_PREFERRED": ObjectOwnership_BUCKET_OWNER_PREFERRED,
"OBJECT_WRITER": ObjectOwnership_OBJECT_WRITER,
},
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.OnCloudTrailBucketEventOptions",
reflect.TypeOf((*OnCloudTrailBucketEventOptions)(nil)).Elem(),
)
_jsii_.RegisterEnum(
"aws-cdk-lib.aws_s3.RedirectProtocol",
reflect.TypeOf((*RedirectProtocol)(nil)).Elem(),
map[string]interface{}{
"HTTP": RedirectProtocol_HTTP,
"HTTPS": RedirectProtocol_HTTPS,
},
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.RedirectTarget",
reflect.TypeOf((*RedirectTarget)(nil)).Elem(),
)
_jsii_.RegisterClass(
"aws-cdk-lib.aws_s3.ReplaceKey",
reflect.TypeOf((*ReplaceKey)(nil)).Elem(),
[]_jsii_.Member{
_jsii_.MemberProperty{JsiiProperty: "prefixWithKey", GoGetter: "PrefixWithKey"},
_jsii_.MemberProperty{JsiiProperty: "withKey", GoGetter: "WithKey"},
},
func() interface{} {
return &jsiiProxy_ReplaceKey{}
},
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.RoutingRule",
reflect.TypeOf((*RoutingRule)(nil)).Elem(),
)
_jsii_.RegisterStruct(
"aws-cdk-lib.aws_s3.RoutingRuleCondition",
reflect.TypeOf((*RoutingRuleCondition)(nil)).Elem(),
)
_jsii_.RegisterClass(