@aws-sdk/client-rds 3.301.0 → 3.303.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/dist-cjs/models/models_0.js +86 -102
- package/dist-cjs/models/models_1.js +42 -49
- package/dist-cjs/protocols/Aws_query.js +12 -0
- package/dist-es/models/models_0.js +86 -102
- package/dist-es/models/models_1.js +42 -49
- package/dist-es/protocols/Aws_query.js +12 -0
- package/dist-types/RDS.d.ts +16 -12
- package/dist-types/commands/CreateDBClusterCommand.d.ts +6 -5
- package/dist-types/commands/CreateDBInstanceReadReplicaCommand.d.ts +17 -8
- package/dist-types/commands/DeleteDBClusterCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +227 -118
- package/dist-types/models/models_1.d.ts +95 -48
- package/dist-types/ts3.4/models/models_0.d.ts +115 -87
- package/dist-types/ts3.4/models/models_1.d.ts +52 -42
- package/package.json +36 -36
|
@@ -140,29 +140,44 @@ export interface AccountAttributesMessage {
|
|
|
140
140
|
}
|
|
141
141
|
/**
|
|
142
142
|
* @public
|
|
143
|
+
* @enum
|
|
143
144
|
*/
|
|
144
|
-
export declare
|
|
145
|
-
async
|
|
146
|
-
sync
|
|
147
|
-
}
|
|
145
|
+
export declare const ActivityStreamMode: {
|
|
146
|
+
readonly async: "async";
|
|
147
|
+
readonly sync: "sync";
|
|
148
|
+
};
|
|
148
149
|
/**
|
|
149
150
|
* @public
|
|
150
151
|
*/
|
|
151
|
-
export
|
|
152
|
-
locked = "locked",
|
|
153
|
-
locking_policy = "locking-policy",
|
|
154
|
-
unlocked = "unlocked",
|
|
155
|
-
unlocking_policy = "unlocking-policy"
|
|
156
|
-
}
|
|
152
|
+
export type ActivityStreamMode = (typeof ActivityStreamMode)[keyof typeof ActivityStreamMode];
|
|
157
153
|
/**
|
|
158
154
|
* @public
|
|
155
|
+
* @enum
|
|
159
156
|
*/
|
|
160
|
-
export declare
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
}
|
|
157
|
+
export declare const ActivityStreamPolicyStatus: {
|
|
158
|
+
readonly locked: "locked";
|
|
159
|
+
readonly locking_policy: "locking-policy";
|
|
160
|
+
readonly unlocked: "unlocked";
|
|
161
|
+
readonly unlocking_policy: "unlocking-policy";
|
|
162
|
+
};
|
|
163
|
+
/**
|
|
164
|
+
* @public
|
|
165
|
+
*/
|
|
166
|
+
export type ActivityStreamPolicyStatus = (typeof ActivityStreamPolicyStatus)[keyof typeof ActivityStreamPolicyStatus];
|
|
167
|
+
/**
|
|
168
|
+
* @public
|
|
169
|
+
* @enum
|
|
170
|
+
*/
|
|
171
|
+
export declare const ActivityStreamStatus: {
|
|
172
|
+
readonly started: "started";
|
|
173
|
+
readonly starting: "starting";
|
|
174
|
+
readonly stopped: "stopped";
|
|
175
|
+
readonly stopping: "stopping";
|
|
176
|
+
};
|
|
177
|
+
/**
|
|
178
|
+
* @public
|
|
179
|
+
*/
|
|
180
|
+
export type ActivityStreamStatus = (typeof ActivityStreamStatus)[keyof typeof ActivityStreamStatus];
|
|
166
181
|
/**
|
|
167
182
|
* @public
|
|
168
183
|
*/
|
|
@@ -928,11 +943,16 @@ export interface CancelExportTaskMessage {
|
|
|
928
943
|
}
|
|
929
944
|
/**
|
|
930
945
|
* @public
|
|
946
|
+
* @enum
|
|
931
947
|
*/
|
|
932
|
-
export declare
|
|
933
|
-
CLUSTER
|
|
934
|
-
SNAPSHOT
|
|
935
|
-
}
|
|
948
|
+
export declare const ExportSourceType: {
|
|
949
|
+
readonly CLUSTER: "CLUSTER";
|
|
950
|
+
readonly SNAPSHOT: "SNAPSHOT";
|
|
951
|
+
};
|
|
952
|
+
/**
|
|
953
|
+
* @public
|
|
954
|
+
*/
|
|
955
|
+
export type ExportSourceType = (typeof ExportSourceType)[keyof typeof ExportSourceType];
|
|
936
956
|
/**
|
|
937
957
|
* @public
|
|
938
958
|
* <p>Contains the details of a snapshot or cluster export to Amazon S3.</p>
|
|
@@ -3364,7 +3384,7 @@ export interface CreateDBClusterMessage {
|
|
|
3364
3384
|
/**
|
|
3365
3385
|
* <p>The Amazon Resource Name (ARN) of the source DB instance or DB cluster if this DB
|
|
3366
3386
|
* cluster is created as a read replica.</p>
|
|
3367
|
-
* <p>Valid for: Aurora DB clusters and
|
|
3387
|
+
* <p>Valid for: Aurora DB clusters and Multi-AZ DB clusters</p>
|
|
3368
3388
|
*/
|
|
3369
3389
|
ReplicationSourceIdentifier?: string;
|
|
3370
3390
|
/**
|
|
@@ -3895,14 +3915,19 @@ export interface DomainMembership {
|
|
|
3895
3915
|
}
|
|
3896
3916
|
/**
|
|
3897
3917
|
* @public
|
|
3918
|
+
* @enum
|
|
3898
3919
|
*/
|
|
3899
|
-
export declare
|
|
3900
|
-
DISABLED
|
|
3901
|
-
DISABLING
|
|
3902
|
-
ENABLED
|
|
3903
|
-
ENABLING
|
|
3904
|
-
UNKNOWN
|
|
3905
|
-
}
|
|
3920
|
+
export declare const WriteForwardingStatus: {
|
|
3921
|
+
readonly DISABLED: "disabled";
|
|
3922
|
+
readonly DISABLING: "disabling";
|
|
3923
|
+
readonly ENABLED: "enabled";
|
|
3924
|
+
readonly ENABLING: "enabling";
|
|
3925
|
+
readonly UNKNOWN: "unknown";
|
|
3926
|
+
};
|
|
3927
|
+
/**
|
|
3928
|
+
* @public
|
|
3929
|
+
*/
|
|
3930
|
+
export type WriteForwardingStatus = (typeof WriteForwardingStatus)[keyof typeof WriteForwardingStatus];
|
|
3906
3931
|
/**
|
|
3907
3932
|
* @public
|
|
3908
3933
|
* <p>Contains the secret managed by RDS in Amazon Web Services Secrets Manager for the master user password.</p>
|
|
@@ -6156,11 +6181,16 @@ export interface DBInstanceRole {
|
|
|
6156
6181
|
}
|
|
6157
6182
|
/**
|
|
6158
6183
|
* @public
|
|
6184
|
+
* @enum
|
|
6159
6185
|
*/
|
|
6160
|
-
export declare
|
|
6161
|
-
ALL_PAUSED
|
|
6162
|
-
FULL
|
|
6163
|
-
}
|
|
6186
|
+
export declare const AutomationMode: {
|
|
6187
|
+
readonly ALL_PAUSED: "all-paused";
|
|
6188
|
+
readonly FULL: "full";
|
|
6189
|
+
};
|
|
6190
|
+
/**
|
|
6191
|
+
* @public
|
|
6192
|
+
*/
|
|
6193
|
+
export type AutomationMode = (typeof AutomationMode)[keyof typeof AutomationMode];
|
|
6164
6194
|
/**
|
|
6165
6195
|
* @public
|
|
6166
6196
|
* <p>Returns the details of the DB instance’s server certificate.</p>
|
|
@@ -6502,11 +6532,16 @@ export interface PendingModifiedValues {
|
|
|
6502
6532
|
}
|
|
6503
6533
|
/**
|
|
6504
6534
|
* @public
|
|
6535
|
+
* @enum
|
|
6505
6536
|
*/
|
|
6506
|
-
export declare
|
|
6507
|
-
MOUNTED
|
|
6508
|
-
OPEN_READ_ONLY
|
|
6509
|
-
}
|
|
6537
|
+
export declare const ReplicaMode: {
|
|
6538
|
+
readonly MOUNTED: "mounted";
|
|
6539
|
+
readonly OPEN_READ_ONLY: "open-read-only";
|
|
6540
|
+
};
|
|
6541
|
+
/**
|
|
6542
|
+
* @public
|
|
6543
|
+
*/
|
|
6544
|
+
export type ReplicaMode = (typeof ReplicaMode)[keyof typeof ReplicaMode];
|
|
6510
6545
|
/**
|
|
6511
6546
|
* @public
|
|
6512
6547
|
* <p>Provides a list of status information for a DB instance.</p>
|
|
@@ -7031,6 +7066,11 @@ export interface DBInstance {
|
|
|
7031
7066
|
* <p>The details of the DB instance's server certificate.</p>
|
|
7032
7067
|
*/
|
|
7033
7068
|
CertificateDetails?: CertificateDetails;
|
|
7069
|
+
/**
|
|
7070
|
+
* <p>Contains the identifier of the source DB cluster if this DB instance is a read
|
|
7071
|
+
* replica.</p>
|
|
7072
|
+
*/
|
|
7073
|
+
ReadReplicaSourceDBClusterIdentifier?: string;
|
|
7034
7074
|
}
|
|
7035
7075
|
/**
|
|
7036
7076
|
* @public
|
|
@@ -7119,7 +7159,8 @@ export interface CreateDBInstanceReadReplicaMessage {
|
|
|
7119
7159
|
DBInstanceIdentifier: string | undefined;
|
|
7120
7160
|
/**
|
|
7121
7161
|
* <p>The identifier of the DB instance that will act as the source for the read replica.
|
|
7122
|
-
* Each DB instance can have up to
|
|
7162
|
+
* Each DB instance can have up to 15 read replicas, with the exception of Oracle and SQL
|
|
7163
|
+
* Server, which can have up to five.</p>
|
|
7123
7164
|
* <p>Constraints:</p>
|
|
7124
7165
|
* <ul>
|
|
7125
7166
|
* <li>
|
|
@@ -7127,20 +7168,15 @@ export interface CreateDBInstanceReadReplicaMessage {
|
|
|
7127
7168
|
* instance.</p>
|
|
7128
7169
|
* </li>
|
|
7129
7170
|
* <li>
|
|
7130
|
-
* <p>Can
|
|
7131
|
-
*
|
|
7171
|
+
* <p>Can't be specified if the <code>SourceDBClusterIdentifier</code> parameter is
|
|
7172
|
+
* also specified.</p>
|
|
7132
7173
|
* </li>
|
|
7133
7174
|
* <li>
|
|
7134
|
-
* <p>For the limitations of Oracle read replicas, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html">
|
|
7175
|
+
* <p>For the limitations of Oracle read replicas, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.limitations.html#oracle-read-replicas.limitations.versions-and-licenses">Version and licensing considerations for RDS for Oracle replicas</a> in the
|
|
7135
7176
|
* <i>Amazon RDS User Guide</i>.</p>
|
|
7136
7177
|
* </li>
|
|
7137
7178
|
* <li>
|
|
7138
|
-
* <p>For the limitations of SQL Server read replicas, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/SQLServer.ReadReplicas.Limitations
|
|
7139
|
-
* Limitations with Microsoft SQL Server</a> in the <i>Amazon RDS User Guide</i>.</p>
|
|
7140
|
-
* </li>
|
|
7141
|
-
* <li>
|
|
7142
|
-
* <p>Can specify a PostgreSQL DB instance only if the source is running PostgreSQL 9.3.5 or
|
|
7143
|
-
* later (9.4.7 and higher for cross-Region replication).</p>
|
|
7179
|
+
* <p>For the limitations of SQL Server read replicas, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/SQLServer.ReadReplicas.html#SQLServer.ReadReplicas.Limitations">Read replica limitations with SQL Server</a> in the <i>Amazon RDS User Guide</i>.</p>
|
|
7144
7180
|
* </li>
|
|
7145
7181
|
* <li>
|
|
7146
7182
|
* <p>The specified DB instance must have automatic backups enabled, that is, its backup
|
|
@@ -7151,14 +7187,14 @@ export interface CreateDBInstanceReadReplicaMessage {
|
|
|
7151
7187
|
* instance identifier.</p>
|
|
7152
7188
|
* </li>
|
|
7153
7189
|
* <li>
|
|
7154
|
-
* <p>If the source DB instance is in a different Amazon Web Services Region from the read
|
|
7155
|
-
*
|
|
7156
|
-
*
|
|
7157
|
-
*
|
|
7190
|
+
* <p>If the source DB instance is in a different Amazon Web Services Region from the read
|
|
7191
|
+
* replica, specify a valid DB instance ARN. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing">Constructing an ARN for Amazon RDS</a> in the <i>Amazon RDS User
|
|
7192
|
+
* Guide</i>. This doesn't apply to SQL Server or RDS Custom, which
|
|
7193
|
+
* don't support cross-Region replicas.</p>
|
|
7158
7194
|
* </li>
|
|
7159
7195
|
* </ul>
|
|
7160
7196
|
*/
|
|
7161
|
-
SourceDBInstanceIdentifier
|
|
7197
|
+
SourceDBInstanceIdentifier?: string;
|
|
7162
7198
|
/**
|
|
7163
7199
|
* <p>The compute and memory capacity of the read replica, for example
|
|
7164
7200
|
* db.m4.large. Not all DB instance classes are available in all Amazon Web Services
|
|
@@ -7184,10 +7220,10 @@ export interface CreateDBInstanceReadReplicaMessage {
|
|
|
7184
7220
|
Port?: number;
|
|
7185
7221
|
/**
|
|
7186
7222
|
* <p>A value that indicates whether the read replica is in a Multi-AZ deployment.</p>
|
|
7187
|
-
* <p>You can create a read replica as a Multi-AZ DB instance. RDS creates a standby of
|
|
7188
|
-
*
|
|
7189
|
-
*
|
|
7190
|
-
*
|
|
7223
|
+
* <p>You can create a read replica as a Multi-AZ DB instance. RDS creates a standby of your
|
|
7224
|
+
* replica in another Availability Zone for failover support for the replica. Creating your
|
|
7225
|
+
* read replica as a Multi-AZ DB instance is independent of whether the source is a
|
|
7226
|
+
* Multi-AZ DB instance or a Multi-AZ DB cluster.</p>
|
|
7191
7227
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
7192
7228
|
*/
|
|
7193
7229
|
MultiAZ?: boolean;
|
|
@@ -7203,10 +7239,10 @@ export interface CreateDBInstanceReadReplicaMessage {
|
|
|
7203
7239
|
*/
|
|
7204
7240
|
Iops?: number;
|
|
7205
7241
|
/**
|
|
7206
|
-
* <p>The option group the DB instance is associated with. If omitted, the option group
|
|
7242
|
+
* <p>The option group the DB instance is associated with. If omitted, the option group
|
|
7243
|
+
* associated with the source instance or cluster is used.</p>
|
|
7207
7244
|
* <note>
|
|
7208
|
-
* <p>For SQL Server, you must use the option group associated with the source
|
|
7209
|
-
* instance.</p>
|
|
7245
|
+
* <p>For SQL Server, you must use the option group associated with the source.</p>
|
|
7210
7246
|
* </note>
|
|
7211
7247
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
7212
7248
|
*/
|
|
@@ -7330,13 +7366,15 @@ export interface CreateDBInstanceReadReplicaMessage {
|
|
|
7330
7366
|
* <p>The Amazon Web Services KMS key identifier for an encrypted read replica.</p>
|
|
7331
7367
|
* <p>The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.</p>
|
|
7332
7368
|
* <p>If you create an encrypted read replica in the same Amazon Web Services Region as the source DB
|
|
7333
|
-
* instance
|
|
7334
|
-
* is always encrypted with the same KMS key as the source
|
|
7369
|
+
* instance or Multi-AZ DB cluster, don't specify a value for this parameter. A read
|
|
7370
|
+
* replica in the same Amazon Web Services Region is always encrypted with the same KMS key as the source
|
|
7371
|
+
* DB instance or cluster.</p>
|
|
7335
7372
|
* <p>If you create an encrypted read replica in a different Amazon Web Services Region, then you must
|
|
7336
7373
|
* specify a KMS key identifier for the destination Amazon Web Services Region. KMS keys are specific to
|
|
7337
7374
|
* the Amazon Web Services Region that they are created in, and you can't use KMS keys from one
|
|
7338
7375
|
* Amazon Web Services Region in another Amazon Web Services Region.</p>
|
|
7339
|
-
* <p>You can't create an encrypted read replica from an unencrypted DB instance
|
|
7376
|
+
* <p>You can't create an encrypted read replica from an unencrypted DB instance or
|
|
7377
|
+
* Multi-AZ DB cluster.</p>
|
|
7340
7378
|
* <p>This setting doesn't apply to RDS Custom, which uses the same KMS key as the primary
|
|
7341
7379
|
* replica.</p>
|
|
7342
7380
|
*/
|
|
@@ -7348,6 +7386,8 @@ export interface CreateDBInstanceReadReplicaMessage {
|
|
|
7348
7386
|
* source Amazon Web Services Region that contains the source DB instance.</p>
|
|
7349
7387
|
* <p>This setting applies only to Amazon Web Services GovCloud (US) Regions and
|
|
7350
7388
|
* China Amazon Web Services Regions. It's ignored in other Amazon Web Services Regions.</p>
|
|
7389
|
+
* <p>This setting applies only when replicating from a source DB
|
|
7390
|
+
* <i>instance</i>. Source DB clusters aren't supported in Amazon Web Services GovCloud (US) Regions and China Amazon Web Services Regions.</p>
|
|
7351
7391
|
* <p>You must specify this parameter when you create an encrypted read replica from
|
|
7352
7392
|
* another Amazon Web Services Region by using the Amazon RDS API. Don't specify
|
|
7353
7393
|
* <code>PreSignedUrl</code> when you are creating an encrypted read replica in the
|
|
@@ -7381,11 +7421,11 @@ export interface CreateDBInstanceReadReplicaMessage {
|
|
|
7381
7421
|
* </li>
|
|
7382
7422
|
* <li>
|
|
7383
7423
|
* <p>
|
|
7384
|
-
* <code>SourceDBInstanceIdentifier</code> - The DB instance identifier for
|
|
7385
|
-
*
|
|
7386
|
-
*
|
|
7387
|
-
*
|
|
7388
|
-
* Region, then your <code>SourceDBInstanceIdentifier</code> looks like the
|
|
7424
|
+
* <code>SourceDBInstanceIdentifier</code> - The DB instance identifier for the
|
|
7425
|
+
* encrypted DB instance to be replicated. This identifier must be in the Amazon
|
|
7426
|
+
* Resource Name (ARN) format for the source Amazon Web Services Region. For example, if you are
|
|
7427
|
+
* creating an encrypted read replica from a DB instance in the us-west-2
|
|
7428
|
+
* Amazon Web Services Region, then your <code>SourceDBInstanceIdentifier</code> looks like the
|
|
7389
7429
|
* following example:
|
|
7390
7430
|
* <code>arn:aws:rds:us-west-2:123456789012:instance:mysql-instance1-20161115</code>.</p>
|
|
7391
7431
|
* </li>
|
|
@@ -7500,7 +7540,8 @@ export interface CreateDBInstanceReadReplicaMessage {
|
|
|
7500
7540
|
*/
|
|
7501
7541
|
Domain?: string;
|
|
7502
7542
|
/**
|
|
7503
|
-
* <p>
|
|
7543
|
+
* <p>The name of the IAM role to be used when making API calls to the Directory
|
|
7544
|
+
* Service.</p>
|
|
7504
7545
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
7505
7546
|
*/
|
|
7506
7547
|
DomainIAMRoleName?: string;
|
|
@@ -7599,6 +7640,29 @@ export interface CreateDBInstanceReadReplicaMessage {
|
|
|
7599
7640
|
* </note>
|
|
7600
7641
|
*/
|
|
7601
7642
|
AllocatedStorage?: number;
|
|
7643
|
+
/**
|
|
7644
|
+
* <p>The identifier of the Multi-AZ DB cluster that will act as the source for the read
|
|
7645
|
+
* replica. Each DB cluster can have up to 15 read replicas.</p>
|
|
7646
|
+
* <p>Constraints:</p>
|
|
7647
|
+
* <ul>
|
|
7648
|
+
* <li>
|
|
7649
|
+
* <p>Must be the identifier of an existing Multi-AZ DB cluster.</p>
|
|
7650
|
+
* </li>
|
|
7651
|
+
* <li>
|
|
7652
|
+
* <p>Can't be specified if the <code>SourceDBInstanceIdentifier</code> parameter is
|
|
7653
|
+
* also specified.</p>
|
|
7654
|
+
* </li>
|
|
7655
|
+
* <li>
|
|
7656
|
+
* <p>The specified DB cluster must have automatic backups enabled, that is, its
|
|
7657
|
+
* backup retention period must be greater than 0.</p>
|
|
7658
|
+
* </li>
|
|
7659
|
+
* <li>
|
|
7660
|
+
* <p>The source DB cluster must be in the same Amazon Web Services Region as the read replica.
|
|
7661
|
+
* Cross-Region replication isn't supported.</p>
|
|
7662
|
+
* </li>
|
|
7663
|
+
* </ul>
|
|
7664
|
+
*/
|
|
7665
|
+
SourceDBClusterIdentifier?: string;
|
|
7602
7666
|
}
|
|
7603
7667
|
/**
|
|
7604
7668
|
* @public
|
|
@@ -7771,27 +7835,42 @@ export interface CreateDBParameterGroupResult {
|
|
|
7771
7835
|
}
|
|
7772
7836
|
/**
|
|
7773
7837
|
* @public
|
|
7838
|
+
* @enum
|
|
7774
7839
|
*/
|
|
7775
|
-
export declare
|
|
7776
|
-
SECRETS
|
|
7777
|
-
}
|
|
7840
|
+
export declare const AuthScheme: {
|
|
7841
|
+
readonly SECRETS: "SECRETS";
|
|
7842
|
+
};
|
|
7778
7843
|
/**
|
|
7779
7844
|
* @public
|
|
7780
7845
|
*/
|
|
7781
|
-
export
|
|
7782
|
-
MYSQL_NATIVE_PASSWORD = "MYSQL_NATIVE_PASSWORD",
|
|
7783
|
-
POSTGRES_MD5 = "POSTGRES_MD5",
|
|
7784
|
-
POSTGRES_SCRAM_SHA_256 = "POSTGRES_SCRAM_SHA_256",
|
|
7785
|
-
SQL_SERVER_AUTHENTICATION = "SQL_SERVER_AUTHENTICATION"
|
|
7786
|
-
}
|
|
7846
|
+
export type AuthScheme = (typeof AuthScheme)[keyof typeof AuthScheme];
|
|
7787
7847
|
/**
|
|
7788
7848
|
* @public
|
|
7849
|
+
* @enum
|
|
7789
7850
|
*/
|
|
7790
|
-
export declare
|
|
7791
|
-
|
|
7792
|
-
|
|
7793
|
-
|
|
7794
|
-
|
|
7851
|
+
export declare const ClientPasswordAuthType: {
|
|
7852
|
+
readonly MYSQL_NATIVE_PASSWORD: "MYSQL_NATIVE_PASSWORD";
|
|
7853
|
+
readonly POSTGRES_MD5: "POSTGRES_MD5";
|
|
7854
|
+
readonly POSTGRES_SCRAM_SHA_256: "POSTGRES_SCRAM_SHA_256";
|
|
7855
|
+
readonly SQL_SERVER_AUTHENTICATION: "SQL_SERVER_AUTHENTICATION";
|
|
7856
|
+
};
|
|
7857
|
+
/**
|
|
7858
|
+
* @public
|
|
7859
|
+
*/
|
|
7860
|
+
export type ClientPasswordAuthType = (typeof ClientPasswordAuthType)[keyof typeof ClientPasswordAuthType];
|
|
7861
|
+
/**
|
|
7862
|
+
* @public
|
|
7863
|
+
* @enum
|
|
7864
|
+
*/
|
|
7865
|
+
export declare const IAMAuthMode: {
|
|
7866
|
+
readonly DISABLED: "DISABLED";
|
|
7867
|
+
readonly ENABLED: "ENABLED";
|
|
7868
|
+
readonly REQUIRED: "REQUIRED";
|
|
7869
|
+
};
|
|
7870
|
+
/**
|
|
7871
|
+
* @public
|
|
7872
|
+
*/
|
|
7873
|
+
export type IAMAuthMode = (typeof IAMAuthMode)[keyof typeof IAMAuthMode];
|
|
7795
7874
|
/**
|
|
7796
7875
|
* @public
|
|
7797
7876
|
* <p>Specifies the details of authentication used by a proxy to log in as a specific database user.</p>
|
|
@@ -7826,12 +7905,17 @@ export interface UserAuthConfig {
|
|
|
7826
7905
|
}
|
|
7827
7906
|
/**
|
|
7828
7907
|
* @public
|
|
7908
|
+
* @enum
|
|
7829
7909
|
*/
|
|
7830
|
-
export declare
|
|
7831
|
-
MYSQL
|
|
7832
|
-
POSTGRESQL
|
|
7833
|
-
SQLSERVER
|
|
7834
|
-
}
|
|
7910
|
+
export declare const EngineFamily: {
|
|
7911
|
+
readonly MYSQL: "MYSQL";
|
|
7912
|
+
readonly POSTGRESQL: "POSTGRESQL";
|
|
7913
|
+
readonly SQLSERVER: "SQLSERVER";
|
|
7914
|
+
};
|
|
7915
|
+
/**
|
|
7916
|
+
* @public
|
|
7917
|
+
*/
|
|
7918
|
+
export type EngineFamily = (typeof EngineFamily)[keyof typeof EngineFamily];
|
|
7835
7919
|
/**
|
|
7836
7920
|
* @public
|
|
7837
7921
|
*/
|
|
@@ -7922,18 +8006,23 @@ export interface UserAuthConfigInfo {
|
|
|
7922
8006
|
}
|
|
7923
8007
|
/**
|
|
7924
8008
|
* @public
|
|
8009
|
+
* @enum
|
|
7925
8010
|
*/
|
|
7926
|
-
export declare
|
|
7927
|
-
AVAILABLE
|
|
7928
|
-
CREATING
|
|
7929
|
-
DELETING
|
|
7930
|
-
INCOMPATIBLE_NETWORK
|
|
7931
|
-
INSUFFICIENT_RESOURCE_LIMITS
|
|
7932
|
-
MODIFYING
|
|
7933
|
-
REACTIVATING
|
|
7934
|
-
SUSPENDED
|
|
7935
|
-
SUSPENDING
|
|
7936
|
-
}
|
|
8011
|
+
export declare const DBProxyStatus: {
|
|
8012
|
+
readonly AVAILABLE: "available";
|
|
8013
|
+
readonly CREATING: "creating";
|
|
8014
|
+
readonly DELETING: "deleting";
|
|
8015
|
+
readonly INCOMPATIBLE_NETWORK: "incompatible-network";
|
|
8016
|
+
readonly INSUFFICIENT_RESOURCE_LIMITS: "insufficient-resource-limits";
|
|
8017
|
+
readonly MODIFYING: "modifying";
|
|
8018
|
+
readonly REACTIVATING: "reactivating";
|
|
8019
|
+
readonly SUSPENDED: "suspended";
|
|
8020
|
+
readonly SUSPENDING: "suspending";
|
|
8021
|
+
};
|
|
8022
|
+
/**
|
|
8023
|
+
* @public
|
|
8024
|
+
*/
|
|
8025
|
+
export type DBProxyStatus = (typeof DBProxyStatus)[keyof typeof DBProxyStatus];
|
|
7937
8026
|
/**
|
|
7938
8027
|
* @public
|
|
7939
8028
|
* <p>The data structure representing a proxy managed by the RDS Proxy.</p>
|
|
@@ -8052,11 +8141,16 @@ export declare class DBProxyQuotaExceededFault extends __BaseException {
|
|
|
8052
8141
|
}
|
|
8053
8142
|
/**
|
|
8054
8143
|
* @public
|
|
8144
|
+
* @enum
|
|
8055
8145
|
*/
|
|
8056
|
-
export declare
|
|
8057
|
-
READ_ONLY
|
|
8058
|
-
READ_WRITE
|
|
8059
|
-
}
|
|
8146
|
+
export declare const DBProxyEndpointTargetRole: {
|
|
8147
|
+
readonly READ_ONLY: "READ_ONLY";
|
|
8148
|
+
readonly READ_WRITE: "READ_WRITE";
|
|
8149
|
+
};
|
|
8150
|
+
/**
|
|
8151
|
+
* @public
|
|
8152
|
+
*/
|
|
8153
|
+
export type DBProxyEndpointTargetRole = (typeof DBProxyEndpointTargetRole)[keyof typeof DBProxyEndpointTargetRole];
|
|
8060
8154
|
/**
|
|
8061
8155
|
* @public
|
|
8062
8156
|
*/
|
|
@@ -8095,15 +8189,20 @@ export interface CreateDBProxyEndpointRequest {
|
|
|
8095
8189
|
}
|
|
8096
8190
|
/**
|
|
8097
8191
|
* @public
|
|
8192
|
+
* @enum
|
|
8098
8193
|
*/
|
|
8099
|
-
export declare
|
|
8100
|
-
AVAILABLE
|
|
8101
|
-
CREATING
|
|
8102
|
-
DELETING
|
|
8103
|
-
INCOMPATIBLE_NETWORK
|
|
8104
|
-
INSUFFICIENT_RESOURCE_LIMITS
|
|
8105
|
-
MODIFYING
|
|
8106
|
-
}
|
|
8194
|
+
export declare const DBProxyEndpointStatus: {
|
|
8195
|
+
readonly AVAILABLE: "available";
|
|
8196
|
+
readonly CREATING: "creating";
|
|
8197
|
+
readonly DELETING: "deleting";
|
|
8198
|
+
readonly INCOMPATIBLE_NETWORK: "incompatible-network";
|
|
8199
|
+
readonly INSUFFICIENT_RESOURCE_LIMITS: "insufficient-resource-limits";
|
|
8200
|
+
readonly MODIFYING: "modifying";
|
|
8201
|
+
};
|
|
8202
|
+
/**
|
|
8203
|
+
* @public
|
|
8204
|
+
*/
|
|
8205
|
+
export type DBProxyEndpointStatus = (typeof DBProxyEndpointStatus)[keyof typeof DBProxyEndpointStatus];
|
|
8107
8206
|
/**
|
|
8108
8207
|
* @public
|
|
8109
8208
|
* <p>The data structure representing an endpoint associated with a DB proxy. RDS automatically creates one
|
|
@@ -8633,12 +8732,17 @@ export interface CreateGlobalClusterMessage {
|
|
|
8633
8732
|
}
|
|
8634
8733
|
/**
|
|
8635
8734
|
* @public
|
|
8735
|
+
* @enum
|
|
8636
8736
|
*/
|
|
8637
|
-
export declare
|
|
8638
|
-
CANCELLING
|
|
8639
|
-
FAILING_OVER
|
|
8640
|
-
PENDING
|
|
8641
|
-
}
|
|
8737
|
+
export declare const FailoverStatus: {
|
|
8738
|
+
readonly CANCELLING: "cancelling";
|
|
8739
|
+
readonly FAILING_OVER: "failing-over";
|
|
8740
|
+
readonly PENDING: "pending";
|
|
8741
|
+
};
|
|
8742
|
+
/**
|
|
8743
|
+
* @public
|
|
8744
|
+
*/
|
|
8745
|
+
export type FailoverStatus = (typeof FailoverStatus)[keyof typeof FailoverStatus];
|
|
8642
8746
|
/**
|
|
8643
8747
|
* @public
|
|
8644
8748
|
* <p>Contains the state of scheduled or in-process failover operations on an
|
|
@@ -10182,11 +10286,16 @@ export interface DescribeDBClusterParameterGroupsMessage {
|
|
|
10182
10286
|
}
|
|
10183
10287
|
/**
|
|
10184
10288
|
* @public
|
|
10289
|
+
* @enum
|
|
10185
10290
|
*/
|
|
10186
|
-
export declare
|
|
10187
|
-
immediate
|
|
10188
|
-
pending_reboot
|
|
10189
|
-
}
|
|
10291
|
+
export declare const ApplyMethod: {
|
|
10292
|
+
readonly immediate: "immediate";
|
|
10293
|
+
readonly pending_reboot: "pending-reboot";
|
|
10294
|
+
};
|
|
10295
|
+
/**
|
|
10296
|
+
* @public
|
|
10297
|
+
*/
|
|
10298
|
+
export type ApplyMethod = (typeof ApplyMethod)[keyof typeof ApplyMethod];
|
|
10190
10299
|
/**
|
|
10191
10300
|
* @public
|
|
10192
10301
|
* <p>This data type is used as a request parameter in the
|