@aws-sdk/client-redshift-serverless 3.295.0 → 3.297.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/dist-types/RedshiftServerless.d.ts +41 -0
  2. package/dist-types/RedshiftServerlessClient.d.ts +24 -4
  3. package/dist-types/commands/ConvertRecoveryPointToSnapshotCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateEndpointAccessCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateNamespaceCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateSnapshotCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateUsageLimitCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateWorkgroupCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteEndpointAccessCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteNamespaceCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteSnapshotCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteUsageLimitCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteWorkgroupCommand.d.ts +16 -0
  15. package/dist-types/commands/GetCredentialsCommand.d.ts +16 -0
  16. package/dist-types/commands/GetEndpointAccessCommand.d.ts +16 -0
  17. package/dist-types/commands/GetNamespaceCommand.d.ts +16 -0
  18. package/dist-types/commands/GetRecoveryPointCommand.d.ts +16 -0
  19. package/dist-types/commands/GetResourcePolicyCommand.d.ts +16 -0
  20. package/dist-types/commands/GetSnapshotCommand.d.ts +16 -0
  21. package/dist-types/commands/GetTableRestoreStatusCommand.d.ts +16 -0
  22. package/dist-types/commands/GetUsageLimitCommand.d.ts +16 -0
  23. package/dist-types/commands/GetWorkgroupCommand.d.ts +16 -0
  24. package/dist-types/commands/ListEndpointAccessCommand.d.ts +16 -0
  25. package/dist-types/commands/ListNamespacesCommand.d.ts +16 -0
  26. package/dist-types/commands/ListRecoveryPointsCommand.d.ts +16 -0
  27. package/dist-types/commands/ListSnapshotsCommand.d.ts +16 -0
  28. package/dist-types/commands/ListTableRestoreStatusCommand.d.ts +16 -0
  29. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  30. package/dist-types/commands/ListUsageLimitsCommand.d.ts +16 -0
  31. package/dist-types/commands/ListWorkgroupsCommand.d.ts +16 -0
  32. package/dist-types/commands/PutResourcePolicyCommand.d.ts +16 -0
  33. package/dist-types/commands/RestoreFromRecoveryPointCommand.d.ts +16 -0
  34. package/dist-types/commands/RestoreFromSnapshotCommand.d.ts +16 -0
  35. package/dist-types/commands/RestoreTableFromSnapshotCommand.d.ts +16 -0
  36. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  37. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  38. package/dist-types/commands/UpdateEndpointAccessCommand.d.ts +16 -0
  39. package/dist-types/commands/UpdateNamespaceCommand.d.ts +16 -0
  40. package/dist-types/commands/UpdateSnapshotCommand.d.ts +16 -0
  41. package/dist-types/commands/UpdateUsageLimitCommand.d.ts +16 -0
  42. package/dist-types/commands/UpdateWorkgroupCommand.d.ts +16 -0
  43. package/dist-types/models/RedshiftServerlessServiceException.d.ts +2 -0
  44. package/dist-types/models/models_0.d.ts +289 -4
  45. package/dist-types/pagination/Interfaces.d.ts +3 -0
  46. package/dist-types/pagination/ListEndpointAccessPaginator.d.ts +3 -0
  47. package/dist-types/pagination/ListNamespacesPaginator.d.ts +3 -0
  48. package/dist-types/pagination/ListRecoveryPointsPaginator.d.ts +3 -0
  49. package/dist-types/pagination/ListSnapshotsPaginator.d.ts +3 -0
  50. package/dist-types/pagination/ListTableRestoreStatusPaginator.d.ts +3 -0
  51. package/dist-types/pagination/ListUsageLimitsPaginator.d.ts +3 -0
  52. package/dist-types/pagination/ListWorkgroupsPaginator.d.ts +3 -0
  53. package/package.json +29 -29
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { RedshiftServerlessServiceException as __BaseException } from "./RedshiftServerlessServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>You do not have sufficient access to perform this action.</p>
5
6
  */
