@aws-sdk/client-rds 3.438.0 → 3.441.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 (69) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/RDS.js +6 -0
  3. package/dist-cjs/commands/CreateIntegrationCommand.js +51 -0
  4. package/dist-cjs/commands/DeleteIntegrationCommand.js +51 -0
  5. package/dist-cjs/commands/DescribeIntegrationsCommand.js +51 -0
  6. package/dist-cjs/commands/index.js +3 -0
  7. package/dist-cjs/models/models_0.js +77 -3
  8. package/dist-cjs/pagination/DescribeIntegrationsPaginator.js +29 -0
  9. package/dist-cjs/pagination/index.js +1 -0
  10. package/dist-cjs/protocols/Aws_query.js +466 -6
  11. package/dist-es/RDS.js +6 -0
  12. package/dist-es/commands/CreateIntegrationCommand.js +47 -0
  13. package/dist-es/commands/DeleteIntegrationCommand.js +47 -0
  14. package/dist-es/commands/DescribeIntegrationsCommand.js +47 -0
  15. package/dist-es/commands/index.js +3 -0
  16. package/dist-es/models/models_0.js +69 -0
  17. package/dist-es/pagination/DescribeIntegrationsPaginator.js +25 -0
  18. package/dist-es/pagination/index.js +1 -0
  19. package/dist-es/protocols/Aws_query.js +455 -1
  20. package/dist-types/RDS.d.ts +21 -0
  21. package/dist-types/RDSClient.d.ts +5 -2
  22. package/dist-types/commands/AddTagsToResourceCommand.d.ts +3 -0
  23. package/dist-types/commands/CreateCustomDBEngineVersionCommand.d.ts +2 -0
  24. package/dist-types/commands/CreateDBClusterCommand.d.ts +12 -0
  25. package/dist-types/commands/CreateIntegrationCommand.d.ts +130 -0
  26. package/dist-types/commands/DeleteCustomDBEngineVersionCommand.d.ts +2 -0
  27. package/dist-types/commands/DeleteDBClusterCommand.d.ts +8 -0
  28. package/dist-types/commands/DeleteIntegrationCommand.d.ts +107 -0
  29. package/dist-types/commands/DescribeDBClusterParametersCommand.d.ts +1 -1
  30. package/dist-types/commands/DescribeDBClusterSnapshotAttributesCommand.d.ts +1 -1
  31. package/dist-types/commands/DescribeDBClusterSnapshotsCommand.d.ts +1 -1
  32. package/dist-types/commands/DescribeDBClustersCommand.d.ts +9 -1
  33. package/dist-types/commands/DescribeDBEngineVersionsCommand.d.ts +3 -2
  34. package/dist-types/commands/DescribeIntegrationsCommand.d.ts +115 -0
  35. package/dist-types/commands/FailoverDBClusterCommand.d.ts +8 -0
  36. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  37. package/dist-types/commands/ModifyCustomDBEngineVersionCommand.d.ts +2 -0
  38. package/dist-types/commands/ModifyDBClusterCommand.d.ts +8 -0
  39. package/dist-types/commands/PromoteReadReplicaDBClusterCommand.d.ts +8 -0
  40. package/dist-types/commands/RebootDBClusterCommand.d.ts +8 -0
  41. package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +3 -0
  42. package/dist-types/commands/RestoreDBClusterFromS3Command.d.ts +8 -0
  43. package/dist-types/commands/RestoreDBClusterFromSnapshotCommand.d.ts +12 -0
  44. package/dist-types/commands/RestoreDBClusterToPointInTimeCommand.d.ts +12 -0
  45. package/dist-types/commands/StartDBClusterCommand.d.ts +8 -0
  46. package/dist-types/commands/StopDBClusterCommand.d.ts +8 -0
  47. package/dist-types/commands/index.d.ts +3 -0
  48. package/dist-types/models/models_0.d.ts +256 -423
  49. package/dist-types/models/models_1.d.ts +481 -1
  50. package/dist-types/pagination/DescribeIntegrationsPaginator.d.ts +7 -0
  51. package/dist-types/pagination/index.d.ts +1 -0
  52. package/dist-types/protocols/Aws_query.d.ts +27 -0
  53. package/dist-types/ts3.4/RDS.d.ts +51 -0
  54. package/dist-types/ts3.4/RDSClient.d.ts +18 -0
  55. package/dist-types/ts3.4/commands/CreateIntegrationCommand.d.ts +36 -0
  56. package/dist-types/ts3.4/commands/DeleteIntegrationCommand.d.ts +36 -0
  57. package/dist-types/ts3.4/commands/DescribeDBClusterParametersCommand.d.ts +1 -1
  58. package/dist-types/ts3.4/commands/DescribeDBClusterSnapshotAttributesCommand.d.ts +1 -1
  59. package/dist-types/ts3.4/commands/DescribeDBClusterSnapshotsCommand.d.ts +1 -1
  60. package/dist-types/ts3.4/commands/DescribeDBClustersCommand.d.ts +1 -1
  61. package/dist-types/ts3.4/commands/DescribeDBEngineVersionsCommand.d.ts +4 -2
  62. package/dist-types/ts3.4/commands/DescribeIntegrationsCommand.d.ts +42 -0
  63. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  64. package/dist-types/ts3.4/models/models_0.d.ts +85 -55
  65. package/dist-types/ts3.4/models/models_1.d.ts +71 -1
  66. package/dist-types/ts3.4/pagination/DescribeIntegrationsPaginator.d.ts +11 -0
  67. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  68. package/dist-types/ts3.4/protocols/Aws_query.d.ts +36 -0
  69. package/package.json +4 -4
