@aws-sdk/client-rds 3.439.0 → 3.445.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 +40 -0
- package/dist-cjs/RDS.js +10 -0
- package/dist-cjs/commands/CreateTenantDatabaseCommand.js +52 -0
- package/dist-cjs/commands/DeleteTenantDatabaseCommand.js +52 -0
- package/dist-cjs/commands/DescribeDBSnapshotTenantDatabasesCommand.js +51 -0
- package/dist-cjs/commands/DescribeTenantDatabasesCommand.js +52 -0
- package/dist-cjs/commands/ModifyTenantDatabaseCommand.js +52 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/models/models_0.js +83 -20
- package/dist-cjs/models/models_1.js +37 -1
- package/dist-cjs/pagination/DescribeDBSnapshotTenantDatabasesPaginator.js +29 -0
- package/dist-cjs/pagination/DescribeTenantDatabasesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_query.js +700 -7
- package/dist-cjs/waiters/index.js +2 -0
- package/dist-cjs/waiters/waitForTenantDatabaseAvailable.js +89 -0
- package/dist-cjs/waiters/waitForTenantDatabaseDeleted.js +39 -0
- package/dist-es/RDS.js +10 -0
- package/dist-es/commands/CreateTenantDatabaseCommand.js +48 -0
- package/dist-es/commands/DeleteTenantDatabaseCommand.js +48 -0
- package/dist-es/commands/DescribeDBSnapshotTenantDatabasesCommand.js +47 -0
- package/dist-es/commands/DescribeTenantDatabasesCommand.js +48 -0
- package/dist-es/commands/ModifyTenantDatabaseCommand.js +48 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +71 -16
- package/dist-es/models/models_1.js +32 -0
- package/dist-es/pagination/DescribeDBSnapshotTenantDatabasesPaginator.js +25 -0
- package/dist-es/pagination/DescribeTenantDatabasesPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_query.js +684 -2
- package/dist-es/waiters/index.js +2 -0
- package/dist-es/waiters/waitForTenantDatabaseAvailable.js +84 -0
- package/dist-es/waiters/waitForTenantDatabaseDeleted.js +34 -0
- package/dist-types/RDS.d.ts +35 -0
- package/dist-types/RDSClient.d.ts +7 -2
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +6 -0
- package/dist-types/commands/CopyDBSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/CreateDBClusterCommand.d.ts +12 -0
- package/dist-types/commands/CreateDBInstanceCommand.d.ts +7 -0
- package/dist-types/commands/CreateDBInstanceReadReplicaCommand.d.ts +6 -0
- package/dist-types/commands/CreateDBSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/CreateTenantDatabaseCommand.d.ts +122 -0
- package/dist-types/commands/DeleteDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/DeleteDBInstanceAutomatedBackupCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDBInstanceCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDBSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/DeleteTenantDatabaseCommand.d.ts +111 -0
- package/dist-types/commands/DescribeDBClusterAutomatedBackupsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeDBClusterBacktracksCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBClusterEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBClusterParameterGroupsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBClusterParametersCommand.d.ts +1 -2
- package/dist-types/commands/DescribeDBClustersCommand.d.ts +8 -0
- package/dist-types/commands/DescribeDBInstanceAutomatedBackupsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeDBInstancesCommand.d.ts +2 -0
- package/dist-types/commands/DescribeDBSnapshotTenantDatabasesCommand.d.ts +117 -0
- package/dist-types/commands/DescribeDBSnapshotsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeTenantDatabasesCommand.d.ts +114 -0
- package/dist-types/commands/FailoverDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
- package/dist-types/commands/ModifyDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/ModifyDBInstanceCommand.d.ts +7 -0
- package/dist-types/commands/ModifyDBSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/ModifyTenantDatabaseCommand.d.ts +114 -0
- package/dist-types/commands/PromoteReadReplicaCommand.d.ts +2 -0
- package/dist-types/commands/PromoteReadReplicaDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/RebootDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/RebootDBInstanceCommand.d.ts +2 -0
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +6 -0
- package/dist-types/commands/RestoreDBClusterFromS3Command.d.ts +8 -0
- package/dist-types/commands/RestoreDBClusterFromSnapshotCommand.d.ts +12 -0
- package/dist-types/commands/RestoreDBClusterToPointInTimeCommand.d.ts +12 -0
- package/dist-types/commands/RestoreDBInstanceFromDBSnapshotCommand.d.ts +6 -0
- package/dist-types/commands/RestoreDBInstanceFromS3Command.d.ts +2 -0
- package/dist-types/commands/RestoreDBInstanceToPointInTimeCommand.d.ts +6 -0
- package/dist-types/commands/StartDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/StartDBInstanceAutomatedBackupsReplicationCommand.d.ts +1 -0
- package/dist-types/commands/StartDBInstanceCommand.d.ts +2 -0
- package/dist-types/commands/StopDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/StopDBInstanceAutomatedBackupsReplicationCommand.d.ts +1 -0
- package/dist-types/commands/StopDBInstanceCommand.d.ts +2 -0
- package/dist-types/commands/SwitchoverReadReplicaCommand.d.ts +2 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +364 -408
- package/dist-types/models/models_1.d.ts +944 -117
- package/dist-types/pagination/DescribeDBSnapshotTenantDatabasesPaginator.d.ts +7 -0
- package/dist-types/pagination/DescribeTenantDatabasesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_query.d.ts +45 -0
- package/dist-types/ts3.4/RDS.d.ts +91 -0
- package/dist-types/ts3.4/RDSClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateTenantDatabaseCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteTenantDatabaseCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeDBClusterAutomatedBackupsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeDBClusterBacktracksCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBClusterEndpointsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBClusterParameterGroupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBClusterParametersCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeDBSnapshotTenantDatabasesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeTenantDatabasesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ModifyTenantDatabaseCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +104 -71
- package/dist-types/ts3.4/models/models_1.d.ts +136 -1
- package/dist-types/ts3.4/pagination/DescribeDBSnapshotTenantDatabasesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/DescribeTenantDatabasesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +60 -0
- package/dist-types/ts3.4/waiters/index.d.ts +2 -0
- package/dist-types/ts3.4/waiters/waitForTenantDatabaseAvailable.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForTenantDatabaseDeleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +2 -0
- package/dist-types/waiters/waitForTenantDatabaseAvailable.d.ts +14 -0
- package/dist-types/waiters/waitForTenantDatabaseDeleted.d.ts +14 -0
- package/package.json +4 -4
|
@@ -414,7 +414,7 @@ export interface EventSubscription {
|
|
|
414
414
|
EventCategoriesList?: string[];
|
|
415
415
|
/**
|
|
416
416
|
* @public
|
|
417
|
-
* <p>
|
|
417
|
+
* <p>Specifies whether the subscription is enabled. True indicates the subscription is enabled.</p>
|
|
418
418
|
*/
|
|
419
419
|
Enabled?: boolean;
|
|
420
420
|
/**
|
|
@@ -545,6 +545,18 @@ export declare class DBSnapshotNotFoundFault extends __BaseException {
|
|
|
545
545
|
*/
|
|
546
546
|
constructor(opts: __ExceptionOptionType<DBSnapshotNotFoundFault, __BaseException>);
|
|
547
547
|
}
|
|
548
|
+
/**
|
|
549
|
+
* @public
|
|
550
|
+
* <p>The specified snapshot tenant database wasn't found.</p>
|
|
551
|
+
*/
|
|
552
|
+
export declare class DBSnapshotTenantDatabaseNotFoundFault extends __BaseException {
|
|
553
|
+
readonly name: "DBSnapshotTenantDatabaseNotFoundFault";
|
|
554
|
+
readonly $fault: "client";
|
|
555
|
+
/**
|
|
556
|
+
* @internal
|
|
557
|
+
*/
|
|
558
|
+
constructor(opts: __ExceptionOptionType<DBSnapshotTenantDatabaseNotFoundFault, __BaseException>);
|
|
559
|
+
}
|
|
548
560
|
/**
|
|
549
561
|
* @public
|
|
550
562
|
* <p>The specified integration could not be found.</p>
|
|
@@ -557,6 +569,18 @@ export declare class IntegrationNotFoundFault extends __BaseException {
|
|
|
557
569
|
*/
|
|
558
570
|
constructor(opts: __ExceptionOptionType<IntegrationNotFoundFault, __BaseException>);
|
|
559
571
|
}
|
|
572
|
+
/**
|
|
573
|
+
* @public
|
|
574
|
+
* <p>The specified tenant database wasn't found in the DB instance.</p>
|
|
575
|
+
*/
|
|
576
|
+
export declare class TenantDatabaseNotFoundFault extends __BaseException {
|
|
577
|
+
readonly name: "TenantDatabaseNotFoundFault";
|
|
578
|
+
readonly $fault: "client";
|
|
579
|
+
/**
|
|
580
|
+
* @internal
|
|
581
|
+
*/
|
|
582
|
+
constructor(opts: __ExceptionOptionType<TenantDatabaseNotFoundFault, __BaseException>);
|
|
583
|
+
}
|
|
560
584
|
/**
|
|
561
585
|
* @public
|
|
562
586
|
* <p></p>
|
|
@@ -2235,6 +2259,12 @@ export interface DBSnapshot {
|
|
|
2235
2259
|
* <p>Indicates whether the DB instance has a dedicated log volume (DLV) enabled.</p>
|
|
2236
2260
|
*/
|
|
2237
2261
|
DedicatedLogVolume?: boolean;
|
|
2262
|
+
/**
|
|
2263
|
+
* @public
|
|
2264
|
+
* <p>Indicates whether the snapshot is of a DB instance using the multi-tenant
|
|
2265
|
+
* configuration (TRUE) or the single-tenant configuration (FALSE).</p>
|
|
2266
|
+
*/
|
|
2267
|
+
MultiTenant?: boolean;
|
|
2238
2268
|
}
|
|
2239
2269
|
/**
|
|
2240
2270
|
* @public
|
|
@@ -3437,6 +3467,22 @@ export declare class Ec2ImagePropertiesNotSupportedFault extends __BaseException
|
|
|
3437
3467
|
*/
|
|
3438
3468
|
constructor(opts: __ExceptionOptionType<Ec2ImagePropertiesNotSupportedFault, __BaseException>);
|
|
3439
3469
|
}
|
|
3470
|
+
/**
|
|
3471
|
+
* @public
|
|
3472
|
+
* <p>Reserved for future use.</p>
|
|
3473
|
+
*/
|
|
3474
|
+
export interface RdsCustomClusterConfiguration {
|
|
3475
|
+
/**
|
|
3476
|
+
* @public
|
|
3477
|
+
* <p>Reserved for future use.</p>
|
|
3478
|
+
*/
|
|
3479
|
+
InterconnectSubnetId?: string;
|
|
3480
|
+
/**
|
|
3481
|
+
* @public
|
|
3482
|
+
* <p>Reserved for future use.</p>
|
|
3483
|
+
*/
|
|
3484
|
+
TransitGatewayMulticastDomainId?: string;
|
|
3485
|
+
}
|
|
3440
3486
|
/**
|
|
3441
3487
|
* @public
|
|
3442
3488
|
* <p>Contains the scaling configuration of an Aurora Serverless v1 DB cluster.</p>
|
|
@@ -3961,6 +4007,11 @@ export interface CreateDBClusterMessage {
|
|
|
3961
4007
|
* <p>Valid for Cluster Type: Aurora DB clusters only</p>
|
|
3962
4008
|
*/
|
|
3963
4009
|
ScalingConfiguration?: ScalingConfiguration;
|
|
4010
|
+
/**
|
|
4011
|
+
* @public
|
|
4012
|
+
* <p>Reserved for future use.</p>
|
|
4013
|
+
*/
|
|
4014
|
+
RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
|
|
3964
4015
|
/**
|
|
3965
4016
|
* @public
|
|
3966
4017
|
* <p>Specifies whether the DB cluster has deletion protection enabled.
|
|
@@ -4530,6 +4581,11 @@ export interface ClusterPendingModifiedValues {
|
|
|
4530
4581
|
* instead automatically adjusts as needed.</p>
|
|
4531
4582
|
*/
|
|
4532
4583
|
AllocatedStorage?: number;
|
|
4584
|
+
/**
|
|
4585
|
+
* @public
|
|
4586
|
+
* <p>Reserved for future use.</p>
|
|
4587
|
+
*/
|
|
4588
|
+
RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
|
|
4533
4589
|
/**
|
|
4534
4590
|
* @public
|
|
4535
4591
|
* <p>The Provisioned IOPS (I/O operations per second) value. This setting is only for non-Aurora Multi-AZ DB clusters.</p>
|
|
@@ -4883,6 +4939,11 @@ export interface DBCluster {
|
|
|
4883
4939
|
* <i>Amazon Aurora User Guide</i>.</p>
|
|
4884
4940
|
*/
|
|
4885
4941
|
ScalingConfigurationInfo?: ScalingConfigurationInfo;
|
|
4942
|
+
/**
|
|
4943
|
+
* @public
|
|
4944
|
+
* <p>Reserved for future use.</p>
|
|
4945
|
+
*/
|
|
4946
|
+
RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
|
|
4886
4947
|
/**
|
|
4887
4948
|
* @public
|
|
4888
4949
|
* <p>Indicates whether the DB cluster has deletion protection enabled.
|
|
@@ -6871,6 +6932,25 @@ export interface CreateDBInstanceMessage {
|
|
|
6871
6932
|
* <p>Indicates whether the DB instance has a dedicated log volume (DLV) enabled.</p>
|
|
6872
6933
|
*/
|
|
6873
6934
|
DedicatedLogVolume?: boolean;
|
|
6935
|
+
/**
|
|
6936
|
+
* @public
|
|
6937
|
+
* <p>Specifies whether to use the multi-tenant configuration or the single-tenant
|
|
6938
|
+
* configuration (default). This parameter only applies to RDS for Oracle container
|
|
6939
|
+
* database (CDB) engines.</p>
|
|
6940
|
+
* <p>Note the following restrictions: </p>
|
|
6941
|
+
* <ul>
|
|
6942
|
+
* <li>
|
|
6943
|
+
* <p>The DB engine that you specify in the request must support the multi-tenant
|
|
6944
|
+
* configuration. If you attempt to enable the multi-tenant configuration on a DB
|
|
6945
|
+
* engine that doesn't support it, the request fails.</p>
|
|
6946
|
+
* </li>
|
|
6947
|
+
* <li>
|
|
6948
|
+
* <p>If you specify the multi-tenant configuration when you create your DB instance,
|
|
6949
|
+
* you can't later modify this DB instance to use the single-tenant configuration.</p>
|
|
6950
|
+
* </li>
|
|
6951
|
+
* </ul>
|
|
6952
|
+
*/
|
|
6953
|
+
MultiTenant?: boolean;
|
|
6874
6954
|
}
|
|
6875
6955
|
/**
|
|
6876
6956
|
* @public
|
|
@@ -7314,6 +7394,12 @@ export interface PendingModifiedValues {
|
|
|
7314
7394
|
* <p>Indicates whether the DB instance has a dedicated log volume (DLV) enabled.></p>
|
|
7315
7395
|
*/
|
|
7316
7396
|
DedicatedLogVolume?: boolean;
|
|
7397
|
+
/**
|
|
7398
|
+
* @public
|
|
7399
|
+
* <p>Indicates whether the DB instance will change to the multi-tenant configuration (TRUE)
|
|
7400
|
+
* or the single-tenant configuration (FALSE). </p>
|
|
7401
|
+
*/
|
|
7402
|
+
MultiTenant?: boolean;
|
|
7317
7403
|
}
|
|
7318
7404
|
/**
|
|
7319
7405
|
* @public
|
|
@@ -7339,7 +7425,7 @@ export interface DBInstanceStatusInfo {
|
|
|
7339
7425
|
StatusType?: string;
|
|
7340
7426
|
/**
|
|
7341
7427
|
* @public
|
|
7342
|
-
* <p>
|
|
7428
|
+
* <p>Indicates whether the instance is operating normally (TRUE) or is in an error state (FALSE).</p>
|
|
7343
7429
|
*/
|
|
7344
7430
|
Normal?: boolean;
|
|
7345
7431
|
/**
|
|
@@ -7401,7 +7487,7 @@ export interface DBInstance {
|
|
|
7401
7487
|
MasterUsername?: string;
|
|
7402
7488
|
/**
|
|
7403
7489
|
* @public
|
|
7404
|
-
* <p>
|
|
7490
|
+
* <p>The initial database name that you provided (if required) when you created
|
|
7405
7491
|
* the DB instance. This name is returned for the life of your DB instance. For an RDS for
|
|
7406
7492
|
* Oracle CDB instance, the name identifies the PDB rather than the CDB.</p>
|
|
7407
7493
|
*/
|
|
@@ -7922,6 +8008,12 @@ export interface DBInstance {
|
|
|
7922
8008
|
* information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem">Upgrading the storage file system for a DB instance</a>.</p>
|
|
7923
8009
|
*/
|
|
7924
8010
|
IsStorageConfigUpgradeAvailable?: boolean;
|
|
8011
|
+
/**
|
|
8012
|
+
* @public
|
|
8013
|
+
* <p>Specifies whether the DB instance is in the multi-tenant configuration (TRUE) or the
|
|
8014
|
+
* single-tenant configuration (FALSE).</p>
|
|
8015
|
+
*/
|
|
8016
|
+
MultiTenant?: boolean;
|
|
7925
8017
|
}
|
|
7926
8018
|
/**
|
|
7927
8019
|
* @public
|
|
@@ -7999,6 +8091,19 @@ export declare class StorageTypeNotSupportedFault extends __BaseException {
|
|
|
7999
8091
|
*/
|
|
8000
8092
|
constructor(opts: __ExceptionOptionType<StorageTypeNotSupportedFault, __BaseException>);
|
|
8001
8093
|
}
|
|
8094
|
+
/**
|
|
8095
|
+
* @public
|
|
8096
|
+
* <p>You attempted to create more tenant databases than are permitted in your Amazon Web Services
|
|
8097
|
+
* account.</p>
|
|
8098
|
+
*/
|
|
8099
|
+
export declare class TenantDatabaseQuotaExceededFault extends __BaseException {
|
|
8100
|
+
readonly name: "TenantDatabaseQuotaExceededFault";
|
|
8101
|
+
readonly $fault: "client";
|
|
8102
|
+
/**
|
|
8103
|
+
* @internal
|
|
8104
|
+
*/
|
|
8105
|
+
constructor(opts: __ExceptionOptionType<TenantDatabaseQuotaExceededFault, __BaseException>);
|
|
8106
|
+
}
|
|
8002
8107
|
/**
|
|
8003
8108
|
* @public
|
|
8004
8109
|
*/
|
|
@@ -9831,13 +9936,16 @@ export interface FailoverState {
|
|
|
9831
9936
|
* starts.</p>
|
|
9832
9937
|
* </li>
|
|
9833
9938
|
* <li>
|
|
9834
|
-
* <p>failing-over
|
|
9835
|
-
* as demoting the primary Aurora DB cluster, promoting the secondary Aurora DB cluster, and synchronizing replicas.</p>
|
|
9939
|
+
* <p>failing-over Aurora is promoting the chosen secondary Aurora DB cluster to become the new primary DB cluster to fail over the global cluster.</p>
|
|
9836
9940
|
* </li>
|
|
9837
9941
|
* <li>
|
|
9838
9942
|
* <p>cancelling The request to switch over or fail over the global cluster was cancelled and the primary
|
|
9839
9943
|
* Aurora DB cluster and the selected secondary Aurora DB cluster are returning to their previous states.</p>
|
|
9840
9944
|
* </li>
|
|
9945
|
+
* <li>
|
|
9946
|
+
* <p>switching-over This status covers the range of Aurora internal operations that take place during the switchover process, such
|
|
9947
|
+
* as demoting the primary Aurora DB cluster, promoting the secondary Aurora DB cluster, and synchronizing replicas.</p>
|
|
9948
|
+
* </li>
|
|
9841
9949
|
* </ul>
|
|
9842
9950
|
*/
|
|
9843
9951
|
Status?: FailoverStatus;
|
|
@@ -10297,6 +10405,192 @@ export interface CreateOptionGroupResult {
|
|
|
10297
10405
|
*/
|
|
10298
10406
|
OptionGroup?: OptionGroup;
|
|
10299
10407
|
}
|
|
10408
|
+
/**
|
|
10409
|
+
* @public
|
|
10410
|
+
*/
|
|
10411
|
+
export interface CreateTenantDatabaseMessage {
|
|
10412
|
+
/**
|
|
10413
|
+
* @public
|
|
10414
|
+
* <p>The user-supplied DB instance identifier. RDS creates your tenant database in this DB
|
|
10415
|
+
* instance. This parameter isn't case-sensitive.</p>
|
|
10416
|
+
*/
|
|
10417
|
+
DBInstanceIdentifier: string | undefined;
|
|
10418
|
+
/**
|
|
10419
|
+
* @public
|
|
10420
|
+
* <p>The user-supplied name of the tenant database that you want to create in your DB
|
|
10421
|
+
* instance. This parameter has the same constraints as <code>DBName</code> in
|
|
10422
|
+
* <code>CreateDBInstance</code>.</p>
|
|
10423
|
+
*/
|
|
10424
|
+
TenantDBName: string | undefined;
|
|
10425
|
+
/**
|
|
10426
|
+
* @public
|
|
10427
|
+
* <p>The name for the master user account in your tenant database. RDS creates this user
|
|
10428
|
+
* account in the tenant database and grants privileges to the master user. This parameter
|
|
10429
|
+
* is case-sensitive.</p>
|
|
10430
|
+
* <p>Constraints:</p>
|
|
10431
|
+
* <ul>
|
|
10432
|
+
* <li>
|
|
10433
|
+
* <p>Must be 1 to 16 letters, numbers, or underscores.</p>
|
|
10434
|
+
* </li>
|
|
10435
|
+
* <li>
|
|
10436
|
+
* <p>First character must be a letter.</p>
|
|
10437
|
+
* </li>
|
|
10438
|
+
* <li>
|
|
10439
|
+
* <p>Can't be a reserved word for the chosen database engine.</p>
|
|
10440
|
+
* </li>
|
|
10441
|
+
* </ul>
|
|
10442
|
+
*/
|
|
10443
|
+
MasterUsername: string | undefined;
|
|
10444
|
+
/**
|
|
10445
|
+
* @public
|
|
10446
|
+
* <p>The password for the master user in your tenant database.</p>
|
|
10447
|
+
* <p>Constraints:</p>
|
|
10448
|
+
* <ul>
|
|
10449
|
+
* <li>
|
|
10450
|
+
* <p>Must be 8 to 30 characters.</p>
|
|
10451
|
+
* </li>
|
|
10452
|
+
* <li>
|
|
10453
|
+
* <p>Can include any printable ASCII character except forward slash
|
|
10454
|
+
* (<code>/</code>), double quote (<code>"</code>), at symbol (<code>@</code>),
|
|
10455
|
+
* ampersand (<code>&</code>), or single quote (<code>'</code>).</p>
|
|
10456
|
+
* </li>
|
|
10457
|
+
* </ul>
|
|
10458
|
+
*/
|
|
10459
|
+
MasterUserPassword: string | undefined;
|
|
10460
|
+
/**
|
|
10461
|
+
* @public
|
|
10462
|
+
* <p>The character set for your tenant database. If you don't specify a value, the
|
|
10463
|
+
* character set name defaults to <code>AL32UTF8</code>.</p>
|
|
10464
|
+
*/
|
|
10465
|
+
CharacterSetName?: string;
|
|
10466
|
+
/**
|
|
10467
|
+
* @public
|
|
10468
|
+
* <p>The <code>NCHAR</code> value for the tenant database.</p>
|
|
10469
|
+
*/
|
|
10470
|
+
NcharCharacterSetName?: string;
|
|
10471
|
+
/**
|
|
10472
|
+
* @public
|
|
10473
|
+
* <p>A list of tags.
|
|
10474
|
+
* For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS Resources</a> in the <i>Amazon RDS User Guide.</i>
|
|
10475
|
+
* </p>
|
|
10476
|
+
*/
|
|
10477
|
+
Tags?: Tag[];
|
|
10478
|
+
}
|
|
10479
|
+
/**
|
|
10480
|
+
* @public
|
|
10481
|
+
* <p>A response element in the <code>ModifyTenantDatabase</code> operation that describes
|
|
10482
|
+
* changes that will be applied. Specific changes are identified by subelements.</p>
|
|
10483
|
+
*/
|
|
10484
|
+
export interface TenantDatabasePendingModifiedValues {
|
|
10485
|
+
/**
|
|
10486
|
+
* @public
|
|
10487
|
+
* <p>The master password for the tenant database.</p>
|
|
10488
|
+
*/
|
|
10489
|
+
MasterUserPassword?: string;
|
|
10490
|
+
/**
|
|
10491
|
+
* @public
|
|
10492
|
+
* <p>The name of the tenant database.</p>
|
|
10493
|
+
*/
|
|
10494
|
+
TenantDBName?: string;
|
|
10495
|
+
}
|
|
10496
|
+
/**
|
|
10497
|
+
* @public
|
|
10498
|
+
* <p>A tenant database in the DB instance. This data type is an element in the response to
|
|
10499
|
+
* the <code>DescribeTenantDatabases</code> action.</p>
|
|
10500
|
+
*/
|
|
10501
|
+
export interface TenantDatabase {
|
|
10502
|
+
/**
|
|
10503
|
+
* @public
|
|
10504
|
+
* <p>The creation time of the tenant database.</p>
|
|
10505
|
+
*/
|
|
10506
|
+
TenantDatabaseCreateTime?: Date;
|
|
10507
|
+
/**
|
|
10508
|
+
* @public
|
|
10509
|
+
* <p>The ID of the DB instance that contains the tenant database.</p>
|
|
10510
|
+
*/
|
|
10511
|
+
DBInstanceIdentifier?: string;
|
|
10512
|
+
/**
|
|
10513
|
+
* @public
|
|
10514
|
+
* <p>The database name of the tenant database.</p>
|
|
10515
|
+
*/
|
|
10516
|
+
TenantDBName?: string;
|
|
10517
|
+
/**
|
|
10518
|
+
* @public
|
|
10519
|
+
* <p>The status of the tenant database.</p>
|
|
10520
|
+
*/
|
|
10521
|
+
Status?: string;
|
|
10522
|
+
/**
|
|
10523
|
+
* @public
|
|
10524
|
+
* <p>The master username of the tenant database.</p>
|
|
10525
|
+
*/
|
|
10526
|
+
MasterUsername?: string;
|
|
10527
|
+
/**
|
|
10528
|
+
* @public
|
|
10529
|
+
* <p>The Amazon Web Services Region-unique, immutable identifier for the DB instance.</p>
|
|
10530
|
+
*/
|
|
10531
|
+
DbiResourceId?: string;
|
|
10532
|
+
/**
|
|
10533
|
+
* @public
|
|
10534
|
+
* <p>The Amazon Web Services Region-unique, immutable identifier for the tenant database.</p>
|
|
10535
|
+
*/
|
|
10536
|
+
TenantDatabaseResourceId?: string;
|
|
10537
|
+
/**
|
|
10538
|
+
* @public
|
|
10539
|
+
* <p>The Amazon Resource Name (ARN) for the tenant database.</p>
|
|
10540
|
+
*/
|
|
10541
|
+
TenantDatabaseARN?: string;
|
|
10542
|
+
/**
|
|
10543
|
+
* @public
|
|
10544
|
+
* <p>The character set of the tenant database.</p>
|
|
10545
|
+
*/
|
|
10546
|
+
CharacterSetName?: string;
|
|
10547
|
+
/**
|
|
10548
|
+
* @public
|
|
10549
|
+
* <p>The <code>NCHAR</code> character set name of the tenant database.</p>
|
|
10550
|
+
*/
|
|
10551
|
+
NcharCharacterSetName?: string;
|
|
10552
|
+
/**
|
|
10553
|
+
* @public
|
|
10554
|
+
* <p>Specifies whether deletion protection is enabled for the DB instance.</p>
|
|
10555
|
+
*/
|
|
10556
|
+
DeletionProtection?: boolean;
|
|
10557
|
+
/**
|
|
10558
|
+
* @public
|
|
10559
|
+
* <p>Information about pending changes for a tenant database.</p>
|
|
10560
|
+
*/
|
|
10561
|
+
PendingModifiedValues?: TenantDatabasePendingModifiedValues;
|
|
10562
|
+
/**
|
|
10563
|
+
* @public
|
|
10564
|
+
* <p>A list of tags.
|
|
10565
|
+
* For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS Resources</a> in the <i>Amazon RDS User Guide.</i>
|
|
10566
|
+
* </p>
|
|
10567
|
+
*/
|
|
10568
|
+
TagList?: Tag[];
|
|
10569
|
+
}
|
|
10570
|
+
/**
|
|
10571
|
+
* @public
|
|
10572
|
+
*/
|
|
10573
|
+
export interface CreateTenantDatabaseResult {
|
|
10574
|
+
/**
|
|
10575
|
+
* @public
|
|
10576
|
+
* <p>A tenant database in the DB instance. This data type is an element in the response to
|
|
10577
|
+
* the <code>DescribeTenantDatabases</code> action.</p>
|
|
10578
|
+
*/
|
|
10579
|
+
TenantDatabase?: TenantDatabase;
|
|
10580
|
+
}
|
|
10581
|
+
/**
|
|
10582
|
+
* @public
|
|
10583
|
+
* <p>You attempted to either create a tenant database that already exists or
|
|
10584
|
+
* modify a tenant database to use the name of an existing tenant database.</p>
|
|
10585
|
+
*/
|
|
10586
|
+
export declare class TenantDatabaseAlreadyExistsFault extends __BaseException {
|
|
10587
|
+
readonly name: "TenantDatabaseAlreadyExistsFault";
|
|
10588
|
+
readonly $fault: "client";
|
|
10589
|
+
/**
|
|
10590
|
+
* @internal
|
|
10591
|
+
*/
|
|
10592
|
+
constructor(opts: __ExceptionOptionType<TenantDatabaseAlreadyExistsFault, __BaseException>);
|
|
10593
|
+
}
|
|
10300
10594
|
/**
|
|
10301
10595
|
* @public
|
|
10302
10596
|
*/
|
|
@@ -11092,6 +11386,12 @@ export interface DBInstanceAutomatedBackup {
|
|
|
11092
11386
|
* <p>Indicates whether the DB instance has a dedicated log volume (DLV) enabled.</p>
|
|
11093
11387
|
*/
|
|
11094
11388
|
DedicatedLogVolume?: boolean;
|
|
11389
|
+
/**
|
|
11390
|
+
* @public
|
|
11391
|
+
* <p>Specifies whether the automatic backup is for a DB instance in the multi-tenant
|
|
11392
|
+
* configuration (TRUE) or the single-tenant configuration (FALSE). </p>
|
|
11393
|
+
*/
|
|
11394
|
+
MultiTenant?: boolean;
|
|
11095
11395
|
}
|
|
11096
11396
|
/**
|
|
11097
11397
|
* @public
|
|
@@ -11387,6 +11687,55 @@ export declare class InvalidOptionGroupStateFault extends __BaseException {
|
|
|
11387
11687
|
*/
|
|
11388
11688
|
constructor(opts: __ExceptionOptionType<InvalidOptionGroupStateFault, __BaseException>);
|
|
11389
11689
|
}
|
|
11690
|
+
/**
|
|
11691
|
+
* @public
|
|
11692
|
+
*/
|
|
11693
|
+
export interface DeleteTenantDatabaseMessage {
|
|
11694
|
+
/**
|
|
11695
|
+
* @public
|
|
11696
|
+
* <p>The user-supplied identifier for the DB instance that contains the tenant database
|
|
11697
|
+
* that you want to delete.</p>
|
|
11698
|
+
*/
|
|
11699
|
+
DBInstanceIdentifier: string | undefined;
|
|
11700
|
+
/**
|
|
11701
|
+
* @public
|
|
11702
|
+
* <p>The user-supplied name of the tenant database that you want to remove from your DB
|
|
11703
|
+
* instance. Amazon RDS deletes the tenant database with this name. This parameter isn’t
|
|
11704
|
+
* case-sensitive.</p>
|
|
11705
|
+
*/
|
|
11706
|
+
TenantDBName: string | undefined;
|
|
11707
|
+
/**
|
|
11708
|
+
* @public
|
|
11709
|
+
* <p>Specifies whether to skip the creation of a final DB snapshot before removing the
|
|
11710
|
+
* tenant database from your DB instance. If you enable this parameter, RDS doesn't create
|
|
11711
|
+
* a DB snapshot. If you don't enable this parameter, RDS creates a DB snapshot before it
|
|
11712
|
+
* deletes the tenant database. By default, RDS doesn't skip the final snapshot. If you
|
|
11713
|
+
* don't enable this parameter, you must specify the <code>FinalDBSnapshotIdentifier</code>
|
|
11714
|
+
* parameter.</p>
|
|
11715
|
+
*/
|
|
11716
|
+
SkipFinalSnapshot?: boolean;
|
|
11717
|
+
/**
|
|
11718
|
+
* @public
|
|
11719
|
+
* <p>The <code>DBSnapshotIdentifier</code> of the new <code>DBSnapshot</code> created when
|
|
11720
|
+
* the <code>SkipFinalSnapshot</code> parameter is disabled.</p>
|
|
11721
|
+
* <note>
|
|
11722
|
+
* <p>If you enable this parameter and also enable <code>SkipFinalShapshot</code>, the
|
|
11723
|
+
* command results in an error.</p>
|
|
11724
|
+
* </note>
|
|
11725
|
+
*/
|
|
11726
|
+
FinalDBSnapshotIdentifier?: string;
|
|
11727
|
+
}
|
|
11728
|
+
/**
|
|
11729
|
+
* @public
|
|
11730
|
+
*/
|
|
11731
|
+
export interface DeleteTenantDatabaseResult {
|
|
11732
|
+
/**
|
|
11733
|
+
* @public
|
|
11734
|
+
* <p>A tenant database in the DB instance. This data type is an element in the response to
|
|
11735
|
+
* the <code>DescribeTenantDatabases</code> action.</p>
|
|
11736
|
+
*/
|
|
11737
|
+
TenantDatabase?: TenantDatabase;
|
|
11738
|
+
}
|
|
11390
11739
|
/**
|
|
11391
11740
|
* @public
|
|
11392
11741
|
* <p>The specified RDS DB instance or Aurora DB cluster isn't available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.</p>
|
|
@@ -11713,415 +12062,22 @@ export interface DBClusterAutomatedBackupMessage {
|
|
|
11713
12062
|
DBClusterAutomatedBackups?: DBClusterAutomatedBackup[];
|
|
11714
12063
|
}
|
|
11715
12064
|
/**
|
|
11716
|
-
* @
|
|
12065
|
+
* @internal
|
|
11717
12066
|
*/
|
|
11718
|
-
export
|
|
11719
|
-
/**
|
|
11720
|
-
* @public
|
|
11721
|
-
* <p>The resource ID of the DB cluster that is the source of the automated backup. This parameter isn't case-sensitive.</p>
|
|
11722
|
-
*/
|
|
11723
|
-
DbClusterResourceId?: string;
|
|
11724
|
-
/**
|
|
11725
|
-
* @public
|
|
11726
|
-
* <p>(Optional) The user-supplied DB cluster identifier. If this parameter is specified, it must
|
|
11727
|
-
* match the identifier of an existing DB cluster. It returns information from the
|
|
11728
|
-
* specific DB cluster's automated backup. This parameter isn't case-sensitive.</p>
|
|
11729
|
-
*/
|
|
11730
|
-
DBClusterIdentifier?: string;
|
|
11731
|
-
/**
|
|
11732
|
-
* @public
|
|
11733
|
-
* <p>A filter that specifies which resources to return based on status.</p>
|
|
11734
|
-
* <p>Supported filters are the following:</p>
|
|
11735
|
-
* <ul>
|
|
11736
|
-
* <li>
|
|
11737
|
-
* <p>
|
|
11738
|
-
* <code>status</code>
|
|
11739
|
-
* </p>
|
|
11740
|
-
* <ul>
|
|
11741
|
-
* <li>
|
|
11742
|
-
* <p>
|
|
11743
|
-
* <code>retained</code> - Automated backups for deleted clusters and after backup replication is stopped.</p>
|
|
11744
|
-
* </li>
|
|
11745
|
-
* </ul>
|
|
11746
|
-
* </li>
|
|
11747
|
-
* <li>
|
|
11748
|
-
* <p>
|
|
11749
|
-
* <code>db-cluster-id</code> - Accepts DB cluster identifiers and Amazon Resource Names (ARNs).
|
|
11750
|
-
* The results list includes only information about the DB cluster automated backups identified by these ARNs.</p>
|
|
11751
|
-
* </li>
|
|
11752
|
-
* <li>
|
|
11753
|
-
* <p>
|
|
11754
|
-
* <code>db-cluster-resource-id</code> - Accepts DB resource identifiers and Amazon Resource Names (ARNs).
|
|
11755
|
-
* The results list includes only information about the DB cluster resources identified by these ARNs.</p>
|
|
11756
|
-
* </li>
|
|
11757
|
-
* </ul>
|
|
11758
|
-
* <p>Returns all resources by default. The status for each resource is specified in the response.</p>
|
|
11759
|
-
*/
|
|
11760
|
-
Filters?: Filter[];
|
|
11761
|
-
/**
|
|
11762
|
-
* @public
|
|
11763
|
-
* <p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code>
|
|
11764
|
-
* value, a pagination token called a marker is included in the response so that you can retrieve the remaining results.</p>
|
|
11765
|
-
*/
|
|
11766
|
-
MaxRecords?: number;
|
|
11767
|
-
/**
|
|
11768
|
-
* @public
|
|
11769
|
-
* <p>The pagination token provided in the previous request. If this parameter is specified the response includes only
|
|
11770
|
-
* records beyond the marker, up to <code>MaxRecords</code>.</p>
|
|
11771
|
-
*/
|
|
11772
|
-
Marker?: string;
|
|
11773
|
-
}
|
|
11774
|
-
/**
|
|
11775
|
-
* @public
|
|
11776
|
-
* <p>Contains the result of a successful invocation of the <code>DescribeDBClusterBacktracks</code> action.</p>
|
|
11777
|
-
*/
|
|
11778
|
-
export interface DBClusterBacktrackMessage {
|
|
11779
|
-
/**
|
|
11780
|
-
* @public
|
|
11781
|
-
* <p>A pagination token that can be used in a later <code>DescribeDBClusterBacktracks</code> request.</p>
|
|
11782
|
-
*/
|
|
11783
|
-
Marker?: string;
|
|
11784
|
-
/**
|
|
11785
|
-
* @public
|
|
11786
|
-
* <p>Contains a list of backtracks for the user.</p>
|
|
11787
|
-
*/
|
|
11788
|
-
DBClusterBacktracks?: DBClusterBacktrack[];
|
|
11789
|
-
}
|
|
11790
|
-
/**
|
|
11791
|
-
* @public
|
|
11792
|
-
* <p>
|
|
11793
|
-
* <code>BacktrackIdentifier</code> doesn't refer to an existing backtrack.</p>
|
|
11794
|
-
*/
|
|
11795
|
-
export declare class DBClusterBacktrackNotFoundFault extends __BaseException {
|
|
11796
|
-
readonly name: "DBClusterBacktrackNotFoundFault";
|
|
11797
|
-
readonly $fault: "client";
|
|
11798
|
-
/**
|
|
11799
|
-
* @internal
|
|
11800
|
-
*/
|
|
11801
|
-
constructor(opts: __ExceptionOptionType<DBClusterBacktrackNotFoundFault, __BaseException>);
|
|
11802
|
-
}
|
|
11803
|
-
/**
|
|
11804
|
-
* @public
|
|
11805
|
-
* <p></p>
|
|
11806
|
-
*/
|
|
11807
|
-
export interface DescribeDBClusterBacktracksMessage {
|
|
11808
|
-
/**
|
|
11809
|
-
* @public
|
|
11810
|
-
* <p>The DB cluster identifier of the DB cluster to be described. This parameter is
|
|
11811
|
-
* stored as a lowercase string.</p>
|
|
11812
|
-
* <p>Constraints:</p>
|
|
11813
|
-
* <ul>
|
|
11814
|
-
* <li>
|
|
11815
|
-
* <p>Must contain from 1 to 63 alphanumeric characters or hyphens.</p>
|
|
11816
|
-
* </li>
|
|
11817
|
-
* <li>
|
|
11818
|
-
* <p>First character must be a letter.</p>
|
|
11819
|
-
* </li>
|
|
11820
|
-
* <li>
|
|
11821
|
-
* <p>Can't end with a hyphen or contain two consecutive hyphens.</p>
|
|
11822
|
-
* </li>
|
|
11823
|
-
* </ul>
|
|
11824
|
-
* <p>Example: <code>my-cluster1</code>
|
|
11825
|
-
* </p>
|
|
11826
|
-
*/
|
|
11827
|
-
DBClusterIdentifier: string | undefined;
|
|
11828
|
-
/**
|
|
11829
|
-
* @public
|
|
11830
|
-
* <p>If specified, this value is the backtrack identifier of the backtrack to be
|
|
11831
|
-
* described.</p>
|
|
11832
|
-
* <p>Constraints:</p>
|
|
11833
|
-
* <ul>
|
|
11834
|
-
* <li>
|
|
11835
|
-
* <p>Must contain a valid universally unique identifier (UUID). For more information about UUIDs, see
|
|
11836
|
-
* <a href="https://en.wikipedia.org/wiki/Universally_unique_identifier">Universally unique
|
|
11837
|
-
* identifier</a>.</p>
|
|
11838
|
-
* </li>
|
|
11839
|
-
* </ul>
|
|
11840
|
-
* <p>Example: <code>123e4567-e89b-12d3-a456-426655440000</code>
|
|
11841
|
-
* </p>
|
|
11842
|
-
*/
|
|
11843
|
-
BacktrackIdentifier?: string;
|
|
11844
|
-
/**
|
|
11845
|
-
* @public
|
|
11846
|
-
* <p>A filter that specifies one or more DB clusters to describe. Supported filters
|
|
11847
|
-
* include the following:</p>
|
|
11848
|
-
* <ul>
|
|
11849
|
-
* <li>
|
|
11850
|
-
* <p>
|
|
11851
|
-
* <code>db-cluster-backtrack-id</code> - Accepts backtrack identifiers. The
|
|
11852
|
-
* results list includes information about only the backtracks identified by these
|
|
11853
|
-
* identifiers.</p>
|
|
11854
|
-
* </li>
|
|
11855
|
-
* <li>
|
|
11856
|
-
* <p>
|
|
11857
|
-
* <code>db-cluster-backtrack-status</code> - Accepts any of the following backtrack status values:</p>
|
|
11858
|
-
* <ul>
|
|
11859
|
-
* <li>
|
|
11860
|
-
* <p>
|
|
11861
|
-
* <code>applying</code>
|
|
11862
|
-
* </p>
|
|
11863
|
-
* </li>
|
|
11864
|
-
* <li>
|
|
11865
|
-
* <p>
|
|
11866
|
-
* <code>completed</code>
|
|
11867
|
-
* </p>
|
|
11868
|
-
* </li>
|
|
11869
|
-
* <li>
|
|
11870
|
-
* <p>
|
|
11871
|
-
* <code>failed</code>
|
|
11872
|
-
* </p>
|
|
11873
|
-
* </li>
|
|
11874
|
-
* <li>
|
|
11875
|
-
* <p>
|
|
11876
|
-
* <code>pending</code>
|
|
11877
|
-
* </p>
|
|
11878
|
-
* </li>
|
|
11879
|
-
* </ul>
|
|
11880
|
-
* <p>The results list includes information about only the backtracks identified
|
|
11881
|
-
* by these values.</p>
|
|
11882
|
-
* </li>
|
|
11883
|
-
* </ul>
|
|
11884
|
-
*/
|
|
11885
|
-
Filters?: Filter[];
|
|
11886
|
-
/**
|
|
11887
|
-
* @public
|
|
11888
|
-
* <p>The maximum number of records to include in the response.
|
|
11889
|
-
* If more records exist than the specified <code>MaxRecords</code> value,
|
|
11890
|
-
* a pagination token called a marker is included in the response so you can retrieve the remaining results.</p>
|
|
11891
|
-
* <p>Default: 100</p>
|
|
11892
|
-
* <p>Constraints: Minimum 20, maximum 100.</p>
|
|
11893
|
-
*/
|
|
11894
|
-
MaxRecords?: number;
|
|
11895
|
-
/**
|
|
11896
|
-
* @public
|
|
11897
|
-
* <p>An optional pagination token provided by a previous
|
|
11898
|
-
* <code>DescribeDBClusterBacktracks</code> request.
|
|
11899
|
-
* If this parameter is specified, the response includes
|
|
11900
|
-
* only records beyond the marker,
|
|
11901
|
-
* up to the value specified by <code>MaxRecords</code>.</p>
|
|
11902
|
-
*/
|
|
11903
|
-
Marker?: string;
|
|
11904
|
-
}
|
|
11905
|
-
/**
|
|
11906
|
-
* @public
|
|
11907
|
-
*/
|
|
11908
|
-
export interface DBClusterEndpointMessage {
|
|
11909
|
-
/**
|
|
11910
|
-
* @public
|
|
11911
|
-
* <p>An optional pagination token provided by a previous
|
|
11912
|
-
* <code>DescribeDBClusterEndpoints</code> request.
|
|
11913
|
-
* If this parameter is specified, the response includes
|
|
11914
|
-
* only records beyond the marker,
|
|
11915
|
-
* up to the value specified by <code>MaxRecords</code>.</p>
|
|
11916
|
-
*/
|
|
11917
|
-
Marker?: string;
|
|
11918
|
-
/**
|
|
11919
|
-
* @public
|
|
11920
|
-
* <p>Contains the details of the endpoints associated with the cluster
|
|
11921
|
-
* and matching any filter conditions.</p>
|
|
11922
|
-
*/
|
|
11923
|
-
DBClusterEndpoints?: DBClusterEndpoint[];
|
|
11924
|
-
}
|
|
11925
|
-
/**
|
|
11926
|
-
* @public
|
|
11927
|
-
*/
|
|
11928
|
-
export interface DescribeDBClusterEndpointsMessage {
|
|
11929
|
-
/**
|
|
11930
|
-
* @public
|
|
11931
|
-
* <p>The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is
|
|
11932
|
-
* stored as a lowercase string.</p>
|
|
11933
|
-
*/
|
|
11934
|
-
DBClusterIdentifier?: string;
|
|
11935
|
-
/**
|
|
11936
|
-
* @public
|
|
11937
|
-
* <p>The identifier of the endpoint to describe. This parameter is stored as a lowercase string.</p>
|
|
11938
|
-
*/
|
|
11939
|
-
DBClusterEndpointIdentifier?: string;
|
|
11940
|
-
/**
|
|
11941
|
-
* @public
|
|
11942
|
-
* <p>A set of name-value pairs that define which endpoints to include in the output.
|
|
11943
|
-
* The filters are specified as name-value pairs, in the format
|
|
11944
|
-
* <code>Name=<i>endpoint_type</i>,Values=<i>endpoint_type1</i>,<i>endpoint_type2</i>,...</code>.
|
|
11945
|
-
* <code>Name</code> can be one of: <code>db-cluster-endpoint-type</code>, <code>db-cluster-endpoint-custom-type</code>, <code>db-cluster-endpoint-id</code>, <code>db-cluster-endpoint-status</code>.
|
|
11946
|
-
* <code>Values</code> for the <code> db-cluster-endpoint-type</code> filter can be one or more of: <code>reader</code>, <code>writer</code>, <code>custom</code>.
|
|
11947
|
-
* <code>Values</code> for the <code>db-cluster-endpoint-custom-type</code> filter can be one or more of: <code>reader</code>, <code>any</code>.
|
|
11948
|
-
* <code>Values</code> for the <code>db-cluster-endpoint-status</code> filter can be one or more of: <code>available</code>, <code>creating</code>, <code>deleting</code>, <code>inactive</code>, <code>modifying</code>.</p>
|
|
11949
|
-
*/
|
|
11950
|
-
Filters?: Filter[];
|
|
11951
|
-
/**
|
|
11952
|
-
* @public
|
|
11953
|
-
* <p>The maximum number of records to include in the response.
|
|
11954
|
-
* If more records exist than the specified <code>MaxRecords</code> value,
|
|
11955
|
-
* a pagination token called a marker is included in the response so you can retrieve the remaining results.</p>
|
|
11956
|
-
* <p>Default: 100</p>
|
|
11957
|
-
* <p>Constraints: Minimum 20, maximum 100.</p>
|
|
11958
|
-
*/
|
|
11959
|
-
MaxRecords?: number;
|
|
11960
|
-
/**
|
|
11961
|
-
* @public
|
|
11962
|
-
* <p>An optional pagination token provided by a previous
|
|
11963
|
-
* <code>DescribeDBClusterEndpoints</code> request.
|
|
11964
|
-
* If this parameter is specified, the response includes
|
|
11965
|
-
* only records beyond the marker,
|
|
11966
|
-
* up to the value specified by <code>MaxRecords</code>.</p>
|
|
11967
|
-
*/
|
|
11968
|
-
Marker?: string;
|
|
11969
|
-
}
|
|
12067
|
+
export declare const CreateTenantDatabaseMessageFilterSensitiveLog: (obj: CreateTenantDatabaseMessage) => any;
|
|
11970
12068
|
/**
|
|
11971
|
-
* @
|
|
11972
|
-
* <p></p>
|
|
12069
|
+
* @internal
|
|
11973
12070
|
*/
|
|
11974
|
-
export
|
|
11975
|
-
/**
|
|
11976
|
-
* @public
|
|
11977
|
-
* <p>An optional pagination token provided by a previous
|
|
11978
|
-
* <code>DescribeDBClusterParameterGroups</code> request.
|
|
11979
|
-
* If this parameter is specified, the response includes
|
|
11980
|
-
* only records beyond the marker,
|
|
11981
|
-
* up to the value specified by <code>MaxRecords</code>.</p>
|
|
11982
|
-
*/
|
|
11983
|
-
Marker?: string;
|
|
11984
|
-
/**
|
|
11985
|
-
* @public
|
|
11986
|
-
* <p>A list of DB cluster parameter groups.</p>
|
|
11987
|
-
*/
|
|
11988
|
-
DBClusterParameterGroups?: DBClusterParameterGroup[];
|
|
11989
|
-
}
|
|
12071
|
+
export declare const TenantDatabasePendingModifiedValuesFilterSensitiveLog: (obj: TenantDatabasePendingModifiedValues) => any;
|
|
11990
12072
|
/**
|
|
11991
|
-
* @
|
|
11992
|
-
* <p></p>
|
|
12073
|
+
* @internal
|
|
11993
12074
|
*/
|
|
11994
|
-
export
|
|
11995
|
-
/**
|
|
11996
|
-
* @public
|
|
11997
|
-
* <p>The name of a specific DB cluster parameter group to return details for.</p>
|
|
11998
|
-
* <p>Constraints:</p>
|
|
11999
|
-
* <ul>
|
|
12000
|
-
* <li>
|
|
12001
|
-
* <p>If supplied, must match the name of an existing DBClusterParameterGroup.</p>
|
|
12002
|
-
* </li>
|
|
12003
|
-
* </ul>
|
|
12004
|
-
*/
|
|
12005
|
-
DBClusterParameterGroupName?: string;
|
|
12006
|
-
/**
|
|
12007
|
-
* @public
|
|
12008
|
-
* <p>This parameter isn't currently supported.</p>
|
|
12009
|
-
*/
|
|
12010
|
-
Filters?: Filter[];
|
|
12011
|
-
/**
|
|
12012
|
-
* @public
|
|
12013
|
-
* <p>The maximum number of records to include in the response.
|
|
12014
|
-
* If more records exist than the specified <code>MaxRecords</code> value,
|
|
12015
|
-
* a pagination token called a marker is included in the response so you can retrieve the remaining results.</p>
|
|
12016
|
-
* <p>Default: 100</p>
|
|
12017
|
-
* <p>Constraints: Minimum 20, maximum 100.</p>
|
|
12018
|
-
*/
|
|
12019
|
-
MaxRecords?: number;
|
|
12020
|
-
/**
|
|
12021
|
-
* @public
|
|
12022
|
-
* <p>An optional pagination token provided by a previous
|
|
12023
|
-
* <code>DescribeDBClusterParameterGroups</code> request.
|
|
12024
|
-
* If this parameter is specified, the response includes
|
|
12025
|
-
* only records beyond the marker,
|
|
12026
|
-
* up to the value specified by <code>MaxRecords</code>.</p>
|
|
12027
|
-
*/
|
|
12028
|
-
Marker?: string;
|
|
12029
|
-
}
|
|
12075
|
+
export declare const TenantDatabaseFilterSensitiveLog: (obj: TenantDatabase) => any;
|
|
12030
12076
|
/**
|
|
12031
|
-
* @
|
|
12032
|
-
* @enum
|
|
12077
|
+
* @internal
|
|
12033
12078
|
*/
|
|
12034
|
-
export declare const
|
|
12035
|
-
readonly immediate: "immediate";
|
|
12036
|
-
readonly pending_reboot: "pending-reboot";
|
|
12037
|
-
};
|
|
12038
|
-
/**
|
|
12039
|
-
* @public
|
|
12040
|
-
*/
|
|
12041
|
-
export type ApplyMethod = (typeof ApplyMethod)[keyof typeof ApplyMethod];
|
|
12042
|
-
/**
|
|
12043
|
-
* @public
|
|
12044
|
-
* <p>This data type is used as a request parameter in the
|
|
12045
|
-
* <code>ModifyDBParameterGroup</code> and <code>ResetDBParameterGroup</code> actions.</p>
|
|
12046
|
-
* <p>This data type is used as a response element in the
|
|
12047
|
-
* <code>DescribeEngineDefaultParameters</code> and <code>DescribeDBParameters</code> actions.</p>
|
|
12048
|
-
*/
|
|
12049
|
-
export interface Parameter {
|
|
12050
|
-
/**
|
|
12051
|
-
* @public
|
|
12052
|
-
* <p>The name of the parameter.</p>
|
|
12053
|
-
*/
|
|
12054
|
-
ParameterName?: string;
|
|
12055
|
-
/**
|
|
12056
|
-
* @public
|
|
12057
|
-
* <p>The value of the parameter.</p>
|
|
12058
|
-
*/
|
|
12059
|
-
ParameterValue?: string;
|
|
12060
|
-
/**
|
|
12061
|
-
* @public
|
|
12062
|
-
* <p>Provides a description of the parameter.</p>
|
|
12063
|
-
*/
|
|
12064
|
-
Description?: string;
|
|
12065
|
-
/**
|
|
12066
|
-
* @public
|
|
12067
|
-
* <p>The source of the parameter value.</p>
|
|
12068
|
-
*/
|
|
12069
|
-
Source?: string;
|
|
12070
|
-
/**
|
|
12071
|
-
* @public
|
|
12072
|
-
* <p>Specifies the engine specific parameters type.</p>
|
|
12073
|
-
*/
|
|
12074
|
-
ApplyType?: string;
|
|
12075
|
-
/**
|
|
12076
|
-
* @public
|
|
12077
|
-
* <p>Specifies the valid data type for the parameter.</p>
|
|
12078
|
-
*/
|
|
12079
|
-
DataType?: string;
|
|
12080
|
-
/**
|
|
12081
|
-
* @public
|
|
12082
|
-
* <p>Specifies the valid range of values for the parameter.</p>
|
|
12083
|
-
*/
|
|
12084
|
-
AllowedValues?: string;
|
|
12085
|
-
/**
|
|
12086
|
-
* @public
|
|
12087
|
-
* <p>Indicates whether (<code>true</code>) or not (<code>false</code>) the parameter can be modified.
|
|
12088
|
-
* Some parameters have security or operational implications
|
|
12089
|
-
* that prevent them from being changed.</p>
|
|
12090
|
-
*/
|
|
12091
|
-
IsModifiable?: boolean;
|
|
12092
|
-
/**
|
|
12093
|
-
* @public
|
|
12094
|
-
* <p>The earliest engine version to which the parameter can apply.</p>
|
|
12095
|
-
*/
|
|
12096
|
-
MinimumEngineVersion?: string;
|
|
12097
|
-
/**
|
|
12098
|
-
* @public
|
|
12099
|
-
* <p>Indicates when to apply parameter updates.</p>
|
|
12100
|
-
*/
|
|
12101
|
-
ApplyMethod?: ApplyMethod;
|
|
12102
|
-
/**
|
|
12103
|
-
* @public
|
|
12104
|
-
* <p>The valid DB engine modes.</p>
|
|
12105
|
-
*/
|
|
12106
|
-
SupportedEngineModes?: string[];
|
|
12107
|
-
}
|
|
12079
|
+
export declare const CreateTenantDatabaseResultFilterSensitiveLog: (obj: CreateTenantDatabaseResult) => any;
|
|
12108
12080
|
/**
|
|
12109
|
-
* @
|
|
12110
|
-
* <p>Provides details about a DB cluster parameter group including the parameters in the DB cluster parameter group.</p>
|
|
12081
|
+
* @internal
|
|
12111
12082
|
*/
|
|
12112
|
-
export
|
|
12113
|
-
/**
|
|
12114
|
-
* @public
|
|
12115
|
-
* <p>Provides a list of parameters for the DB cluster parameter group.</p>
|
|
12116
|
-
*/
|
|
12117
|
-
Parameters?: Parameter[];
|
|
12118
|
-
/**
|
|
12119
|
-
* @public
|
|
12120
|
-
* <p>An optional pagination token provided by a previous
|
|
12121
|
-
* <code>DescribeDBClusterParameters</code> request.
|
|
12122
|
-
* If this parameter is specified, the response includes
|
|
12123
|
-
* only records beyond the marker,
|
|
12124
|
-
* up to the value specified by <code>MaxRecords</code>.</p>
|
|
12125
|
-
*/
|
|
12126
|
-
Marker?: string;
|
|
12127
|
-
}
|
|
12083
|
+
export declare const DeleteTenantDatabaseResultFilterSensitiveLog: (obj: DeleteTenantDatabaseResult) => any;
|