6
7
  export declare class AccessDeniedException extends __BaseException {
@@ -13,6 +14,7 @@ export declare class AccessDeniedException extends __BaseException {
13
14
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
15
  }
15
16
  /**
17
+ * @public
16
18
  * <p>An array of key-value pairs to set for advanced control over Amazon Redshift Serverless.</p>
17
19
  */
18
20
  export interface ConfigParameter {
@@ -30,6 +32,7 @@ export interface ConfigParameter {
30
32
  parameterValue?: string;
31
33
  }
32
34
  /**
35
+ * @public
33
36
  * <p>The submitted action has conflicts.</p>
34
37
  */
35
38
  export declare class ConflictException extends __BaseException {
@@ -41,6 +44,7 @@ export declare class ConflictException extends __BaseException {
41
44
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
42
45
  }
43
46
  /**
47
+ * @public
44
48
  * <p>A map of key-value pairs.</p>
45
49
  */
46
50
  export interface Tag {
@@ -53,6 +57,9 @@ export interface Tag {
53
57
  */
54
58
  value: string | undefined;
55
59
  }
60
+ /**
61
+ * @public
62
+ */
56
63
  export interface ConvertRecoveryPointToSnapshotRequest {
57
64
  /**
58
65
  * <p>The unique identifier of the recovery point.</p>
@@ -72,6 +79,9 @@ export interface ConvertRecoveryPointToSnapshotRequest {
72
79
  */
73
80
  tags?: Tag[];
74
81
  }
82
+ /**
83
+ * @public
84
+ */
75
85
  export declare enum SnapshotStatus {
76
86
  AVAILABLE = "AVAILABLE",
77
87
  CANCELLED = "CANCELLED",
@@ -81,6 +91,7 @@ export declare enum SnapshotStatus {
81
91
  FAILED = "FAILED"
82
92
  }
83
93
  /**
94
+ * @public
84
95
  * <p>A snapshot object that contains databases.</p>
85
96
  */
86
97
  export interface Snapshot {
@@ -166,6 +177,9 @@ export interface Snapshot {
166
177
  */
167
178
  accountsWithProvisionedRestoreAccess?: string[];
168
179
  }
180
+ /**
181
+ * @public
182
+ */
169
183
  export interface ConvertRecoveryPointToSnapshotResponse {
170
184
  /**
171
185
  * <p>The snapshot converted from the recovery point.</p>
@@ -173,6 +187,7 @@ export interface ConvertRecoveryPointToSnapshotResponse {
173
187
  snapshot?: Snapshot;
174
188
  }
175
189
  /**
190
+ * @public
176
191
  * <p>The request processing has failed because of an unknown error, exception or failure.</p>
177
192
  */
178
193
  export declare class InternalServerException extends __BaseException {
@@ -185,6 +200,7 @@ export declare class InternalServerException extends __BaseException {
185
200
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
186
201
  }
187
202
  /**
203
+ * @public
188
204
  * <p>The resource could not be found.</p>
189
205
  */
190
206
  export declare class ResourceNotFoundException extends __BaseException {
@@ -200,6 +216,7 @@ export declare class ResourceNotFoundException extends __BaseException {
200
216
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
201
217
  }
202
218
  /**
219
+ * @public
203
220
  * <p>The service limit was exceeded.</p>
204
221
  */
205
222
  export declare class ServiceQuotaExceededException extends __BaseException {
@@ -211,6 +228,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
211
228
  constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
212
229
  }
213
230
  /**
231
+ * @public
214
232
  * <p>The request exceeded the number of tags allowed for a resource.</p>
215
233
  */
216
234
  export declare class TooManyTagsException extends __BaseException {
@@ -226,6 +244,7 @@ export declare class TooManyTagsException extends __BaseException {
226
244
  constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
227
245
  }
228
246
  /**
247
+ * @public
229
248
  * <p>The input failed to satisfy the constraints specified by an AWS service.</p>
230
249
  */
231
250
  export declare class ValidationException extends __BaseException {
@@ -236,6 +255,9 @@ export declare class ValidationException extends __BaseException {
236
255
  */
237
256
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
238
257
  }
258
+ /**
259
+ * @public
260
+ */
239
261
  export interface CreateEndpointAccessRequest {
240
262
  /**
241
263
  * <p>The name of the VPC endpoint. An endpoint name must contain 1-30 characters.
@@ -259,6 +281,7 @@ export interface CreateEndpointAccessRequest {
259
281
  vpcSecurityGroupIds?: string[];
260
282
  }
261
283
  /**
284
+ * @public
262
285
  * <p>Contains information about a network interface
263
286
  * in an Amazon Redshift Serverless managed VPC endpoint.
264
287
  * </p>
@@ -282,6 +305,7 @@ export interface NetworkInterface {
282
305
  availabilityZone?: string;
283
306
  }
284
307
  /**
308
+ * @public
285
309
  * <p>The connection endpoint for connecting to Amazon Redshift Serverless through the proxy.</p>
286
310
  */
287
311
  export interface VpcEndpoint {
@@ -299,6 +323,7 @@ export interface VpcEndpoint {
299
323
  networkInterfaces?: NetworkInterface[];
300
324
  }
301
325
  /**
326
+ * @public
302
327
  * <p>Describes the members of a VPC security group.</p>
303
328
  */
304
329
  export interface VpcSecurityGroupMembership {
@@ -312,6 +337,7 @@ export interface VpcSecurityGroupMembership {
312
337
  status?: string;
313
338
  }
314
339
  /**
340
+ * @public
315
341
  * <p>Information about an Amazon Redshift Serverless VPC endpoint.</p>
316
342
  */
317
343
  export interface EndpointAccess {
@@ -357,17 +383,26 @@ export interface EndpointAccess {
357
383
  */
358
384
  endpointArn?: string;
359
385
  }
386
+ /**
387
+ * @public
388
+ */
360
389
  export interface CreateEndpointAccessResponse {
361
390
  /**
362
391
  * <p>The created VPC endpoint.</p>
363
392
  */
364
393
  endpoint?: EndpointAccess;
365
394
  }
395
+ /**
396
+ * @public
397
+ */
366
398
  export declare enum LogExport {
367
399
  CONNECTION_LOG = "connectionlog",
368
400
  USER_ACTIVITY_LOG = "useractivitylog",
369
401
  USER_LOG = "userlog"
370
402
  }
403
+ /**
404
+ * @public
405
+ */
371
406
  export interface CreateNamespaceRequest {
372
407
  /**
373
408
  * <p>The name of the namespace.</p>
@@ -407,12 +442,16 @@ export interface CreateNamespaceRequest {
407
442
  */
408
443
  tags?: Tag[];
409
444
  }
445
+ /**
446
+ * @public
447
+ */
410
448
  export declare enum NamespaceStatus {
411
449
  AVAILABLE = "AVAILABLE",
412
450
  DELETING = "DELETING",
413
451
  MODIFYING = "MODIFYING"
414
452
  }
415
453
  /**
454
+ * @public
416
455
  * <p>A collection of database objects and users.</p>
417
456
  */
418
457
  export interface Namespace {
@@ -464,12 +503,18 @@ export interface Namespace {
464
503
  */
465
504
  creationDate?: Date;
466
505
  }
506
+ /**
507
+ * @public
508
+ */
467
509
  export interface CreateNamespaceResponse {
468
510
  /**
469
511
  * <p>The created namespace object.</p>
470
512
  */
471
513
  namespace?: Namespace;
472
514
  }
515
+ /**
516
+ * @public
517
+ */
473
518
  export interface CreateSnapshotRequest {
474
519
  /**
475
520
  * <p>The namespace to create a snapshot for.</p>
@@ -488,26 +533,41 @@ export interface CreateSnapshotRequest {
488
533
  */
489
534
  tags?: Tag[];
490
535
  }
536
+ /**
537
+ * @public
538
+ */
491
539
  export interface CreateSnapshotResponse {
492
540
  /**
493
541
  * <p>The created snapshot object.</p>
494
542
  */
495
543
  snapshot?: Snapshot;
496
544
  }
545
+ /**
546
+ * @public
547
+ */
497
548
  export declare enum UsageLimitBreachAction {
498
549
  DEACTIVATE = "deactivate",
499
550
  EMIT_METRIC = "emit-metric",
500
551
  LOG = "log"
501
552
  }
553
+ /**
554
+ * @public
555
+ */
502
556
  export declare enum UsageLimitPeriod {
503
557
  DAILY = "daily",
504
558
  MONTHLY = "monthly",
505
559
  WEEKLY = "weekly"
506
560
  }
561
+ /**
562
+ * @public
563
+ */
507
564
  export declare enum UsageLimitUsageType {
508
565
  CROSS_REGION_DATASHARING = "cross-region-datasharing",
509
566
  SERVERLESS_COMPUTE = "serverless-compute"
510
567
  }
568
+ /**
569
+ * @public
570
+ */
511
571
  export interface CreateUsageLimitRequest {
512
572
  /**
513
573
  * <p>The Amazon Resource Name (ARN) of the Amazon Redshift Serverless resource to create the usage limit for.</p>
@@ -532,6 +592,7 @@ export interface CreateUsageLimitRequest {
532
592
  breachAction?: UsageLimitBreachAction | string;
533
593
  }
534
594
  /**
595
+ * @public
535
596
  * <p>The usage limit object.</p>
536
597
  */
537
598
  export interface UsageLimit {
@@ -564,12 +625,18 @@ export interface UsageLimit {
564
625
  */
565
626
  breachAction?: UsageLimitBreachAction | string;
566
627
  }
628
+ /**
629
+ * @public
630
+ */
567
631
  export interface CreateUsageLimitResponse {
568
632
  /**
569
633
  * <p>The returned usage limit object.</p>
570
634
  */
571
635
  usageLimit?: UsageLimit;
572
636
  }
637
+ /**
638
+ * @public
639
+ */
573
640
  export interface CreateWorkgroupRequest {
574
641
  /**
575
642
  * <p>The name of the created workgroup.</p>
@@ -618,6 +685,7 @@ export interface CreateWorkgroupRequest {
618
685
  port?: number;
619
686
  }
620
687
  /**
688
+ * @public
621
689
  * <p>The VPC endpoint object.</p>
622
690
  */
623
691
  export interface Endpoint {
@@ -634,6 +702,9 @@ export interface Endpoint {
634
702
  */
635
703
  vpcEndpoints?: VpcEndpoint[];
636
704
  }
705
+ /**
706
+ * @public
707
+ */
637
708
  export declare enum WorkgroupStatus {
638
709
  AVAILABLE = "AVAILABLE",
639
710
  CREATING = "CREATING",
@@ -641,6 +712,7 @@ export declare enum WorkgroupStatus {
641
712
  MODIFYING = "MODIFYING"
642
713
  }
643
714
  /**
715
+ * @public
644
716
  * <p>The collection of computing resources from which an endpoint is created.</p>
645
717
  */
646
718
  export interface Workgroup {
@@ -706,6 +778,9 @@ export interface Workgroup {
706
778
  */
707
779
  port?: number;
708
780
  }
781
+ /**
782
+ * @public
783
+ */
709
784
  export interface CreateWorkgroupResponse {
710
785
  /**
711
786
  * <p>The created workgroup object.</p>
@@ -713,6 +788,7 @@ export interface CreateWorkgroupResponse {
713
788
  workgroup?: Workgroup;
714
789
  }
715
790
  /**
791
+ * @public
716
792
  * <p>There is an insufficient capacity to perform the action.</p>
717
793
  */
718
794
  export declare class InsufficientCapacityException extends __BaseException {
@@ -724,30 +800,45 @@ export declare class InsufficientCapacityException extends __BaseException {
724
800
  */
725
801
  constructor(opts: __ExceptionOptionType<InsufficientCapacityException, __BaseException>);
726
802
  }
803
+ /**
804
+ * @public
805
+ */
727
806
  export interface DeleteEndpointAccessRequest {
728
807
  /**
729
808
  * <p>The name of the VPC endpoint to delete.</p>
730
809
  */
731
810
  endpointName: string | undefined;
732
811
  }
812
+ /**
813
+ * @public
814
+ */
733
815
  export interface DeleteEndpointAccessResponse {
734
816
  /**
735
817
  * <p>The deleted VPC endpoint.</p>
736
818
  */
737
819
  endpoint?: EndpointAccess;
738
820
  }
821
+ /**
822
+ * @public
823
+ */
739
824
  export interface GetEndpointAccessRequest {
740
825
  /**
741
826
  * <p>The name of the VPC endpoint to return information for.</p>
742
827
  */
743
828
  endpointName: string | undefined;
744
829
  }
830
+ /**
831
+ * @public
832
+ */
745
833
  export interface GetEndpointAccessResponse {
746
834
  /**
747
835
  * <p>The returned VPC endpoint.</p>
748
836
  */
749
837
  endpoint?: EndpointAccess;
750
838
  }
839
+ /**
840
+ * @public
841
+ */
751
842
  export interface ListEndpointAccessRequest {
752
843
  /**
753
844
  * <p>If your initial <code>ListEndpointAccess</code> operation returns a <code>nextToken</code>,
@@ -769,6 +860,9 @@ export interface ListEndpointAccessRequest {
769
860
  */
770
861
  vpcId?: string;
771
862
  }
863
+ /**
864
+ * @public
865
+ */
772
866
  export interface ListEndpointAccessResponse {
773
867
  /**
774
868
  * <p>When <code>nextToken</code> is returned, there are more results available.
@@ -781,6 +875,9 @@ export interface ListEndpointAccessResponse {
781
875
  */
782
876
  endpoints: EndpointAccess[] | undefined;
783
877
  }
878
+ /**
879
+ * @public
880
+ */
784
881
  export interface UpdateEndpointAccessRequest {
785
882
  /**
786
883
  * <p>The name of the VPC endpoint to update.</p>
@@ -791,12 +888,18 @@ export interface UpdateEndpointAccessRequest {
791
888
  */
792
889
  vpcSecurityGroupIds?: string[];
793
890
  }
891
+ /**
892
+ * @public
893
+ */
794
894
  export interface UpdateEndpointAccessResponse {
795
895
  /**
796
896
  * <p>The updated VPC endpoint.</p>
797
897
  */
798
898
  endpoint?: EndpointAccess;
799
899
  }
900
+ /**
901
+ * @public
902
+ */
800
903
  export interface DeleteNamespaceRequest {
801
904
  /**
802
905
  * <p>The name of the namespace to delete.</p>
@@ -811,56 +914,86 @@ export interface DeleteNamespaceRequest {
811
914
  */
812
915
  finalSnapshotRetentionPeriod?: number;
813
916
  }
917
+ /**
918
+ * @public
919
+ */
814
920
  export interface DeleteNamespaceResponse {
815
921
  /**
816
922
  * <p>The deleted namespace object.</p>
817
923
  */
818
924
  namespace: Namespace | undefined;
819
925
  }
926
+ /**
927
+ * @public
928
+ */
820
929
  export interface DeleteResourcePolicyRequest {
821
930
  /**
822
931
  * <p>The Amazon Resource Name (ARN) of the policy to delete.</p>
823
932
  */
824
933
  resourceArn: string | undefined;
825
934
  }
935
+ /**
936
+ * @public
937
+ */
826
938
  export interface DeleteResourcePolicyResponse {
827
939
  }
940
+ /**
941
+ * @public
942
+ */
828
943
  export interface DeleteSnapshotRequest {
829
944
  /**
830
945
  * <p>The name of the snapshot to be deleted.</p>
831
946
  */
832
947
  snapshotName: string | undefined;
833
948
  }
949
+ /**
950
+ * @public
951
+ */
834
952
  export interface DeleteSnapshotResponse {
835
953
  /**
836
954
  * <p>The deleted snapshot object.</p>
837
955
  */
838
956
  snapshot?: Snapshot;
839
957
  }
958
+ /**
959
+ * @public
960
+ */
840
961
  export interface DeleteUsageLimitRequest {
841
962
  /**
842
963
  * <p>The unique identifier of the usage limit to delete.</p>
843
964
  */
844
965
  usageLimitId: string | undefined;
845
966
  }
967
+ /**
968
+ * @public
969
+ */
846
970
  export interface DeleteUsageLimitResponse {
847
971
  /**
848
972
  * <p>The deleted usage limit object.</p>
849
973
  */
850
974
  usageLimit?: UsageLimit;
851
975
  }
976
+ /**
977
+ * @public
978
+ */
852
979
  export interface DeleteWorkgroupRequest {
853
980
  /**
854
981
  * <p>The name of the workgroup to be deleted.</p>
855
982
  */
856
983
  workgroupName: string | undefined;
857
984
  }
985
+ /**
986
+ * @public
987
+ */
858
988
  export interface DeleteWorkgroupResponse {
859
989
  /**
860
990
  * <p>The deleted workgroup object.</p>
861
991
  */
862
992
  workgroup: Workgroup | undefined;
863
993
  }
994
+ /**
995
+ * @public
996
+ */
864
997
  export interface GetCredentialsRequest {
865
998
  /**
866
999
  * <p>The name of the workgroup associated with the database.</p>
@@ -896,6 +1029,9 @@ export interface GetCredentialsRequest {
896
1029
  */
897
1030
  durationSeconds?: number;
898
1031
  }
1032
+ /**
1033
+ * @public
1034
+ */
899
1035
  export interface GetCredentialsResponse {
900
1036
  /**
901
1037
  * <p>A database user name that is authorized to log on to the database <code>DbName</code>
@@ -919,18 +1055,27 @@ export interface GetCredentialsResponse {
919
1055
  */
920
1056
  nextRefreshTime?: Date;
921
1057
  }
1058
+ /**
1059
+ * @public
1060
+ */
922
1061
  export interface GetNamespaceRequest {
923
1062
  /**
924
1063
  * <p>The name of the namespace to retrieve information for.</p>
925
1064
  */
926
1065
  namespaceName: string | undefined;
927
1066
  }
1067
+ /**
1068
+ * @public
1069
+ */
928
1070
  export interface GetNamespaceResponse {
929
1071
  /**
930
1072
  * <p>The returned namespace object.</p>
931
1073
  */
932
1074
  namespace: Namespace | undefined;
933
1075
  }
1076
+ /**
1077
+ * @public
1078
+ */
934
1079
  export interface GetRecoveryPointRequest {
935
1080
  /**
936
1081
  * <p>The unique identifier of the recovery point to return information for.</p>
@@ -938,6 +1083,7 @@ export interface GetRecoveryPointRequest {
938
1083
  recoveryPointId: string | undefined;
939
1084
  }
940
1085
  /**
1086
+ * @public
941
1087
  * <p>The automatically created recovery point of a namespace.
942
1088
  * Recovery points are created every 30 minutes and kept for 24 hours.</p>
943
1089
  */
@@ -967,12 +1113,18 @@ export interface RecoveryPoint {
967
1113
  */
968
1114
  namespaceArn?: string;
969
1115
  }
1116
+ /**
1117
+ * @public
1118
+ */
970
1119
  export interface GetRecoveryPointResponse {
971
1120
  /**
972
1121
  * <p>The returned recovery point object.</p>
973
1122
  */
974
1123
  recoveryPoint?: RecoveryPoint;
975
1124
  }
1125
+ /**
1126
+ * @public
1127
+ */
976
1128
  export interface GetResourcePolicyRequest {
977
1129
  /**
978
1130
  * <p>The Amazon Resource Name (ARN) of the resource to return.</p>
@@ -980,6 +1132,7 @@ export interface GetResourcePolicyRequest {
980
1132
  resourceArn: string | undefined;
981
1133
  }
982
1134
  /**
1135
+ * @public
983
1136
  * <p>The resource policy object. Currently, you can use policies to share snapshots across Amazon Web Services accounts.</p>
984
1137
  */
985
1138
  export interface ResourcePolicy {
@@ -992,12 +1145,18 @@ export interface ResourcePolicy {
992
1145
  */
993
1146
  policy?: string;
994
1147
  }
1148
+ /**
1149
+ * @public
1150
+ */
995
1151
  export interface GetResourcePolicyResponse {
996
1152
  /**
997
1153
  * <p>The returned resource policy.</p>
998
1154
  */
999
1155
  resourcePolicy?: ResourcePolicy;
1000
1156
  }
1157
+ /**
1158
+ * @public
1159
+ */
1001
1160
  export interface GetSnapshotRequest {
1002
1161
  /**
1003
1162
  * <p>The name of the snapshot to return.</p>
@@ -1012,12 +1171,18 @@ export interface GetSnapshotRequest {
1012
1171
  */
1013
1172
  snapshotArn?: string;
1014
1173
  }
1174
+ /**
1175
+ * @public
1176
+ */
1015
1177
  export interface GetSnapshotResponse {
1016
1178
  /**
1017
1179
  * <p>The returned snapshot object.</p>
1018
1180
  */
1019
1181
  snapshot?: Snapshot;
1020
1182
  }
1183
+ /**
1184
+ * @public
1185
+ */
1021
1186
  export interface GetTableRestoreStatusRequest {
1022
1187
  /**
1023
1188
  * <p>The ID of the <code>RestoreTableFromSnapshot</code> request to return status for.</p>
@@ -1025,6 +1190,7 @@ export interface GetTableRestoreStatusRequest {
1025
1190
  tableRestoreRequestId: string | undefined;
1026
1191
  }
1027
1192
  /**
1193
+ * @public
1028
1194
  * <p>Contains information about a table restore request.</p>
1029
1195
  */
1030
1196
  export interface TableRestoreStatus {
@@ -1092,6 +1258,9 @@ export interface TableRestoreStatus {
1092
1258
  */
1093
1259
  newTableName?: string;
1094
1260
  }
1261
+ /**
1262
+ * @public
1263
+ */
1095
1264
  export interface GetTableRestoreStatusResponse {
1096
1265
  /**
1097
1266
  * <p>The returned <code>TableRestoreStatus</code> object that contains information about
@@ -1099,24 +1268,36 @@ export interface GetTableRestoreStatusResponse {
1099
1268
  */
1100
1269
  tableRestoreStatus?: TableRestoreStatus;
1101
1270
  }
1271
+ /**
1272
+ * @public
1273
+ */
1102
1274
  export interface GetUsageLimitRequest {
1103
1275
  /**
1104
1276
  * <p>The unique identifier of the usage limit to return information for.</p>
1105
1277
  */
1106
1278
  usageLimitId: string | undefined;
1107
1279
  }
1280
+ /**
1281
+ * @public
1282
+ */
1108
1283
  export interface GetUsageLimitResponse {
1109
1284
  /**
1110
1285
  * <p>The returned usage limit object.</p>
1111
1286
  */
1112
1287
  usageLimit?: UsageLimit;
1113
1288
  }
1289
+ /**
1290
+ * @public
1291
+ */
1114
1292
  export interface GetWorkgroupRequest {
1115
1293
  /**
1116
1294
  * <p>The name of the workgroup to return information for.</p>
1117
1295
  */
1118
1296
  workgroupName: string | undefined;
1119
1297
  }
1298
+ /**
1299
+ * @public
1300
+ */
1120
1301
  export interface GetWorkgroupResponse {
1121
1302
  /**
1122
1303
  * <p>The returned workgroup object.</p>
@@ -1124,6 +1305,7 @@ export interface GetWorkgroupResponse {
1124
1305
  workgroup: Workgroup | undefined;
1125
1306
  }
1126
1307
  /**
1308
+ * @public
1127
1309
  * <p>The provided pagination token is invalid.</p>
1128
1310
  */
1129
1311
  export declare class InvalidPaginationException extends __BaseException {
@@ -1134,6 +1316,9 @@ export declare class InvalidPaginationException extends __BaseException {
1134
1316
  */
1135
1317
  constructor(opts: __ExceptionOptionType<InvalidPaginationException, __BaseException>);
1136
1318
  }
1319
+ /**
1320
+ * @public
1321
+ */
1137
1322
  export interface ListNamespacesRequest {
1138
1323
  /**
1139
1324
  * <p>If your initial <code>ListNamespaces</code> operation returns a <code>nextToken</code>,
@@ -1147,6 +1332,9 @@ export interface ListNamespacesRequest {
1147
1332
  */
1148
1333
  maxResults?: number;
1149
1334
  }
1335
+ /**
1336
+ * @public
1337
+ */
1150
1338
  export interface ListNamespacesResponse {
1151
1339
  /**
1152
1340
  * <p>When <code>nextToken</code> is returned, there are more results available.
@@ -1159,6 +1347,9 @@ export interface ListNamespacesResponse {
1159
1347
  */
1160
1348
  namespaces: Namespace[] | undefined;
1161
1349
  }
1350
+ /**
1351
+ * @public
1352
+ */
1162
1353
  export interface ListRecoveryPointsRequest {
1163
1354
  /**
1164
1355
  * <p>If your initial <code>ListRecoveryPoints</code> operation returns a <code>nextToken</code>,
@@ -1188,6 +1379,9 @@ export interface ListRecoveryPointsRequest {
1188
1379
  */
1189
1380
  namespaceArn?: string;
1190
1381
  }
1382
+ /**
1383
+ * @public
1384
+ */
1191
1385
  export interface ListRecoveryPointsResponse {
1192
1386
  /**
1193
1387
  * <p>The returned recovery point objects.</p>
@@ -1200,6 +1394,9 @@ export interface ListRecoveryPointsResponse {
1200
1394
  */
1201
1395
  nextToken?: string;
1202
1396
  }
1397
+ /**
1398
+ * @public
1399
+ */
1203
1400
  export interface ListSnapshotsRequest {
1204
1401
  /**
1205
1402
  * <p>If <code>nextToken</code> is returned, there are more results available.
@@ -1233,6 +1430,9 @@ export interface ListSnapshotsRequest {
1233
1430
  */
1234
1431
  endTime?: Date;
1235
1432
  }
1433
+ /**
1434
+ * @public
1435
+ */
1236
1436
  export interface ListSnapshotsResponse {
1237
1437
  /**
1238
1438
  * <p>If <code>nextToken</code> is returned, there are more results available.
@@ -1245,6 +1445,9 @@ export interface ListSnapshotsResponse {
1245
1445
  */
1246
1446
  snapshots?: Snapshot[];
1247
1447
  }
1448
+ /**
1449
+ * @public
1450
+ */
1248
1451
  export interface ListTableRestoreStatusRequest {
1249
1452
  /**
1250
1453
  * <p>If your initial <code>ListTableRestoreStatus</code> operation returns a nextToken,
@@ -1266,6 +1469,9 @@ export interface ListTableRestoreStatusRequest {
1266
1469
  */
1267
1470
  workgroupName?: string;
1268
1471
  }
1472
+ /**
1473
+ * @public
1474
+ */
1269
1475
  export interface ListTableRestoreStatusResponse {
1270
1476
  /**
1271
1477
  * <p>If your initial <code>ListTableRestoreStatus</code> operation returns a <code>nextToken</code>,
@@ -1278,12 +1484,18 @@ export interface ListTableRestoreStatusResponse {
1278
1484
  */
1279
1485
  tableRestoreStatuses?: TableRestoreStatus[];
1280
1486
  }
1487
+ /**
1488
+ * @public
1489
+ */
1281
1490
  export interface ListTagsForResourceRequest {
1282
1491
  /**
1283
1492
  * <p>The Amazon Resource Name (ARN) of the resource to list tags for.</p>
1284
1493
  */
1285
1494
  resourceArn: string | undefined;
1286
1495
  }
1496
+ /**
1497
+ * @public
1498
+ */
1287
1499
  export interface ListTagsForResourceResponse {
1288
1500
  /**
1289
1501
  * <p>A map of the key-value pairs assigned to the resource.</p>
@@ -1291,6 +1503,7 @@ export interface ListTagsForResourceResponse {
1291
1503
  tags?: Tag[];
1292
1504
  }
1293
1505
  /**
1506
+ * @public
1294
1507
  * <p>The request was denied due to request throttling.</p>
1295
1508
  */
1296
1509
  export declare class ThrottlingException extends __BaseException {
@@ -1303,6 +1516,9 @@ export declare class ThrottlingException extends __BaseException {
1303
1516
  */
1304
1517
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
1305
1518
  }
1519
+ /**
1520
+ * @public
1521
+ */
1306
1522
  export interface ListUsageLimitsRequest {
1307
1523
  /**
1308
1524
  * <p>The Amazon Resource Name (ARN) associated with the resource whose usage limits you want to list.</p>
@@ -1325,6 +1541,9 @@ export interface ListUsageLimitsRequest {
1325
1541
  */
1326
1542
  maxResults?: number;
1327
1543
  }
1544
+ /**
1545
+ * @public
1546
+ */
1328
1547
  export interface ListUsageLimitsResponse {
1329
1548
  /**
1330
1549
  * <p>An array of returned usage limit objects.</p>
@@ -1337,6 +1556,9 @@ export interface ListUsageLimitsResponse {
1337
1556
  */
1338
1557
  nextToken?: string;
1339
1558
  }
1559
+ /**
1560
+ * @public
1561
+ */
1340
1562
  export interface ListWorkgroupsRequest {
1341
1563
  /**
1342
1564
  * <p>If your initial ListWorkgroups operation returns a <code>nextToken</code>,
@@ -1350,6 +1572,9 @@ export interface ListWorkgroupsRequest {
1350
1572
  */
1351
1573
  maxResults?: number;
1352
1574
  }
1575
+ /**
1576
+ * @public
1577
+ */
1353
1578
  export interface ListWorkgroupsResponse {
1354
1579
  /**
1355
1580
  * <p>
@@ -1363,6 +1588,9 @@ export interface ListWorkgroupsResponse {
1363
1588
  */
1364
1589
  workgroups: Workgroup[] | undefined;
1365
1590
  }
1591
+ /**
1592
+ * @public
1593
+ */
1366
1594
  export interface UpdateNamespaceRequest {
1367
1595
  /**
1368
1596
  * <p>The name of the namespace to update. You can't update the name of a namespace once it is created.</p>
@@ -1396,12 +1624,18 @@ export interface UpdateNamespaceRequest {
1396
1624
  */
1397
1625
  logExports?: (LogExport | string)[];
1398
1626
  }
1627
+ /**
1628
+ * @public
1629
+ */
1399
1630
  export interface UpdateNamespaceResponse {
1400
1631
  /**
1401
1632
  * <p>A list of tag instances.</p>
1402
1633
  */
1403
1634
  namespace: Namespace | undefined;
1404
1635
  }
1636
+ /**
1637
+ * @public
1638
+ */
1405
1639
  export interface PutResourcePolicyRequest {
1406
1640
  /**
1407
1641
  * <p>The Amazon Resource Name (ARN) of the account to create or update a resource policy for.</p>
@@ -1410,20 +1644,26 @@ export interface PutResourcePolicyRequest {
1410
1644
  /**
1411
1645
  * <p>The policy to create or update. For example, the following policy grants a user authorization to restore a snapshot.</p>
1412
1646
  * <p>
1413
- * <code>"{\"Version\": \"2012-10-17\", \"Statement\" :
1414
- * [{ \"Sid\": \"AllowUserRestoreFromSnapshot\", \"Principal\":{\"AWS\":
1415
- * [\"739247239426\"]}, \"Action\": [\"redshift-serverless:RestoreFromSnapshot\"]
1416
- * , \"Effect\": \"Allow\" }]}"</code>
1647
+ * <code>"\{\"Version\": \"2012-10-17\", \"Statement\" :
1648
+ * [\{ \"Sid\": \"AllowUserRestoreFromSnapshot\", \"Principal\":\{\"AWS\":
1649
+ * [\"739247239426\"]\}, \"Action\": [\"redshift-serverless:RestoreFromSnapshot\"]
1650
+ * , \"Effect\": \"Allow\" \}]\}"</code>
1417
1651
  * </p>
1418
1652
  */
1419
1653
  policy: string | undefined;
1420
1654
  }
1655
+ /**
1656
+ * @public
1657
+ */
1421
1658
  export interface PutResourcePolicyResponse {
1422
1659
  /**
1423
1660
  * <p>The policy that was created or updated.</p>
1424
1661
  */
1425
1662
  resourcePolicy?: ResourcePolicy;
1426
1663
  }
1664
+ /**
1665
+ * @public
1666
+ */
1427
1667
  export interface RestoreFromRecoveryPointRequest {
1428
1668
  /**
1429
1669
  * <p>The unique identifier of the recovery point to restore from.</p>
@@ -1438,6 +1678,9 @@ export interface RestoreFromRecoveryPointRequest {
1438
1678
  */
1439
1679
  workgroupName: string | undefined;
1440
1680
  }
1681
+ /**
1682
+ * @public
1683
+ */
1441
1684
  export interface RestoreFromRecoveryPointResponse {
1442
1685
  /**
1443
1686
  * <p>The unique identifier of the recovery point used for the restore.</p>
@@ -1448,6 +1691,9 @@ export interface RestoreFromRecoveryPointResponse {
1448
1691
  */
1449
1692
  namespace?: Namespace;
1450
1693
  }
1694
+ /**
1695
+ * @public
1696
+ */
1451
1697
  export interface RestoreFromSnapshotRequest {
1452
1698
  /**
1453
1699
  * <p>The name of the namespace to restore the snapshot to.</p>
@@ -1472,6 +1718,9 @@ export interface RestoreFromSnapshotRequest {
1472
1718
  */
1473
1719
  ownerAccount?: string;
1474
1720
  }
1721
+ /**
1722
+ * @public
1723
+ */
1475
1724
  export interface RestoreFromSnapshotResponse {
1476
1725
  /**
1477
1726
  * <p>The name of the snapshot used to restore the namespace.</p>
@@ -1486,6 +1735,9 @@ export interface RestoreFromSnapshotResponse {
1486
1735
  */
1487
1736
  namespace?: Namespace;
1488
1737
  }
1738
+ /**
1739
+ * @public
1740
+ */
1489
1741
  export interface RestoreTableFromSnapshotRequest {
1490
1742
  /**
1491
1743
  * <p>The namespace of the snapshot to restore from.</p>
@@ -1530,12 +1782,18 @@ export interface RestoreTableFromSnapshotRequest {
1530
1782
  */
1531
1783
  activateCaseSensitiveIdentifier?: boolean;
1532
1784
  }
1785
+ /**
1786
+ * @public
1787
+ */
1533
1788
  export interface RestoreTableFromSnapshotResponse {
1534
1789
  /**
1535
1790
  * <p>The TableRestoreStatus object that contains the status of the restore operation.</p>
1536
1791
  */
1537
1792
  tableRestoreStatus?: TableRestoreStatus;
1538
1793
  }
1794
+ /**
1795
+ * @public
1796
+ */
1539
1797
  export interface UpdateSnapshotRequest {
1540
1798
  /**
1541
1799
  * <p>The name of the snapshot.</p>
@@ -1546,12 +1804,18 @@ export interface UpdateSnapshotRequest {
1546
1804
  */
1547
1805
  retentionPeriod?: number;
1548
1806
  }
1807
+ /**
1808
+ * @public
1809
+ */
1549
1810
  export interface UpdateSnapshotResponse {
1550
1811
  /**
1551
1812
  * <p>The updated snapshot object.</p>
1552
1813
  */
1553
1814
  snapshot?: Snapshot;
1554
1815
  }
1816
+ /**
1817
+ * @public
1818
+ */
1555
1819
  export interface TagResourceRequest {
1556
1820
  /**
1557
1821
  * <p>The Amazon Resource Name (ARN) of the resource to tag.</p>
@@ -1562,8 +1826,14 @@ export interface TagResourceRequest {
1562
1826
  */
1563
1827
  tags: Tag[] | undefined;
1564
1828
  }
1829
+ /**
1830
+ * @public
1831
+ */
1565
1832
  export interface TagResourceResponse {
1566
1833
  }
1834
+ /**
1835
+ * @public
1836
+ */
1567
1837
  export interface UntagResourceRequest {
1568
1838
  /**
1569
1839
  * <p>The Amazon Resource Name (ARN) of the resource to remove tags from.</p>
@@ -1574,8 +1844,14 @@ export interface UntagResourceRequest {
1574
1844
  */
1575
1845
  tagKeys: string[] | undefined;
1576
1846
  }
1847
+ /**
1848
+ * @public
1849
+ */
1577
1850
  export interface UntagResourceResponse {
1578
1851
  }
1852
+ /**
1853
+ * @public
1854
+ */
1579
1855
  export interface UpdateUsageLimitRequest {
1580
1856
  /**
1581
1857
  * <p>The identifier of the usage limit to update.</p>
@@ -1592,12 +1868,18 @@ export interface UpdateUsageLimitRequest {
1592
1868
  */
1593
1869
  breachAction?: UsageLimitBreachAction | string;
1594
1870
  }
1871
+ /**
1872
+ * @public
1873
+ */
1595
1874
  export interface UpdateUsageLimitResponse {
1596
1875
  /**
1597
1876
  * <p>The updated usage limit object.</p>
1598
1877
  */
1599
1878
  usageLimit?: UsageLimit;
1600
1879
  }
1880
+ /**
1881
+ * @public
1882
+ */
1601
1883
  export interface UpdateWorkgroupRequest {
1602
1884
  /**
1603
1885
  * <p>The name of the workgroup to update. You can't update the name of a workgroup once it is created.</p>
@@ -1638,6 +1920,9 @@ export interface UpdateWorkgroupRequest {
1638
1920
  */
1639
1921
  port?: number;
1640
1922
  }
1923
+ /**
1924
+ * @public
1925
+ */
1641
1926
  export interface UpdateWorkgroupResponse {
1642
1927
  /**
1643
1928
  * <p>The updated workgroup object.</p>