@@ -115,6 +115,10 @@ import {
115
115
  CreateGlobalClusterCommandInput,
116
116
  CreateGlobalClusterCommandOutput,
117
117
  } from "./commands/CreateGlobalClusterCommand";
118
+ import {
119
+ CreateIntegrationCommandInput,
120
+ CreateIntegrationCommandOutput,
121
+ } from "./commands/CreateIntegrationCommand";
118
122
  import {
119
123
  CreateOptionGroupCommandInput,
120
124
  CreateOptionGroupCommandOutput,
@@ -187,6 +191,10 @@ import {
187
191
  DeleteGlobalClusterCommandInput,
188
192
  DeleteGlobalClusterCommandOutput,
189
193
  } from "./commands/DeleteGlobalClusterCommand";
194
+ import {
195
+ DeleteIntegrationCommandInput,
196
+ DeleteIntegrationCommandOutput,
197
+ } from "./commands/DeleteIntegrationCommand";
190
198
  import {
191
199
  DeleteOptionGroupCommandInput,
192
200
  DeleteOptionGroupCommandOutput,
@@ -323,6 +331,10 @@ import {
323
331
  DescribeGlobalClustersCommandInput,
324
332
  DescribeGlobalClustersCommandOutput,
325
333
  } from "./commands/DescribeGlobalClustersCommand";
334
+ import {
335
+ DescribeIntegrationsCommandInput,
336
+ DescribeIntegrationsCommandOutput,
337
+ } from "./commands/DescribeIntegrationsCommand";
326
338
  import {
327
339
  DescribeOptionGroupOptionsCommandInput,
328
340
  DescribeOptionGroupOptionsCommandOutput,
@@ -960,6 +972,19 @@ export interface RDS {
960
972
  options: __HttpHandlerOptions,
961
973
  cb: (err: any, data?: CreateGlobalClusterCommandOutput) => void
962
974
  ): void;
975
+ createIntegration(
976
+ args: CreateIntegrationCommandInput,
977
+ options?: __HttpHandlerOptions
978
+ ): Promise<CreateIntegrationCommandOutput>;
979
+ createIntegration(
980
+ args: CreateIntegrationCommandInput,
981
+ cb: (err: any, data?: CreateIntegrationCommandOutput) => void
982
+ ): void;
983
+ createIntegration(
984
+ args: CreateIntegrationCommandInput,
985
+ options: __HttpHandlerOptions,
986
+ cb: (err: any, data?: CreateIntegrationCommandOutput) => void
987
+ ): void;
963
988
  createOptionGroup(
964
989
  args: CreateOptionGroupCommandInput,
965
990
  options?: __HttpHandlerOptions
@@ -1194,6 +1219,19 @@ export interface RDS {
1194
1219
  options: __HttpHandlerOptions,
1195
1220
  cb: (err: any, data?: DeleteGlobalClusterCommandOutput) => void
1196
1221
  ): void;
1222
+ deleteIntegration(
1223
+ args: DeleteIntegrationCommandInput,
1224
+ options?: __HttpHandlerOptions
1225
+ ): Promise<DeleteIntegrationCommandOutput>;
1226
+ deleteIntegration(
1227
+ args: DeleteIntegrationCommandInput,
1228
+ cb: (err: any, data?: DeleteIntegrationCommandOutput) => void
1229
+ ): void;
1230
+ deleteIntegration(
1231
+ args: DeleteIntegrationCommandInput,
1232
+ options: __HttpHandlerOptions,
1233
+ cb: (err: any, data?: DeleteIntegrationCommandOutput) => void
1234
+ ): void;
1197
1235
  deleteOptionGroup(
1198
1236
  args: DeleteOptionGroupCommandInput,
1199
1237
  options?: __HttpHandlerOptions
@@ -1660,6 +1698,19 @@ export interface RDS {
1660
1698
  options: __HttpHandlerOptions,
1661
1699
  cb: (err: any, data?: DescribeGlobalClustersCommandOutput) => void
1662
1700
  ): void;
1701
+ describeIntegrations(
1702
+ args: DescribeIntegrationsCommandInput,
1703
+ options?: __HttpHandlerOptions
1704
+ ): Promise<DescribeIntegrationsCommandOutput>;
1705
+ describeIntegrations(
1706
+ args: DescribeIntegrationsCommandInput,
1707
+ cb: (err: any, data?: DescribeIntegrationsCommandOutput) => void
1708
+ ): void;
1709
+ describeIntegrations(
1710
+ args: DescribeIntegrationsCommandInput,
1711
+ options: __HttpHandlerOptions,
1712
+ cb: (err: any, data?: DescribeIntegrationsCommandOutput) => void
1713
+ ): void;
1663
1714
  describeOptionGroupOptions(
1664
1715
  args: DescribeOptionGroupOptionsCommandInput,
1665
1716
  options?: __HttpHandlerOptions
@@ -161,6 +161,10 @@ import {
161
161
  CreateGlobalClusterCommandInput,
162
162
  CreateGlobalClusterCommandOutput,
163
163
  } from "./commands/CreateGlobalClusterCommand";
164
+ import {
165
+ CreateIntegrationCommandInput,
166
+ CreateIntegrationCommandOutput,
167
+ } from "./commands/CreateIntegrationCommand";
164
168
  import {
165
169
  CreateOptionGroupCommandInput,
166
170
  CreateOptionGroupCommandOutput,
@@ -233,6 +237,10 @@ import {
233
237
  DeleteGlobalClusterCommandInput,
234
238
  DeleteGlobalClusterCommandOutput,
235
239
  } from "./commands/DeleteGlobalClusterCommand";
240
+ import {
241
+ DeleteIntegrationCommandInput,
242
+ DeleteIntegrationCommandOutput,
243
+ } from "./commands/DeleteIntegrationCommand";
236
244
  import {
237
245
  DeleteOptionGroupCommandInput,
238
246
  DeleteOptionGroupCommandOutput,
@@ -369,6 +377,10 @@ import {
369
377
  DescribeGlobalClustersCommandInput,
370
378
  DescribeGlobalClustersCommandOutput,
371
379
  } from "./commands/DescribeGlobalClustersCommand";
380
+ import {
381
+ DescribeIntegrationsCommandInput,
382
+ DescribeIntegrationsCommandOutput,
383
+ } from "./commands/DescribeIntegrationsCommand";
372
384
  import {
373
385
  DescribeOptionGroupOptionsCommandInput,
374
386
  DescribeOptionGroupOptionsCommandOutput,
@@ -658,6 +670,7 @@ export type ServiceInputTypes =
658
670
  | CreateDBSubnetGroupCommandInput
659
671
  | CreateEventSubscriptionCommandInput
660
672
  | CreateGlobalClusterCommandInput
673
+ | CreateIntegrationCommandInput
661
674
  | CreateOptionGroupCommandInput
662
675
  | DeleteBlueGreenDeploymentCommandInput
663
676
  | DeleteCustomDBEngineVersionCommandInput
@@ -676,6 +689,7 @@ export type ServiceInputTypes =
676
689
  | DeleteDBSubnetGroupCommandInput
677
690
  | DeleteEventSubscriptionCommandInput
678
691
  | DeleteGlobalClusterCommandInput
692
+ | DeleteIntegrationCommandInput
679
693
  | DeleteOptionGroupCommandInput
680
694
  | DeregisterDBProxyTargetsCommandInput
681
695
  | DescribeAccountAttributesCommandInput
@@ -710,6 +724,7 @@ export type ServiceInputTypes =
710
724
  | DescribeEventsCommandInput
711
725
  | DescribeExportTasksCommandInput
712
726
  | DescribeGlobalClustersCommandInput
727
+ | DescribeIntegrationsCommandInput
713
728
  | DescribeOptionGroupOptionsCommandInput
714
729
  | DescribeOptionGroupsCommandInput
715
730
  | DescribeOrderableDBInstanceOptionsCommandInput
@@ -803,6 +818,7 @@ export type ServiceOutputTypes =
803
818
  | CreateDBSubnetGroupCommandOutput
804
819
  | CreateEventSubscriptionCommandOutput
805
820
  | CreateGlobalClusterCommandOutput
821
+ | CreateIntegrationCommandOutput
806
822
  | CreateOptionGroupCommandOutput
807
823
  | DeleteBlueGreenDeploymentCommandOutput
808
824
  | DeleteCustomDBEngineVersionCommandOutput
@@ -821,6 +837,7 @@ export type ServiceOutputTypes =
821
837
  | DeleteDBSubnetGroupCommandOutput
822
838
  | DeleteEventSubscriptionCommandOutput
823
839
  | DeleteGlobalClusterCommandOutput
840
+ | DeleteIntegrationCommandOutput
824
841
  | DeleteOptionGroupCommandOutput
825
842
  | DeregisterDBProxyTargetsCommandOutput
826
843
  | DescribeAccountAttributesCommandOutput
@@ -855,6 +872,7 @@ export type ServiceOutputTypes =
855
872
  | DescribeEventsCommandOutput
856
873
  | DescribeExportTasksCommandOutput
857
874
  | DescribeGlobalClustersCommandOutput
875
+ | DescribeIntegrationsCommandOutput
858
876
  | DescribeOptionGroupOptionsCommandOutput
859
877
  | DescribeOptionGroupsCommandOutput
860
878
  | DescribeOrderableDBInstanceOptionsCommandOutput
@@ -0,0 +1,36 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import { CreateIntegrationMessage, Integration } from "../models/models_0";
10
+ import {
11
+ RDSClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../RDSClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface CreateIntegrationCommandInput
17
+ extends CreateIntegrationMessage {}
18
+ export interface CreateIntegrationCommandOutput
19
+ extends Integration,
20
+ __MetadataBearer {}
21
+ export declare class CreateIntegrationCommand extends $Command<
22
+ CreateIntegrationCommandInput,
23
+ CreateIntegrationCommandOutput,
24
+ RDSClientResolvedConfig
25
+ > {
26
+ readonly input: CreateIntegrationCommandInput;
27
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
+ constructor(input: CreateIntegrationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: RDSClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<CreateIntegrationCommandInput, CreateIntegrationCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -0,0 +1,36 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import { DeleteIntegrationMessage, Integration } from "../models/models_0";
10
+ import {
11
+ RDSClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../RDSClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface DeleteIntegrationCommandInput
17
+ extends DeleteIntegrationMessage {}
18
+ export interface DeleteIntegrationCommandOutput
19
+ extends Integration,
20
+ __MetadataBearer {}
21
+ export declare class DeleteIntegrationCommand extends $Command<
22
+ DeleteIntegrationCommandInput,
23
+ DeleteIntegrationCommandOutput,
24
+ RDSClientResolvedConfig
25
+ > {
26
+ readonly input: DeleteIntegrationCommandInput;
27
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
+ constructor(input: DeleteIntegrationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: RDSClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  DBClusterParameterGroupDetails,
11
11
  DescribeDBClusterParametersMessage,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  RDSClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  DescribeDBClusterSnapshotAttributesMessage,
11
11
  DescribeDBClusterSnapshotAttributesResult,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  RDSClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  DBClusterSnapshotMessage,
11
11
  DescribeDBClusterSnapshotsMessage,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  RDSClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  DBClusterMessage,
11
11
  DescribeDBClustersMessage,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  RDSClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -6,8 +6,10 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { DBEngineVersionMessage } from "../models/models_0";
10
- import { DescribeDBEngineVersionsMessage } from "../models/models_1";
9
+ import {
10
+ DBEngineVersionMessage,
11
+ DescribeDBEngineVersionsMessage,
12
+ } from "../models/models_1";
11
13
  import {
12
14
  RDSClientResolvedConfig,
13
15
  ServiceInputTypes,
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ DescribeIntegrationsMessage,
11
+ DescribeIntegrationsResponse,
12
+ } from "../models/models_1";
13
+ import {
14
+ RDSClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../RDSClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DescribeIntegrationsCommandInput
20
+ extends DescribeIntegrationsMessage {}
21
+ export interface DescribeIntegrationsCommandOutput
22
+ extends DescribeIntegrationsResponse,
23
+ __MetadataBearer {}
24
+ export declare class DescribeIntegrationsCommand extends $Command<
25
+ DescribeIntegrationsCommandInput,
26
+ DescribeIntegrationsCommandOutput,
27
+ RDSClientResolvedConfig
28
+ > {
29
+ readonly input: DescribeIntegrationsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: DescribeIntegrationsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: RDSClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ DescribeIntegrationsCommandInput,
38
+ DescribeIntegrationsCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -27,6 +27,7 @@ export * from "./CreateDBSnapshotCommand";
27
27
  export * from "./CreateDBSubnetGroupCommand";
28
28
  export * from "./CreateEventSubscriptionCommand";
29
29
  export * from "./CreateGlobalClusterCommand";
30
+ export * from "./CreateIntegrationCommand";
30
31
  export * from "./CreateOptionGroupCommand";
31
32
  export * from "./DeleteBlueGreenDeploymentCommand";
32
33
  export * from "./DeleteCustomDBEngineVersionCommand";
@@ -45,6 +46,7 @@ export * from "./DeleteDBSnapshotCommand";
45
46
  export * from "./DeleteDBSubnetGroupCommand";
46
47
  export * from "./DeleteEventSubscriptionCommand";
47
48
  export * from "./DeleteGlobalClusterCommand";
49
+ export * from "./DeleteIntegrationCommand";
48
50
  export * from "./DeleteOptionGroupCommand";
49
51
  export * from "./DeregisterDBProxyTargetsCommand";
50
52
  export * from "./DescribeAccountAttributesCommand";
@@ -79,6 +81,7 @@ export * from "./DescribeEventSubscriptionsCommand";
79
81
  export * from "./DescribeEventsCommand";
80
82
  export * from "./DescribeExportTasksCommand";
81
83
  export * from "./DescribeGlobalClustersCommand";
84
+ export * from "./DescribeIntegrationsCommand";
82
85
  export * from "./DescribeOptionGroupOptionsCommand";
83
86
  export * from "./DescribeOptionGroupsCommand";
84
87
  export * from "./DescribeOrderableDBInstanceOptionsCommand";
@@ -183,6 +183,13 @@ export declare class DBSnapshotNotFoundFault extends __BaseException {
183
183
  opts: __ExceptionOptionType<DBSnapshotNotFoundFault, __BaseException>
184
184
  );
185
185
  }
186
+ export declare class IntegrationNotFoundFault extends __BaseException {
187
+ readonly name: "IntegrationNotFoundFault";
188
+ readonly $fault: "client";
189
+ constructor(
190
+ opts: __ExceptionOptionType<IntegrationNotFoundFault, __BaseException>
191
+ );
192
+ }
186
193
  export interface ApplyPendingMaintenanceActionMessage {
187
194
  ResourceIdentifier: string | undefined;
188
195
  ApplyAction: string | undefined;
@@ -770,6 +777,7 @@ export interface UpgradeTarget {
770
777
  SupportsGlobalDatabases?: boolean;
771
778
  SupportsBabelfish?: boolean;
772
779
  SupportsLocalWriteForwarding?: boolean;
780
+ SupportsIntegrations?: boolean;
773
781
  }
774
782
  export interface DBEngineVersion {
775
783
  Engine?: string;
@@ -804,6 +812,7 @@ export interface DBEngineVersion {
804
812
  SupportsCertificateRotationWithoutRestart?: boolean;
805
813
  SupportedCACertificateIdentifiers?: string[];
806
814
  SupportsLocalWriteForwarding?: boolean;
815
+ SupportsIntegrations?: boolean;
807
816
  }
808
817
  export declare class Ec2ImagePropertiesNotSupportedFault extends __BaseException {
809
818
  readonly name: "Ec2ImagePropertiesNotSupportedFault";
@@ -815,6 +824,10 @@ export declare class Ec2ImagePropertiesNotSupportedFault extends __BaseException
815
824
  >
816
825
  );
817
826
  }
827
+ export interface RdsCustomClusterConfiguration {
828
+ InterconnectSubnetId?: string;
829
+ TransitGatewayMulticastDomainId?: string;
830
+ }
818
831
  export interface ScalingConfiguration {
819
832
  MinCapacity?: number;
820
833
  MaxCapacity?: number;
@@ -854,6 +867,7 @@ export interface CreateDBClusterMessage {
854
867
  EnableCloudwatchLogsExports?: string[];
855
868
  EngineMode?: string;
856
869
  ScalingConfiguration?: ScalingConfiguration;
870
+ RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
857
871
  DeletionProtection?: boolean;
858
872
  GlobalClusterIdentifier?: string;
859
873
  EnableHttpEndpoint?: boolean;
@@ -938,6 +952,7 @@ export interface ClusterPendingModifiedValues {
938
952
  EngineVersion?: string;
939
953
  BackupRetentionPeriod?: number;
940
954
  AllocatedStorage?: number;
955
+ RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
941
956
  Iops?: number;
942
957
  StorageType?: string;
943
958
  }
@@ -998,6 +1013,7 @@ export interface DBCluster {
998
1013
  Capacity?: number;
999
1014
  EngineMode?: string;
1000
1015
  ScalingConfigurationInfo?: ScalingConfigurationInfo;
1016
+ RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
1001
1017
  DeletionProtection?: boolean;
1002
1018
  HttpEndpointEnabled?: boolean;
1003
1019
  ActivityStreamMode?: ActivityStreamMode;
@@ -1920,6 +1936,65 @@ export declare class GlobalClusterQuotaExceededFault extends __BaseException {
1920
1936
  >
1921
1937
  );
1922
1938
  }
1939
+ export interface CreateIntegrationMessage {
1940
+ SourceArn: string | undefined;
1941
+ TargetArn: string | undefined;
1942
+ IntegrationName: string | undefined;
1943
+ KMSKeyId?: string;
1944
+ AdditionalEncryptionContext?: Record<string, string>;
1945
+ Tags?: Tag[];
1946
+ }
1947
+ export interface IntegrationError {
1948
+ ErrorCode: string | undefined;
1949
+ ErrorMessage?: string;
1950
+ }
1951
+ export declare const IntegrationStatus: {
1952
+ readonly ACTIVE: "active";
1953
+ readonly CREATING: "creating";
1954
+ readonly DELETING: "deleting";
1955
+ readonly FAILED: "failed";
1956
+ readonly MODIFYING: "modifying";
1957
+ readonly NEEDS_ATTENTION: "needs_attention";
1958
+ readonly SYNCING: "syncing";
1959
+ };
1960
+ export type IntegrationStatus =
1961
+ (typeof IntegrationStatus)[keyof typeof IntegrationStatus];
1962
+ export interface Integration {
1963
+ SourceArn?: string;
1964
+ TargetArn?: string;
1965
+ IntegrationName?: string;
1966
+ IntegrationArn?: string;
1967
+ KMSKeyId?: string;
1968
+ AdditionalEncryptionContext?: Record<string, string>;
1969
+ Status?: IntegrationStatus;
1970
+ Tags?: Tag[];
1971
+ CreateTime?: Date;
1972
+ Errors?: IntegrationError[];
1973
+ }
1974
+ export declare class IntegrationAlreadyExistsFault extends __BaseException {
1975
+ readonly name: "IntegrationAlreadyExistsFault";
1976
+ readonly $fault: "client";
1977
+ constructor(
1978
+ opts: __ExceptionOptionType<IntegrationAlreadyExistsFault, __BaseException>
1979
+ );
1980
+ }
1981
+ export declare class IntegrationConflictOperationFault extends __BaseException {
1982
+ readonly name: "IntegrationConflictOperationFault";
1983
+ readonly $fault: "client";
1984
+ constructor(
1985
+ opts: __ExceptionOptionType<
1986
+ IntegrationConflictOperationFault,
1987
+ __BaseException
1988
+ >
1989
+ );
1990
+ }
1991
+ export declare class IntegrationQuotaExceededFault extends __BaseException {
1992
+ readonly name: "IntegrationQuotaExceededFault";
1993
+ readonly $fault: "client";
1994
+ constructor(
1995
+ opts: __ExceptionOptionType<IntegrationQuotaExceededFault, __BaseException>
1996
+ );
1997
+ }
1923
1998
  export interface CreateOptionGroupMessage {
1924
1999
  OptionGroupName: string | undefined;
1925
2000
  EngineName: string | undefined;
@@ -2236,6 +2311,16 @@ export interface DeleteGlobalClusterMessage {
2236
2311
  export interface DeleteGlobalClusterResult {
2237
2312
  GlobalCluster?: GlobalCluster;
2238
2313
  }
2314
+ export interface DeleteIntegrationMessage {
2315
+ IntegrationIdentifier: string | undefined;
2316
+ }
2317
+ export declare class InvalidIntegrationStateFault extends __BaseException {
2318
+ readonly name: "InvalidIntegrationStateFault";
2319
+ readonly $fault: "client";
2320
+ constructor(
2321
+ opts: __ExceptionOptionType<InvalidIntegrationStateFault, __BaseException>
2322
+ );
2323
+ }
2239
2324
  export interface DeleteOptionGroupMessage {
2240
2325
  OptionGroupName: string | undefined;
2241
2326
  }
@@ -2367,58 +2452,3 @@ export interface Parameter {
2367
2452
  ApplyMethod?: ApplyMethod;
2368
2453
  SupportedEngineModes?: string[];
2369
2454
  }
2370
- export interface DBClusterParameterGroupDetails {
2371
- Parameters?: Parameter[];
2372
- Marker?: string;
2373
- }
2374
- export interface DescribeDBClusterParametersMessage {
2375
- DBClusterParameterGroupName: string | undefined;
2376
- Source?: string;
2377
- Filters?: Filter[];
2378
- MaxRecords?: number;
2379
- Marker?: string;
2380
- }
2381
- export interface DBClusterMessage {
2382
- Marker?: string;
2383
- DBClusters?: DBCluster[];
2384
- }
2385
- export interface DescribeDBClustersMessage {
2386
- DBClusterIdentifier?: string;
2387
- Filters?: Filter[];
2388
- MaxRecords?: number;
2389
- Marker?: string;
2390
- IncludeShared?: boolean;
2391
- }
2392
- export interface DescribeDBClusterSnapshotAttributesMessage {
2393
- DBClusterSnapshotIdentifier: string | undefined;
2394
- }
2395
- export interface DBClusterSnapshotAttribute {
2396
- AttributeName?: string;
2397
- AttributeValues?: string[];
2398
- }
2399
- export interface DBClusterSnapshotAttributesResult {
2400
- DBClusterSnapshotIdentifier?: string;
2401
- DBClusterSnapshotAttributes?: DBClusterSnapshotAttribute[];
2402
- }
2403
- export interface DescribeDBClusterSnapshotAttributesResult {
2404
- DBClusterSnapshotAttributesResult?: DBClusterSnapshotAttributesResult;
2405
- }
2406
- export interface DBClusterSnapshotMessage {
2407
- Marker?: string;
2408
- DBClusterSnapshots?: DBClusterSnapshot[];
2409
- }
2410
- export interface DescribeDBClusterSnapshotsMessage {
2411
- DBClusterIdentifier?: string;
2412
- DBClusterSnapshotIdentifier?: string;
2413
- SnapshotType?: string;
2414
- Filters?: Filter[];
2415
- MaxRecords?: number;
2416
- Marker?: string;
2417
- IncludeShared?: boolean;
2418
- IncludePublic?: boolean;
2419
- DbClusterResourceId?: string;
2420
- }
2421
- export interface DBEngineVersionMessage {
2422
- Marker?: string;
2423
- DBEngineVersions?: DBEngineVersion[];
2424
- }
@@ -8,7 +8,8 @@ import {
8
8
  BlueGreenDeployment,
9
9
  Certificate,
10
10
  DBCluster,
11
- DBClusterSnapshotAttributesResult,
11
+ DBClusterSnapshot,
12
+ DBEngineVersion,
12
13
  DBInstance,
13
14
  DBInstanceAutomatedBackup,
14
15
  DBParameterGroup,
@@ -22,10 +23,12 @@ import {
22
23
  ExportTask,
23
24
  Filter,
24
25
  GlobalCluster,
26
+ Integration,
25
27
  OptionGroup,
26
28
  OptionSetting,
27
29
  Parameter,
28
30
  ProcessorFeature,
31
+ RdsCustomClusterConfiguration,
29
32
  ReplicaMode,
30
33
  ResourcePendingMaintenanceActions,
31
34
  ScalingConfiguration,
@@ -34,6 +37,61 @@ import {
34
37
  UserAuthConfig,
35
38
  } from "./models_0";
36
39
  import { RDSServiceException as __BaseException } from "./RDSServiceException";
40
+ export interface DBClusterParameterGroupDetails {
41
+ Parameters?: Parameter[];
42
+ Marker?: string;
43
+ }
44
+ export interface DescribeDBClusterParametersMessage {
45
+ DBClusterParameterGroupName: string | undefined;
46
+ Source?: string;
47
+ Filters?: Filter[];
48
+ MaxRecords?: number;
49
+ Marker?: string;
50
+ }
51
+ export interface DBClusterMessage {
52
+ Marker?: string;
53
+ DBClusters?: DBCluster[];
54
+ }
55
+ export interface DescribeDBClustersMessage {
56
+ DBClusterIdentifier?: string;
57
+ Filters?: Filter[];
58
+ MaxRecords?: number;
59
+ Marker?: string;
60
+ IncludeShared?: boolean;
61
+ }
62
+ export interface DescribeDBClusterSnapshotAttributesMessage {
63
+ DBClusterSnapshotIdentifier: string | undefined;
64
+ }
65
+ export interface DBClusterSnapshotAttribute {
66
+ AttributeName?: string;
67
+ AttributeValues?: string[];
68
+ }
69
+ export interface DBClusterSnapshotAttributesResult {
70
+ DBClusterSnapshotIdentifier?: string;
71
+ DBClusterSnapshotAttributes?: DBClusterSnapshotAttribute[];
72
+ }
73
+ export interface DescribeDBClusterSnapshotAttributesResult {
74
+ DBClusterSnapshotAttributesResult?: DBClusterSnapshotAttributesResult;
75
+ }
76
+ export interface DBClusterSnapshotMessage {
77
+ Marker?: string;
78
+ DBClusterSnapshots?: DBClusterSnapshot[];
79
+ }
80
+ export interface DescribeDBClusterSnapshotsMessage {
81
+ DBClusterIdentifier?: string;
82
+ DBClusterSnapshotIdentifier?: string;
83
+ SnapshotType?: string;
84
+ Filters?: Filter[];
85
+ MaxRecords?: number;
86
+ Marker?: string;
87
+ IncludeShared?: boolean;
88
+ IncludePublic?: boolean;
89
+ DbClusterResourceId?: string;
90
+ }
91
+ export interface DBEngineVersionMessage {
92
+ Marker?: string;
93
+ DBEngineVersions?: DBEngineVersion[];
94
+ }
37
95
  export interface DescribeDBEngineVersionsMessage {
38
96
  Engine?: string;
39
97
  EngineVersion?: string;
@@ -359,6 +417,16 @@ export interface GlobalClustersMessage {
359
417
  Marker?: string;
360
418
  GlobalClusters?: GlobalCluster[];
361
419
  }
420
+ export interface DescribeIntegrationsMessage {
421
+ IntegrationIdentifier?: string;
422
+ Filters?: Filter[];
423
+ MaxRecords?: number;
424
+ Marker?: string;
425
+ }
426
+ export interface DescribeIntegrationsResponse {
427
+ Marker?: string;
428
+ Integrations?: Integration[];
429
+ }
362
430
  export interface DescribeOptionGroupOptionsMessage {
363
431
  EngineName: string | undefined;
364
432
  MajorEngineVersion?: string;
@@ -1224,6 +1292,7 @@ export interface RestoreDBClusterFromSnapshotMessage {
1224
1292
  PubliclyAccessible?: boolean;
1225
1293
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
1226
1294
  NetworkType?: string;
1295
+ RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
1227
1296
  }
1228
1297
  export interface RestoreDBClusterFromSnapshotResult {
1229
1298
  DBCluster?: DBCluster;
@@ -1257,6 +1326,7 @@ export interface RestoreDBClusterToPointInTimeMessage {
1257
1326
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
1258
1327
  NetworkType?: string;
1259
1328
  SourceDbClusterResourceId?: string;
1329
+ RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
1260
1330
  }
1261
1331
  export interface RestoreDBClusterToPointInTimeResult {
1262
1332
  DBCluster?: DBCluster;