@aws-sdk/client-rds 3.438.0 → 3.439.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.
- package/README.md +24 -0
- package/dist-cjs/RDS.js +6 -0
- package/dist-cjs/commands/CreateIntegrationCommand.js +51 -0
- package/dist-cjs/commands/DeleteIntegrationCommand.js +51 -0
- package/dist-cjs/commands/DescribeIntegrationsCommand.js +51 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +77 -3
- package/dist-cjs/pagination/DescribeIntegrationsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_query.js +419 -6
- package/dist-es/RDS.js +6 -0
- package/dist-es/commands/CreateIntegrationCommand.js +47 -0
- package/dist-es/commands/DeleteIntegrationCommand.js +47 -0
- package/dist-es/commands/DescribeIntegrationsCommand.js +47 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +69 -0
- package/dist-es/pagination/DescribeIntegrationsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_query.js +408 -1
- package/dist-types/RDS.d.ts +21 -0
- package/dist-types/RDSClient.d.ts +5 -2
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +3 -0
- package/dist-types/commands/CreateCustomDBEngineVersionCommand.d.ts +2 -0
- package/dist-types/commands/CreateIntegrationCommand.d.ts +130 -0
- package/dist-types/commands/DeleteCustomDBEngineVersionCommand.d.ts +2 -0
- package/dist-types/commands/DeleteIntegrationCommand.d.ts +107 -0
- package/dist-types/commands/DescribeDBClusterParametersCommand.d.ts +2 -1
- package/dist-types/commands/DescribeDBClusterSnapshotAttributesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBClusterSnapshotsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBClustersCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBEngineVersionsCommand.d.ts +3 -2
- package/dist-types/commands/DescribeIntegrationsCommand.d.ts +115 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/ModifyCustomDBEngineVersionCommand.d.ts +2 -0
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +3 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +225 -403
- package/dist-types/models/models_1.d.ts +451 -1
- package/dist-types/pagination/DescribeIntegrationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_query.d.ts +27 -0
- package/dist-types/ts3.4/RDS.d.ts +51 -0
- package/dist-types/ts3.4/RDSClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/CreateIntegrationCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/DeleteIntegrationCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/DescribeDBClusterParametersCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeDBClusterSnapshotAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBClusterSnapshotsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBClustersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBEngineVersionsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeIntegrationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +78 -51
- package/dist-types/ts3.4/models/models_1.d.ts +64 -1
- package/dist-types/ts3.4/pagination/DescribeIntegrationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +36 -0
- package/package.json +1 -1
|
@@ -37,6 +37,7 @@ import { CreateDBSnapshotCommandInput, CreateDBSnapshotCommandOutput } from "./c
|
|
|
37
37
|
import { CreateDBSubnetGroupCommandInput, CreateDBSubnetGroupCommandOutput } from "./commands/CreateDBSubnetGroupCommand";
|
|
38
38
|
import { CreateEventSubscriptionCommandInput, CreateEventSubscriptionCommandOutput } from "./commands/CreateEventSubscriptionCommand";
|
|
39
39
|
import { CreateGlobalClusterCommandInput, CreateGlobalClusterCommandOutput } from "./commands/CreateGlobalClusterCommand";
|
|
40
|
+
import { CreateIntegrationCommandInput, CreateIntegrationCommandOutput } from "./commands/CreateIntegrationCommand";
|
|
40
41
|
import { CreateOptionGroupCommandInput, CreateOptionGroupCommandOutput } from "./commands/CreateOptionGroupCommand";
|
|
41
42
|
import { DeleteBlueGreenDeploymentCommandInput, DeleteBlueGreenDeploymentCommandOutput } from "./commands/DeleteBlueGreenDeploymentCommand";
|
|
42
43
|
import { DeleteCustomDBEngineVersionCommandInput, DeleteCustomDBEngineVersionCommandOutput } from "./commands/DeleteCustomDBEngineVersionCommand";
|
|
@@ -55,6 +56,7 @@ import { DeleteDBSnapshotCommandInput, DeleteDBSnapshotCommandOutput } from "./c
|
|
|
55
56
|
import { DeleteDBSubnetGroupCommandInput, DeleteDBSubnetGroupCommandOutput } from "./commands/DeleteDBSubnetGroupCommand";
|
|
56
57
|
import { DeleteEventSubscriptionCommandInput, DeleteEventSubscriptionCommandOutput } from "./commands/DeleteEventSubscriptionCommand";
|
|
57
58
|
import { DeleteGlobalClusterCommandInput, DeleteGlobalClusterCommandOutput } from "./commands/DeleteGlobalClusterCommand";
|
|
59
|
+
import { DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput } from "./commands/DeleteIntegrationCommand";
|
|
58
60
|
import { DeleteOptionGroupCommandInput, DeleteOptionGroupCommandOutput } from "./commands/DeleteOptionGroupCommand";
|
|
59
61
|
import { DeregisterDBProxyTargetsCommandInput, DeregisterDBProxyTargetsCommandOutput } from "./commands/DeregisterDBProxyTargetsCommand";
|
|
60
62
|
import { DescribeAccountAttributesCommandInput, DescribeAccountAttributesCommandOutput } from "./commands/DescribeAccountAttributesCommand";
|
|
@@ -89,6 +91,7 @@ import { DescribeEventsCommandInput, DescribeEventsCommandOutput } from "./comma
|
|
|
89
91
|
import { DescribeEventSubscriptionsCommandInput, DescribeEventSubscriptionsCommandOutput } from "./commands/DescribeEventSubscriptionsCommand";
|
|
90
92
|
import { DescribeExportTasksCommandInput, DescribeExportTasksCommandOutput } from "./commands/DescribeExportTasksCommand";
|
|
91
93
|
import { DescribeGlobalClustersCommandInput, DescribeGlobalClustersCommandOutput } from "./commands/DescribeGlobalClustersCommand";
|
|
94
|
+
import { DescribeIntegrationsCommandInput, DescribeIntegrationsCommandOutput } from "./commands/DescribeIntegrationsCommand";
|
|
92
95
|
import { DescribeOptionGroupOptionsCommandInput, DescribeOptionGroupOptionsCommandOutput } from "./commands/DescribeOptionGroupOptionsCommand";
|
|
93
96
|
import { DescribeOptionGroupsCommandInput, DescribeOptionGroupsCommandOutput } from "./commands/DescribeOptionGroupsCommand";
|
|
94
97
|
import { DescribeOrderableDBInstanceOptionsCommandInput, DescribeOrderableDBInstanceOptionsCommandOutput } from "./commands/DescribeOrderableDBInstanceOptionsCommand";
|
|
@@ -158,11 +161,11 @@ export { __Client };
|
|
|
158
161
|
/**
|
|
159
162
|
* @public
|
|
160
163
|
*/
|
|
161
|
-
export type ServiceInputTypes = AddRoleToDBClusterCommandInput | AddRoleToDBInstanceCommandInput | AddSourceIdentifierToSubscriptionCommandInput | AddTagsToResourceCommandInput | ApplyPendingMaintenanceActionCommandInput | AuthorizeDBSecurityGroupIngressCommandInput | BacktrackDBClusterCommandInput | CancelExportTaskCommandInput | CopyDBClusterParameterGroupCommandInput | CopyDBClusterSnapshotCommandInput | CopyDBParameterGroupCommandInput | CopyDBSnapshotCommandInput | CopyOptionGroupCommandInput | CreateBlueGreenDeploymentCommandInput | CreateCustomDBEngineVersionCommandInput | CreateDBClusterCommandInput | CreateDBClusterEndpointCommandInput | CreateDBClusterParameterGroupCommandInput | CreateDBClusterSnapshotCommandInput | CreateDBInstanceCommandInput | CreateDBInstanceReadReplicaCommandInput | CreateDBParameterGroupCommandInput | CreateDBProxyCommandInput | CreateDBProxyEndpointCommandInput | CreateDBSecurityGroupCommandInput | CreateDBSnapshotCommandInput | CreateDBSubnetGroupCommandInput | CreateEventSubscriptionCommandInput | CreateGlobalClusterCommandInput | CreateOptionGroupCommandInput | DeleteBlueGreenDeploymentCommandInput | DeleteCustomDBEngineVersionCommandInput | DeleteDBClusterAutomatedBackupCommandInput | DeleteDBClusterCommandInput | DeleteDBClusterEndpointCommandInput | DeleteDBClusterParameterGroupCommandInput | DeleteDBClusterSnapshotCommandInput | DeleteDBInstanceAutomatedBackupCommandInput | DeleteDBInstanceCommandInput | DeleteDBParameterGroupCommandInput | DeleteDBProxyCommandInput | DeleteDBProxyEndpointCommandInput | DeleteDBSecurityGroupCommandInput | DeleteDBSnapshotCommandInput | DeleteDBSubnetGroupCommandInput | DeleteEventSubscriptionCommandInput | DeleteGlobalClusterCommandInput | DeleteOptionGroupCommandInput | DeregisterDBProxyTargetsCommandInput | DescribeAccountAttributesCommandInput | DescribeBlueGreenDeploymentsCommandInput | DescribeCertificatesCommandInput | DescribeDBClusterAutomatedBackupsCommandInput | DescribeDBClusterBacktracksCommandInput | DescribeDBClusterEndpointsCommandInput | DescribeDBClusterParameterGroupsCommandInput | DescribeDBClusterParametersCommandInput | DescribeDBClusterSnapshotAttributesCommandInput | DescribeDBClusterSnapshotsCommandInput | DescribeDBClustersCommandInput | DescribeDBEngineVersionsCommandInput | DescribeDBInstanceAutomatedBackupsCommandInput | DescribeDBInstancesCommandInput | DescribeDBLogFilesCommandInput | DescribeDBParameterGroupsCommandInput | DescribeDBParametersCommandInput | DescribeDBProxiesCommandInput | DescribeDBProxyEndpointsCommandInput | DescribeDBProxyTargetGroupsCommandInput | DescribeDBProxyTargetsCommandInput | DescribeDBSecurityGroupsCommandInput | DescribeDBSnapshotAttributesCommandInput | DescribeDBSnapshotsCommandInput | DescribeDBSubnetGroupsCommandInput | DescribeEngineDefaultClusterParametersCommandInput | DescribeEngineDefaultParametersCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeExportTasksCommandInput | DescribeGlobalClustersCommandInput | DescribeOptionGroupOptionsCommandInput | DescribeOptionGroupsCommandInput | DescribeOrderableDBInstanceOptionsCommandInput | DescribePendingMaintenanceActionsCommandInput | DescribeReservedDBInstancesCommandInput | DescribeReservedDBInstancesOfferingsCommandInput | DescribeSourceRegionsCommandInput | DescribeValidDBInstanceModificationsCommandInput | DownloadDBLogFilePortionCommandInput | FailoverDBClusterCommandInput | FailoverGlobalClusterCommandInput | ListTagsForResourceCommandInput | ModifyActivityStreamCommandInput | ModifyCertificatesCommandInput | ModifyCurrentDBClusterCapacityCommandInput | ModifyCustomDBEngineVersionCommandInput | ModifyDBClusterCommandInput | ModifyDBClusterEndpointCommandInput | ModifyDBClusterParameterGroupCommandInput | ModifyDBClusterSnapshotAttributeCommandInput | ModifyDBInstanceCommandInput | ModifyDBParameterGroupCommandInput | ModifyDBProxyCommandInput | ModifyDBProxyEndpointCommandInput | ModifyDBProxyTargetGroupCommandInput | ModifyDBSnapshotAttributeCommandInput | ModifyDBSnapshotCommandInput | ModifyDBSubnetGroupCommandInput | ModifyEventSubscriptionCommandInput | ModifyGlobalClusterCommandInput | ModifyOptionGroupCommandInput | PromoteReadReplicaCommandInput | PromoteReadReplicaDBClusterCommandInput | PurchaseReservedDBInstancesOfferingCommandInput | RebootDBClusterCommandInput | RebootDBInstanceCommandInput | RegisterDBProxyTargetsCommandInput | RemoveFromGlobalClusterCommandInput | RemoveRoleFromDBClusterCommandInput | RemoveRoleFromDBInstanceCommandInput | RemoveSourceIdentifierFromSubscriptionCommandInput | RemoveTagsFromResourceCommandInput | ResetDBClusterParameterGroupCommandInput | ResetDBParameterGroupCommandInput | RestoreDBClusterFromS3CommandInput | RestoreDBClusterFromSnapshotCommandInput | RestoreDBClusterToPointInTimeCommandInput | RestoreDBInstanceFromDBSnapshotCommandInput | RestoreDBInstanceFromS3CommandInput | RestoreDBInstanceToPointInTimeCommandInput | RevokeDBSecurityGroupIngressCommandInput | StartActivityStreamCommandInput | StartDBClusterCommandInput | StartDBInstanceAutomatedBackupsReplicationCommandInput | StartDBInstanceCommandInput | StartExportTaskCommandInput | StopActivityStreamCommandInput | StopDBClusterCommandInput | StopDBInstanceAutomatedBackupsReplicationCommandInput | StopDBInstanceCommandInput | SwitchoverBlueGreenDeploymentCommandInput | SwitchoverGlobalClusterCommandInput | SwitchoverReadReplicaCommandInput;
|
|
164
|
+
export type ServiceInputTypes = AddRoleToDBClusterCommandInput | AddRoleToDBInstanceCommandInput | AddSourceIdentifierToSubscriptionCommandInput | AddTagsToResourceCommandInput | ApplyPendingMaintenanceActionCommandInput | AuthorizeDBSecurityGroupIngressCommandInput | BacktrackDBClusterCommandInput | CancelExportTaskCommandInput | CopyDBClusterParameterGroupCommandInput | CopyDBClusterSnapshotCommandInput | CopyDBParameterGroupCommandInput | CopyDBSnapshotCommandInput | CopyOptionGroupCommandInput | CreateBlueGreenDeploymentCommandInput | CreateCustomDBEngineVersionCommandInput | CreateDBClusterCommandInput | CreateDBClusterEndpointCommandInput | CreateDBClusterParameterGroupCommandInput | CreateDBClusterSnapshotCommandInput | CreateDBInstanceCommandInput | CreateDBInstanceReadReplicaCommandInput | CreateDBParameterGroupCommandInput | CreateDBProxyCommandInput | CreateDBProxyEndpointCommandInput | CreateDBSecurityGroupCommandInput | CreateDBSnapshotCommandInput | CreateDBSubnetGroupCommandInput | CreateEventSubscriptionCommandInput | CreateGlobalClusterCommandInput | CreateIntegrationCommandInput | CreateOptionGroupCommandInput | DeleteBlueGreenDeploymentCommandInput | DeleteCustomDBEngineVersionCommandInput | DeleteDBClusterAutomatedBackupCommandInput | DeleteDBClusterCommandInput | DeleteDBClusterEndpointCommandInput | DeleteDBClusterParameterGroupCommandInput | DeleteDBClusterSnapshotCommandInput | DeleteDBInstanceAutomatedBackupCommandInput | DeleteDBInstanceCommandInput | DeleteDBParameterGroupCommandInput | DeleteDBProxyCommandInput | DeleteDBProxyEndpointCommandInput | DeleteDBSecurityGroupCommandInput | DeleteDBSnapshotCommandInput | DeleteDBSubnetGroupCommandInput | DeleteEventSubscriptionCommandInput | DeleteGlobalClusterCommandInput | DeleteIntegrationCommandInput | DeleteOptionGroupCommandInput | DeregisterDBProxyTargetsCommandInput | DescribeAccountAttributesCommandInput | DescribeBlueGreenDeploymentsCommandInput | DescribeCertificatesCommandInput | DescribeDBClusterAutomatedBackupsCommandInput | DescribeDBClusterBacktracksCommandInput | DescribeDBClusterEndpointsCommandInput | DescribeDBClusterParameterGroupsCommandInput | DescribeDBClusterParametersCommandInput | DescribeDBClusterSnapshotAttributesCommandInput | DescribeDBClusterSnapshotsCommandInput | DescribeDBClustersCommandInput | DescribeDBEngineVersionsCommandInput | DescribeDBInstanceAutomatedBackupsCommandInput | DescribeDBInstancesCommandInput | DescribeDBLogFilesCommandInput | DescribeDBParameterGroupsCommandInput | DescribeDBParametersCommandInput | DescribeDBProxiesCommandInput | DescribeDBProxyEndpointsCommandInput | DescribeDBProxyTargetGroupsCommandInput | DescribeDBProxyTargetsCommandInput | DescribeDBSecurityGroupsCommandInput | DescribeDBSnapshotAttributesCommandInput | DescribeDBSnapshotsCommandInput | DescribeDBSubnetGroupsCommandInput | DescribeEngineDefaultClusterParametersCommandInput | DescribeEngineDefaultParametersCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeExportTasksCommandInput | DescribeGlobalClustersCommandInput | DescribeIntegrationsCommandInput | DescribeOptionGroupOptionsCommandInput | DescribeOptionGroupsCommandInput | DescribeOrderableDBInstanceOptionsCommandInput | DescribePendingMaintenanceActionsCommandInput | DescribeReservedDBInstancesCommandInput | DescribeReservedDBInstancesOfferingsCommandInput | DescribeSourceRegionsCommandInput | DescribeValidDBInstanceModificationsCommandInput | DownloadDBLogFilePortionCommandInput | FailoverDBClusterCommandInput | FailoverGlobalClusterCommandInput | ListTagsForResourceCommandInput | ModifyActivityStreamCommandInput | ModifyCertificatesCommandInput | ModifyCurrentDBClusterCapacityCommandInput | ModifyCustomDBEngineVersionCommandInput | ModifyDBClusterCommandInput | ModifyDBClusterEndpointCommandInput | ModifyDBClusterParameterGroupCommandInput | ModifyDBClusterSnapshotAttributeCommandInput | ModifyDBInstanceCommandInput | ModifyDBParameterGroupCommandInput | ModifyDBProxyCommandInput | ModifyDBProxyEndpointCommandInput | ModifyDBProxyTargetGroupCommandInput | ModifyDBSnapshotAttributeCommandInput | ModifyDBSnapshotCommandInput | ModifyDBSubnetGroupCommandInput | ModifyEventSubscriptionCommandInput | ModifyGlobalClusterCommandInput | ModifyOptionGroupCommandInput | PromoteReadReplicaCommandInput | PromoteReadReplicaDBClusterCommandInput | PurchaseReservedDBInstancesOfferingCommandInput | RebootDBClusterCommandInput | RebootDBInstanceCommandInput | RegisterDBProxyTargetsCommandInput | RemoveFromGlobalClusterCommandInput | RemoveRoleFromDBClusterCommandInput | RemoveRoleFromDBInstanceCommandInput | RemoveSourceIdentifierFromSubscriptionCommandInput | RemoveTagsFromResourceCommandInput | ResetDBClusterParameterGroupCommandInput | ResetDBParameterGroupCommandInput | RestoreDBClusterFromS3CommandInput | RestoreDBClusterFromSnapshotCommandInput | RestoreDBClusterToPointInTimeCommandInput | RestoreDBInstanceFromDBSnapshotCommandInput | RestoreDBInstanceFromS3CommandInput | RestoreDBInstanceToPointInTimeCommandInput | RevokeDBSecurityGroupIngressCommandInput | StartActivityStreamCommandInput | StartDBClusterCommandInput | StartDBInstanceAutomatedBackupsReplicationCommandInput | StartDBInstanceCommandInput | StartExportTaskCommandInput | StopActivityStreamCommandInput | StopDBClusterCommandInput | StopDBInstanceAutomatedBackupsReplicationCommandInput | StopDBInstanceCommandInput | SwitchoverBlueGreenDeploymentCommandInput | SwitchoverGlobalClusterCommandInput | SwitchoverReadReplicaCommandInput;
|
|
162
165
|
/**
|
|
163
166
|
* @public
|
|
164
167
|
*/
|
|
165
|
-
export type ServiceOutputTypes = AddRoleToDBClusterCommandOutput | AddRoleToDBInstanceCommandOutput | AddSourceIdentifierToSubscriptionCommandOutput | AddTagsToResourceCommandOutput | ApplyPendingMaintenanceActionCommandOutput | AuthorizeDBSecurityGroupIngressCommandOutput | BacktrackDBClusterCommandOutput | CancelExportTaskCommandOutput | CopyDBClusterParameterGroupCommandOutput | CopyDBClusterSnapshotCommandOutput | CopyDBParameterGroupCommandOutput | CopyDBSnapshotCommandOutput | CopyOptionGroupCommandOutput | CreateBlueGreenDeploymentCommandOutput | CreateCustomDBEngineVersionCommandOutput | CreateDBClusterCommandOutput | CreateDBClusterEndpointCommandOutput | CreateDBClusterParameterGroupCommandOutput | CreateDBClusterSnapshotCommandOutput | CreateDBInstanceCommandOutput | CreateDBInstanceReadReplicaCommandOutput | CreateDBParameterGroupCommandOutput | CreateDBProxyCommandOutput | CreateDBProxyEndpointCommandOutput | CreateDBSecurityGroupCommandOutput | CreateDBSnapshotCommandOutput | CreateDBSubnetGroupCommandOutput | CreateEventSubscriptionCommandOutput | CreateGlobalClusterCommandOutput | CreateOptionGroupCommandOutput | DeleteBlueGreenDeploymentCommandOutput | DeleteCustomDBEngineVersionCommandOutput | DeleteDBClusterAutomatedBackupCommandOutput | DeleteDBClusterCommandOutput | DeleteDBClusterEndpointCommandOutput | DeleteDBClusterParameterGroupCommandOutput | DeleteDBClusterSnapshotCommandOutput | DeleteDBInstanceAutomatedBackupCommandOutput | DeleteDBInstanceCommandOutput | DeleteDBParameterGroupCommandOutput | DeleteDBProxyCommandOutput | DeleteDBProxyEndpointCommandOutput | DeleteDBSecurityGroupCommandOutput | DeleteDBSnapshotCommandOutput | DeleteDBSubnetGroupCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteGlobalClusterCommandOutput | DeleteOptionGroupCommandOutput | DeregisterDBProxyTargetsCommandOutput | DescribeAccountAttributesCommandOutput | DescribeBlueGreenDeploymentsCommandOutput | DescribeCertificatesCommandOutput | DescribeDBClusterAutomatedBackupsCommandOutput | DescribeDBClusterBacktracksCommandOutput | DescribeDBClusterEndpointsCommandOutput | DescribeDBClusterParameterGroupsCommandOutput | DescribeDBClusterParametersCommandOutput | DescribeDBClusterSnapshotAttributesCommandOutput | DescribeDBClusterSnapshotsCommandOutput | DescribeDBClustersCommandOutput | DescribeDBEngineVersionsCommandOutput | DescribeDBInstanceAutomatedBackupsCommandOutput | DescribeDBInstancesCommandOutput | DescribeDBLogFilesCommandOutput | DescribeDBParameterGroupsCommandOutput | DescribeDBParametersCommandOutput | DescribeDBProxiesCommandOutput | DescribeDBProxyEndpointsCommandOutput | DescribeDBProxyTargetGroupsCommandOutput | DescribeDBProxyTargetsCommandOutput | DescribeDBSecurityGroupsCommandOutput | DescribeDBSnapshotAttributesCommandOutput | DescribeDBSnapshotsCommandOutput | DescribeDBSubnetGroupsCommandOutput | DescribeEngineDefaultClusterParametersCommandOutput | DescribeEngineDefaultParametersCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeExportTasksCommandOutput | DescribeGlobalClustersCommandOutput | DescribeOptionGroupOptionsCommandOutput | DescribeOptionGroupsCommandOutput | DescribeOrderableDBInstanceOptionsCommandOutput | DescribePendingMaintenanceActionsCommandOutput | DescribeReservedDBInstancesCommandOutput | DescribeReservedDBInstancesOfferingsCommandOutput | DescribeSourceRegionsCommandOutput | DescribeValidDBInstanceModificationsCommandOutput | DownloadDBLogFilePortionCommandOutput | FailoverDBClusterCommandOutput | FailoverGlobalClusterCommandOutput | ListTagsForResourceCommandOutput | ModifyActivityStreamCommandOutput | ModifyCertificatesCommandOutput | ModifyCurrentDBClusterCapacityCommandOutput | ModifyCustomDBEngineVersionCommandOutput | ModifyDBClusterCommandOutput | ModifyDBClusterEndpointCommandOutput | ModifyDBClusterParameterGroupCommandOutput | ModifyDBClusterSnapshotAttributeCommandOutput | ModifyDBInstanceCommandOutput | ModifyDBParameterGroupCommandOutput | ModifyDBProxyCommandOutput | ModifyDBProxyEndpointCommandOutput | ModifyDBProxyTargetGroupCommandOutput | ModifyDBSnapshotAttributeCommandOutput | ModifyDBSnapshotCommandOutput | ModifyDBSubnetGroupCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyGlobalClusterCommandOutput | ModifyOptionGroupCommandOutput | PromoteReadReplicaCommandOutput | PromoteReadReplicaDBClusterCommandOutput | PurchaseReservedDBInstancesOfferingCommandOutput | RebootDBClusterCommandOutput | RebootDBInstanceCommandOutput | RegisterDBProxyTargetsCommandOutput | RemoveFromGlobalClusterCommandOutput | RemoveRoleFromDBClusterCommandOutput | RemoveRoleFromDBInstanceCommandOutput | RemoveSourceIdentifierFromSubscriptionCommandOutput | RemoveTagsFromResourceCommandOutput | ResetDBClusterParameterGroupCommandOutput | ResetDBParameterGroupCommandOutput | RestoreDBClusterFromS3CommandOutput | RestoreDBClusterFromSnapshotCommandOutput | RestoreDBClusterToPointInTimeCommandOutput | RestoreDBInstanceFromDBSnapshotCommandOutput | RestoreDBInstanceFromS3CommandOutput | RestoreDBInstanceToPointInTimeCommandOutput | RevokeDBSecurityGroupIngressCommandOutput | StartActivityStreamCommandOutput | StartDBClusterCommandOutput | StartDBInstanceAutomatedBackupsReplicationCommandOutput | StartDBInstanceCommandOutput | StartExportTaskCommandOutput | StopActivityStreamCommandOutput | StopDBClusterCommandOutput | StopDBInstanceAutomatedBackupsReplicationCommandOutput | StopDBInstanceCommandOutput | SwitchoverBlueGreenDeploymentCommandOutput | SwitchoverGlobalClusterCommandOutput | SwitchoverReadReplicaCommandOutput;
|
|
168
|
+
export type ServiceOutputTypes = AddRoleToDBClusterCommandOutput | AddRoleToDBInstanceCommandOutput | AddSourceIdentifierToSubscriptionCommandOutput | AddTagsToResourceCommandOutput | ApplyPendingMaintenanceActionCommandOutput | AuthorizeDBSecurityGroupIngressCommandOutput | BacktrackDBClusterCommandOutput | CancelExportTaskCommandOutput | CopyDBClusterParameterGroupCommandOutput | CopyDBClusterSnapshotCommandOutput | CopyDBParameterGroupCommandOutput | CopyDBSnapshotCommandOutput | CopyOptionGroupCommandOutput | CreateBlueGreenDeploymentCommandOutput | CreateCustomDBEngineVersionCommandOutput | CreateDBClusterCommandOutput | CreateDBClusterEndpointCommandOutput | CreateDBClusterParameterGroupCommandOutput | CreateDBClusterSnapshotCommandOutput | CreateDBInstanceCommandOutput | CreateDBInstanceReadReplicaCommandOutput | CreateDBParameterGroupCommandOutput | CreateDBProxyCommandOutput | CreateDBProxyEndpointCommandOutput | CreateDBSecurityGroupCommandOutput | CreateDBSnapshotCommandOutput | CreateDBSubnetGroupCommandOutput | CreateEventSubscriptionCommandOutput | CreateGlobalClusterCommandOutput | CreateIntegrationCommandOutput | CreateOptionGroupCommandOutput | DeleteBlueGreenDeploymentCommandOutput | DeleteCustomDBEngineVersionCommandOutput | DeleteDBClusterAutomatedBackupCommandOutput | DeleteDBClusterCommandOutput | DeleteDBClusterEndpointCommandOutput | DeleteDBClusterParameterGroupCommandOutput | DeleteDBClusterSnapshotCommandOutput | DeleteDBInstanceAutomatedBackupCommandOutput | DeleteDBInstanceCommandOutput | DeleteDBParameterGroupCommandOutput | DeleteDBProxyCommandOutput | DeleteDBProxyEndpointCommandOutput | DeleteDBSecurityGroupCommandOutput | DeleteDBSnapshotCommandOutput | DeleteDBSubnetGroupCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteGlobalClusterCommandOutput | DeleteIntegrationCommandOutput | DeleteOptionGroupCommandOutput | DeregisterDBProxyTargetsCommandOutput | DescribeAccountAttributesCommandOutput | DescribeBlueGreenDeploymentsCommandOutput | DescribeCertificatesCommandOutput | DescribeDBClusterAutomatedBackupsCommandOutput | DescribeDBClusterBacktracksCommandOutput | DescribeDBClusterEndpointsCommandOutput | DescribeDBClusterParameterGroupsCommandOutput | DescribeDBClusterParametersCommandOutput | DescribeDBClusterSnapshotAttributesCommandOutput | DescribeDBClusterSnapshotsCommandOutput | DescribeDBClustersCommandOutput | DescribeDBEngineVersionsCommandOutput | DescribeDBInstanceAutomatedBackupsCommandOutput | DescribeDBInstancesCommandOutput | DescribeDBLogFilesCommandOutput | DescribeDBParameterGroupsCommandOutput | DescribeDBParametersCommandOutput | DescribeDBProxiesCommandOutput | DescribeDBProxyEndpointsCommandOutput | DescribeDBProxyTargetGroupsCommandOutput | DescribeDBProxyTargetsCommandOutput | DescribeDBSecurityGroupsCommandOutput | DescribeDBSnapshotAttributesCommandOutput | DescribeDBSnapshotsCommandOutput | DescribeDBSubnetGroupsCommandOutput | DescribeEngineDefaultClusterParametersCommandOutput | DescribeEngineDefaultParametersCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeExportTasksCommandOutput | DescribeGlobalClustersCommandOutput | DescribeIntegrationsCommandOutput | DescribeOptionGroupOptionsCommandOutput | DescribeOptionGroupsCommandOutput | DescribeOrderableDBInstanceOptionsCommandOutput | DescribePendingMaintenanceActionsCommandOutput | DescribeReservedDBInstancesCommandOutput | DescribeReservedDBInstancesOfferingsCommandOutput | DescribeSourceRegionsCommandOutput | DescribeValidDBInstanceModificationsCommandOutput | DownloadDBLogFilePortionCommandOutput | FailoverDBClusterCommandOutput | FailoverGlobalClusterCommandOutput | ListTagsForResourceCommandOutput | ModifyActivityStreamCommandOutput | ModifyCertificatesCommandOutput | ModifyCurrentDBClusterCapacityCommandOutput | ModifyCustomDBEngineVersionCommandOutput | ModifyDBClusterCommandOutput | ModifyDBClusterEndpointCommandOutput | ModifyDBClusterParameterGroupCommandOutput | ModifyDBClusterSnapshotAttributeCommandOutput | ModifyDBInstanceCommandOutput | ModifyDBParameterGroupCommandOutput | ModifyDBProxyCommandOutput | ModifyDBProxyEndpointCommandOutput | ModifyDBProxyTargetGroupCommandOutput | ModifyDBSnapshotAttributeCommandOutput | ModifyDBSnapshotCommandOutput | ModifyDBSubnetGroupCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyGlobalClusterCommandOutput | ModifyOptionGroupCommandOutput | PromoteReadReplicaCommandOutput | PromoteReadReplicaDBClusterCommandOutput | PurchaseReservedDBInstancesOfferingCommandOutput | RebootDBClusterCommandOutput | RebootDBInstanceCommandOutput | RegisterDBProxyTargetsCommandOutput | RemoveFromGlobalClusterCommandOutput | RemoveRoleFromDBClusterCommandOutput | RemoveRoleFromDBInstanceCommandOutput | RemoveSourceIdentifierFromSubscriptionCommandOutput | RemoveTagsFromResourceCommandOutput | ResetDBClusterParameterGroupCommandOutput | ResetDBParameterGroupCommandOutput | RestoreDBClusterFromS3CommandOutput | RestoreDBClusterFromSnapshotCommandOutput | RestoreDBClusterToPointInTimeCommandOutput | RestoreDBInstanceFromDBSnapshotCommandOutput | RestoreDBInstanceFromS3CommandOutput | RestoreDBInstanceToPointInTimeCommandOutput | RevokeDBSecurityGroupIngressCommandOutput | StartActivityStreamCommandOutput | StartDBClusterCommandOutput | StartDBInstanceAutomatedBackupsReplicationCommandOutput | StartDBInstanceCommandOutput | StartExportTaskCommandOutput | StopActivityStreamCommandOutput | StopDBClusterCommandOutput | StopDBInstanceAutomatedBackupsReplicationCommandOutput | StopDBInstanceCommandOutput | SwitchoverBlueGreenDeploymentCommandOutput | SwitchoverGlobalClusterCommandOutput | SwitchoverReadReplicaCommandOutput;
|
|
166
169
|
/**
|
|
167
170
|
* @public
|
|
168
171
|
*/
|
|
@@ -75,6 +75,9 @@ export interface AddTagsToResourceCommandOutput extends __MetadataBearer {
|
|
|
75
75
|
* <p>
|
|
76
76
|
* <code>DBSnapshotIdentifier</code> doesn't refer to an existing DB snapshot.</p>
|
|
77
77
|
*
|
|
78
|
+
* @throws {@link IntegrationNotFoundFault} (client fault)
|
|
79
|
+
* <p>The specified integration could not be found.</p>
|
|
80
|
+
*
|
|
78
81
|
* @throws {@link RDSServiceException}
|
|
79
82
|
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
80
83
|
*
|
|
@@ -91,6 +91,7 @@ export interface CreateCustomDBEngineVersionCommandOutput extends DBEngineVersio
|
|
|
91
91
|
* // SupportsGlobalDatabases: true || false,
|
|
92
92
|
* // SupportsBabelfish: true || false,
|
|
93
93
|
* // SupportsLocalWriteForwarding: true || false,
|
|
94
|
+
* // SupportsIntegrations: true || false,
|
|
94
95
|
* // },
|
|
95
96
|
* // ],
|
|
96
97
|
* // SupportedTimezones: [ // SupportedTimezonesList
|
|
@@ -131,6 +132,7 @@ export interface CreateCustomDBEngineVersionCommandOutput extends DBEngineVersio
|
|
|
131
132
|
* // "STRING_VALUE",
|
|
132
133
|
* // ],
|
|
133
134
|
* // SupportsLocalWriteForwarding: true || false,
|
|
135
|
+
* // SupportsIntegrations: true || false,
|
|
134
136
|
* // };
|
|
135
137
|
*
|
|
136
138
|
* ```
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { CreateIntegrationMessage, Integration } from "../models/models_0";
|
|
5
|
+
import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateIntegrationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateIntegrationCommandInput extends CreateIntegrationMessage {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateIntegrationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateIntegrationCommandOutput extends Integration, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Creates a zero-ETL integration with Amazon Redshift. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.html">Working
|
|
27
|
+
* with Amazon Aurora zero-ETL integrations with Amazon Redshift</a> in the
|
|
28
|
+
* <i>Amazon Aurora User Guide</i>.</p>
|
|
29
|
+
* @example
|
|
30
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
31
|
+
* ```javascript
|
|
32
|
+
* import { RDSClient, CreateIntegrationCommand } from "@aws-sdk/client-rds"; // ES Modules import
|
|
33
|
+
* // const { RDSClient, CreateIntegrationCommand } = require("@aws-sdk/client-rds"); // CommonJS import
|
|
34
|
+
* const client = new RDSClient(config);
|
|
35
|
+
* const input = { // CreateIntegrationMessage
|
|
36
|
+
* SourceArn: "STRING_VALUE", // required
|
|
37
|
+
* TargetArn: "STRING_VALUE", // required
|
|
38
|
+
* IntegrationName: "STRING_VALUE", // required
|
|
39
|
+
* KMSKeyId: "STRING_VALUE",
|
|
40
|
+
* AdditionalEncryptionContext: { // EncryptionContextMap
|
|
41
|
+
* "<keys>": "STRING_VALUE",
|
|
42
|
+
* },
|
|
43
|
+
* Tags: [ // TagList
|
|
44
|
+
* { // Tag
|
|
45
|
+
* Key: "STRING_VALUE",
|
|
46
|
+
* Value: "STRING_VALUE",
|
|
47
|
+
* },
|
|
48
|
+
* ],
|
|
49
|
+
* };
|
|
50
|
+
* const command = new CreateIntegrationCommand(input);
|
|
51
|
+
* const response = await client.send(command);
|
|
52
|
+
* // { // Integration
|
|
53
|
+
* // SourceArn: "STRING_VALUE",
|
|
54
|
+
* // TargetArn: "STRING_VALUE",
|
|
55
|
+
* // IntegrationName: "STRING_VALUE",
|
|
56
|
+
* // IntegrationArn: "STRING_VALUE",
|
|
57
|
+
* // KMSKeyId: "STRING_VALUE",
|
|
58
|
+
* // AdditionalEncryptionContext: { // EncryptionContextMap
|
|
59
|
+
* // "<keys>": "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // Status: "creating" || "active" || "modifying" || "failed" || "deleting" || "syncing" || "needs_attention",
|
|
62
|
+
* // Tags: [ // TagList
|
|
63
|
+
* // { // Tag
|
|
64
|
+
* // Key: "STRING_VALUE",
|
|
65
|
+
* // Value: "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // ],
|
|
68
|
+
* // CreateTime: new Date("TIMESTAMP"),
|
|
69
|
+
* // Errors: [ // IntegrationErrorList
|
|
70
|
+
* // { // IntegrationError
|
|
71
|
+
* // ErrorCode: "STRING_VALUE", // required
|
|
72
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
73
|
+
* // },
|
|
74
|
+
* // ],
|
|
75
|
+
* // };
|
|
76
|
+
*
|
|
77
|
+
* ```
|
|
78
|
+
*
|
|
79
|
+
* @param CreateIntegrationCommandInput - {@link CreateIntegrationCommandInput}
|
|
80
|
+
* @returns {@link CreateIntegrationCommandOutput}
|
|
81
|
+
* @see {@link CreateIntegrationCommandInput} for command's `input` shape.
|
|
82
|
+
* @see {@link CreateIntegrationCommandOutput} for command's `response` shape.
|
|
83
|
+
* @see {@link RDSClientResolvedConfig | config} for RDSClient's `config` shape.
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link DBClusterNotFoundFault} (client fault)
|
|
86
|
+
* <p>
|
|
87
|
+
* <code>DBClusterIdentifier</code> doesn't refer to an existing DB cluster.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link DBInstanceNotFoundFault} (client fault)
|
|
90
|
+
* <p>
|
|
91
|
+
* <code>DBInstanceIdentifier</code> doesn't refer to an existing DB instance.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link IntegrationAlreadyExistsFault} (client fault)
|
|
94
|
+
* <p>The integration you are trying to create already exists.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link IntegrationConflictOperationFault} (client fault)
|
|
97
|
+
* <p>A conflicting conditional operation is currently in progress against this resource.
|
|
98
|
+
* Typically occurs when there are multiple requests being made to the same resource at the same time,
|
|
99
|
+
* and these requests conflict with each other.</p>
|
|
100
|
+
*
|
|
101
|
+
* @throws {@link IntegrationQuotaExceededFault} (client fault)
|
|
102
|
+
* <p>You can't crate any more zero-ETL integrations because the quota has been reached.</p>
|
|
103
|
+
*
|
|
104
|
+
* @throws {@link KMSKeyNotAccessibleFault} (client fault)
|
|
105
|
+
* <p>An error occurred accessing an Amazon Web Services KMS key.</p>
|
|
106
|
+
*
|
|
107
|
+
* @throws {@link RDSServiceException}
|
|
108
|
+
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
109
|
+
*
|
|
110
|
+
*/
|
|
111
|
+
export declare class CreateIntegrationCommand extends $Command<CreateIntegrationCommandInput, CreateIntegrationCommandOutput, RDSClientResolvedConfig> {
|
|
112
|
+
readonly input: CreateIntegrationCommandInput;
|
|
113
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
114
|
+
/**
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
117
|
+
constructor(input: CreateIntegrationCommandInput);
|
|
118
|
+
/**
|
|
119
|
+
* @internal
|
|
120
|
+
*/
|
|
121
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RDSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateIntegrationCommandInput, CreateIntegrationCommandOutput>;
|
|
122
|
+
/**
|
|
123
|
+
* @internal
|
|
124
|
+
*/
|
|
125
|
+
private serialize;
|
|
126
|
+
/**
|
|
127
|
+
* @internal
|
|
128
|
+
*/
|
|
129
|
+
private deserialize;
|
|
130
|
+
}
|
|
@@ -97,6 +97,7 @@ export interface DeleteCustomDBEngineVersionCommandOutput extends DBEngineVersio
|
|
|
97
97
|
* // SupportsGlobalDatabases: true || false,
|
|
98
98
|
* // SupportsBabelfish: true || false,
|
|
99
99
|
* // SupportsLocalWriteForwarding: true || false,
|
|
100
|
+
* // SupportsIntegrations: true || false,
|
|
100
101
|
* // },
|
|
101
102
|
* // ],
|
|
102
103
|
* // SupportedTimezones: [ // SupportedTimezonesList
|
|
@@ -137,6 +138,7 @@ export interface DeleteCustomDBEngineVersionCommandOutput extends DBEngineVersio
|
|
|
137
138
|
* // "STRING_VALUE",
|
|
138
139
|
* // ],
|
|
139
140
|
* // SupportsLocalWriteForwarding: true || false,
|
|
141
|
+
* // SupportsIntegrations: true || false,
|
|
140
142
|
* // };
|
|
141
143
|
*
|
|
142
144
|
* ```
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { DeleteIntegrationMessage, Integration } from "../models/models_0";
|
|
5
|
+
import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteIntegrationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteIntegrationCommandInput extends DeleteIntegrationMessage {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteIntegrationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteIntegrationCommandOutput extends Integration, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Deletes a zero-ETL integration with Amazon Redshift. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.deleting.html">Deleting Amazon Aurora zero-ETL integrations with Amazon Redshift</a> in the
|
|
27
|
+
* <i>Amazon Aurora User Guide</i>
|
|
28
|
+
* </p>
|
|
29
|
+
* @example
|
|
30
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
31
|
+
* ```javascript
|
|
32
|
+
* import { RDSClient, DeleteIntegrationCommand } from "@aws-sdk/client-rds"; // ES Modules import
|
|
33
|
+
* // const { RDSClient, DeleteIntegrationCommand } = require("@aws-sdk/client-rds"); // CommonJS import
|
|
34
|
+
* const client = new RDSClient(config);
|
|
35
|
+
* const input = { // DeleteIntegrationMessage
|
|
36
|
+
* IntegrationIdentifier: "STRING_VALUE", // required
|
|
37
|
+
* };
|
|
38
|
+
* const command = new DeleteIntegrationCommand(input);
|
|
39
|
+
* const response = await client.send(command);
|
|
40
|
+
* // { // Integration
|
|
41
|
+
* // SourceArn: "STRING_VALUE",
|
|
42
|
+
* // TargetArn: "STRING_VALUE",
|
|
43
|
+
* // IntegrationName: "STRING_VALUE",
|
|
44
|
+
* // IntegrationArn: "STRING_VALUE",
|
|
45
|
+
* // KMSKeyId: "STRING_VALUE",
|
|
46
|
+
* // AdditionalEncryptionContext: { // EncryptionContextMap
|
|
47
|
+
* // "<keys>": "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // Status: "creating" || "active" || "modifying" || "failed" || "deleting" || "syncing" || "needs_attention",
|
|
50
|
+
* // Tags: [ // TagList
|
|
51
|
+
* // { // Tag
|
|
52
|
+
* // Key: "STRING_VALUE",
|
|
53
|
+
* // Value: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // CreateTime: new Date("TIMESTAMP"),
|
|
57
|
+
* // Errors: [ // IntegrationErrorList
|
|
58
|
+
* // { // IntegrationError
|
|
59
|
+
* // ErrorCode: "STRING_VALUE", // required
|
|
60
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
65
|
+
* ```
|
|
66
|
+
*
|
|
67
|
+
* @param DeleteIntegrationCommandInput - {@link DeleteIntegrationCommandInput}
|
|
68
|
+
* @returns {@link DeleteIntegrationCommandOutput}
|
|
69
|
+
* @see {@link DeleteIntegrationCommandInput} for command's `input` shape.
|
|
70
|
+
* @see {@link DeleteIntegrationCommandOutput} for command's `response` shape.
|
|
71
|
+
* @see {@link RDSClientResolvedConfig | config} for RDSClient's `config` shape.
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link IntegrationConflictOperationFault} (client fault)
|
|
74
|
+
* <p>A conflicting conditional operation is currently in progress against this resource.
|
|
75
|
+
* Typically occurs when there are multiple requests being made to the same resource at the same time,
|
|
76
|
+
* and these requests conflict with each other.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link IntegrationNotFoundFault} (client fault)
|
|
79
|
+
* <p>The specified integration could not be found.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link InvalidIntegrationStateFault} (client fault)
|
|
82
|
+
* <p>The integration is in an invalid state and can't perform the requested operation.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link RDSServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
86
|
+
*
|
|
87
|
+
*/
|
|
88
|
+
export declare class DeleteIntegrationCommand extends $Command<DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput, RDSClientResolvedConfig> {
|
|
89
|
+
readonly input: DeleteIntegrationCommandInput;
|
|
90
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
91
|
+
/**
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
constructor(input: DeleteIntegrationCommandInput);
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
*/
|
|
98
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RDSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput>;
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
102
|
+
private serialize;
|
|
103
|
+
/**
|
|
104
|
+
* @internal
|
|
105
|
+
*/
|
|
106
|
+
private deserialize;
|
|
107
|
+
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
-
import { DBClusterParameterGroupDetails
|
|
4
|
+
import { DBClusterParameterGroupDetails } from "../models/models_0";
|
|
5
|
+
import { DescribeDBClusterParametersMessage } from "../models/models_1";
|
|
5
6
|
import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient";
|
|
6
7
|
/**
|
|
7
8
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
-
import { DescribeDBClusterSnapshotAttributesMessage, DescribeDBClusterSnapshotAttributesResult } from "../models/
|
|
4
|
+
import { DescribeDBClusterSnapshotAttributesMessage, DescribeDBClusterSnapshotAttributesResult } from "../models/models_1";
|
|
5
5
|
import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
-
import { DBClusterSnapshotMessage, DescribeDBClusterSnapshotsMessage } from "../models/
|
|
4
|
+
import { DBClusterSnapshotMessage, DescribeDBClusterSnapshotsMessage } from "../models/models_1";
|
|
5
5
|
import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
-
import { DBClusterMessage, DescribeDBClustersMessage } from "../models/
|
|
4
|
+
import { DBClusterMessage, DescribeDBClustersMessage } from "../models/models_1";
|
|
5
5
|
import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
-
import { DBEngineVersionMessage } from "../models/
|
|
5
|
-
import { DescribeDBEngineVersionsMessage } from "../models/models_1";
|
|
4
|
+
import { DBEngineVersionMessage, DescribeDBEngineVersionsMessage } from "../models/models_1";
|
|
6
5
|
import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient";
|
|
7
6
|
/**
|
|
8
7
|
* @public
|
|
@@ -96,6 +95,7 @@ export interface DescribeDBEngineVersionsCommandOutput extends DBEngineVersionMe
|
|
|
96
95
|
* // SupportsGlobalDatabases: true || false,
|
|
97
96
|
* // SupportsBabelfish: true || false,
|
|
98
97
|
* // SupportsLocalWriteForwarding: true || false,
|
|
98
|
+
* // SupportsIntegrations: true || false,
|
|
99
99
|
* // },
|
|
100
100
|
* // ],
|
|
101
101
|
* // SupportedTimezones: [ // SupportedTimezonesList
|
|
@@ -136,6 +136,7 @@ export interface DescribeDBEngineVersionsCommandOutput extends DBEngineVersionMe
|
|
|
136
136
|
* // "STRING_VALUE",
|
|
137
137
|
* // ],
|
|
138
138
|
* // SupportsLocalWriteForwarding: true || false,
|
|
139
|
+
* // SupportsIntegrations: true || false,
|
|
139
140
|
* // },
|
|
140
141
|
* // ],
|
|
141
142
|
* // };
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { DescribeIntegrationsMessage, DescribeIntegrationsResponse } from "../models/models_1";
|
|
5
|
+
import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DescribeIntegrationsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DescribeIntegrationsCommandInput extends DescribeIntegrationsMessage {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DescribeIntegrationsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DescribeIntegrationsCommandOutput extends DescribeIntegrationsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Describe one or more zero-ETL integration with Amazon Redshift. For more information,
|
|
27
|
+
* see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.describingmonitoring.html">Viewing and monitoring Amazon Aurora zero-ETL integrations with Amazon Redshift</a> in
|
|
28
|
+
* the <i>Amazon Aurora User Guide</i>
|
|
29
|
+
* </p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { RDSClient, DescribeIntegrationsCommand } from "@aws-sdk/client-rds"; // ES Modules import
|
|
34
|
+
* // const { RDSClient, DescribeIntegrationsCommand } = require("@aws-sdk/client-rds"); // CommonJS import
|
|
35
|
+
* const client = new RDSClient(config);
|
|
36
|
+
* const input = { // DescribeIntegrationsMessage
|
|
37
|
+
* IntegrationIdentifier: "STRING_VALUE",
|
|
38
|
+
* Filters: [ // FilterList
|
|
39
|
+
* { // Filter
|
|
40
|
+
* Name: "STRING_VALUE", // required
|
|
41
|
+
* Values: [ // FilterValueList // required
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* },
|
|
45
|
+
* ],
|
|
46
|
+
* MaxRecords: Number("int"),
|
|
47
|
+
* Marker: "STRING_VALUE",
|
|
48
|
+
* };
|
|
49
|
+
* const command = new DescribeIntegrationsCommand(input);
|
|
50
|
+
* const response = await client.send(command);
|
|
51
|
+
* // { // DescribeIntegrationsResponse
|
|
52
|
+
* // Marker: "STRING_VALUE",
|
|
53
|
+
* // Integrations: [ // IntegrationList
|
|
54
|
+
* // { // Integration
|
|
55
|
+
* // SourceArn: "STRING_VALUE",
|
|
56
|
+
* // TargetArn: "STRING_VALUE",
|
|
57
|
+
* // IntegrationName: "STRING_VALUE",
|
|
58
|
+
* // IntegrationArn: "STRING_VALUE",
|
|
59
|
+
* // KMSKeyId: "STRING_VALUE",
|
|
60
|
+
* // AdditionalEncryptionContext: { // EncryptionContextMap
|
|
61
|
+
* // "<keys>": "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // Status: "creating" || "active" || "modifying" || "failed" || "deleting" || "syncing" || "needs_attention",
|
|
64
|
+
* // Tags: [ // TagList
|
|
65
|
+
* // { // Tag
|
|
66
|
+
* // Key: "STRING_VALUE",
|
|
67
|
+
* // Value: "STRING_VALUE",
|
|
68
|
+
* // },
|
|
69
|
+
* // ],
|
|
70
|
+
* // CreateTime: new Date("TIMESTAMP"),
|
|
71
|
+
* // Errors: [ // IntegrationErrorList
|
|
72
|
+
* // { // IntegrationError
|
|
73
|
+
* // ErrorCode: "STRING_VALUE", // required
|
|
74
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
75
|
+
* // },
|
|
76
|
+
* // ],
|
|
77
|
+
* // },
|
|
78
|
+
* // ],
|
|
79
|
+
* // };
|
|
80
|
+
*
|
|
81
|
+
* ```
|
|
82
|
+
*
|
|
83
|
+
* @param DescribeIntegrationsCommandInput - {@link DescribeIntegrationsCommandInput}
|
|
84
|
+
* @returns {@link DescribeIntegrationsCommandOutput}
|
|
85
|
+
* @see {@link DescribeIntegrationsCommandInput} for command's `input` shape.
|
|
86
|
+
* @see {@link DescribeIntegrationsCommandOutput} for command's `response` shape.
|
|
87
|
+
* @see {@link RDSClientResolvedConfig | config} for RDSClient's `config` shape.
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link IntegrationNotFoundFault} (client fault)
|
|
90
|
+
* <p>The specified integration could not be found.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link RDSServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
94
|
+
*
|
|
95
|
+
*/
|
|
96
|
+
export declare class DescribeIntegrationsCommand extends $Command<DescribeIntegrationsCommandInput, DescribeIntegrationsCommandOutput, RDSClientResolvedConfig> {
|
|
97
|
+
readonly input: DescribeIntegrationsCommandInput;
|
|
98
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
constructor(input: DescribeIntegrationsCommandInput);
|
|
103
|
+
/**
|
|
104
|
+
* @internal
|
|
105
|
+
*/
|
|
106
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RDSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeIntegrationsCommandInput, DescribeIntegrationsCommandOutput>;
|
|
107
|
+
/**
|
|
108
|
+
* @internal
|
|
109
|
+
*/
|
|
110
|
+
private serialize;
|
|
111
|
+
/**
|
|
112
|
+
* @internal
|
|
113
|
+
*/
|
|
114
|
+
private deserialize;
|
|
115
|
+
}
|
|
@@ -85,6 +85,9 @@ export interface ListTagsForResourceCommandOutput extends TagListMessage, __Meta
|
|
|
85
85
|
* <p>
|
|
86
86
|
* <code>DBSnapshotIdentifier</code> doesn't refer to an existing DB snapshot.</p>
|
|
87
87
|
*
|
|
88
|
+
* @throws {@link IntegrationNotFoundFault} (client fault)
|
|
89
|
+
* <p>The specified integration could not be found.</p>
|
|
90
|
+
*
|
|
88
91
|
* @throws {@link RDSServiceException}
|
|
89
92
|
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
90
93
|
*
|
|
@@ -90,6 +90,7 @@ export interface ModifyCustomDBEngineVersionCommandOutput extends DBEngineVersio
|
|
|
90
90
|
* // SupportsGlobalDatabases: true || false,
|
|
91
91
|
* // SupportsBabelfish: true || false,
|
|
92
92
|
* // SupportsLocalWriteForwarding: true || false,
|
|
93
|
+
* // SupportsIntegrations: true || false,
|
|
93
94
|
* // },
|
|
94
95
|
* // ],
|
|
95
96
|
* // SupportedTimezones: [ // SupportedTimezonesList
|
|
@@ -130,6 +131,7 @@ export interface ModifyCustomDBEngineVersionCommandOutput extends DBEngineVersio
|
|
|
130
131
|
* // "STRING_VALUE",
|
|
131
132
|
* // ],
|
|
132
133
|
* // SupportsLocalWriteForwarding: true || false,
|
|
134
|
+
* // SupportsIntegrations: true || false,
|
|
133
135
|
* // };
|
|
134
136
|
*
|
|
135
137
|
* ```
|
|
@@ -74,6 +74,9 @@ export interface RemoveTagsFromResourceCommandOutput extends __MetadataBearer {
|
|
|
74
74
|
* <p>
|
|
75
75
|
* <code>DBSnapshotIdentifier</code> doesn't refer to an existing DB snapshot.</p>
|
|
76
76
|
*
|
|
77
|
+
* @throws {@link IntegrationNotFoundFault} (client fault)
|
|
78
|
+
* <p>The specified integration could not be found.</p>
|
|
79
|
+
*
|
|
77
80
|
* @throws {@link RDSServiceException}
|
|
78
81
|
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
79
82
|
*
|
|
@@ -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";
|