@aws-sdk/client-rds 3.302.0 → 3.306.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.
@@ -1,42 +1,37 @@
1
1
  import { RDSServiceException as __BaseException } from "./RDSServiceException";
2
- export var TargetRole;
3
- (function (TargetRole) {
4
- TargetRole["READ_ONLY"] = "READ_ONLY";
5
- TargetRole["READ_WRITE"] = "READ_WRITE";
6
- TargetRole["UNKNOWN"] = "UNKNOWN";
7
- })(TargetRole || (TargetRole = {}));
8
- export var TargetHealthReason;
9
- (function (TargetHealthReason) {
10
- TargetHealthReason["AUTH_FAILURE"] = "AUTH_FAILURE";
11
- TargetHealthReason["CONNECTION_FAILED"] = "CONNECTION_FAILED";
12
- TargetHealthReason["INVALID_REPLICATION_STATE"] = "INVALID_REPLICATION_STATE";
13
- TargetHealthReason["PENDING_PROXY_CAPACITY"] = "PENDING_PROXY_CAPACITY";
14
- TargetHealthReason["UNREACHABLE"] = "UNREACHABLE";
15
- })(TargetHealthReason || (TargetHealthReason = {}));
16
- export var TargetState;
17
- (function (TargetState) {
18
- TargetState["available"] = "AVAILABLE";
19
- TargetState["registering"] = "REGISTERING";
20
- TargetState["unavailable"] = "UNAVAILABLE";
21
- })(TargetState || (TargetState = {}));
22
- export var TargetType;
23
- (function (TargetType) {
24
- TargetType["RDS_INSTANCE"] = "RDS_INSTANCE";
25
- TargetType["RDS_SERVERLESS_ENDPOINT"] = "RDS_SERVERLESS_ENDPOINT";
26
- TargetType["TRACKED_CLUSTER"] = "TRACKED_CLUSTER";
27
- })(TargetType || (TargetType = {}));
28
- export var SourceType;
29
- (function (SourceType) {
30
- SourceType["blue_green_deployment"] = "blue-green-deployment";
31
- SourceType["custom_engine_version"] = "custom-engine-version";
32
- SourceType["db_cluster"] = "db-cluster";
33
- SourceType["db_cluster_snapshot"] = "db-cluster-snapshot";
34
- SourceType["db_instance"] = "db-instance";
35
- SourceType["db_parameter_group"] = "db-parameter-group";
36
- SourceType["db_proxy"] = "db-proxy";
37
- SourceType["db_security_group"] = "db-security-group";
38
- SourceType["db_snapshot"] = "db-snapshot";
39
- })(SourceType || (SourceType = {}));
2
+ export const TargetRole = {
3
+ READ_ONLY: "READ_ONLY",
4
+ READ_WRITE: "READ_WRITE",
5
+ UNKNOWN: "UNKNOWN",
6
+ };
7
+ export const TargetHealthReason = {
8
+ AUTH_FAILURE: "AUTH_FAILURE",
9
+ CONNECTION_FAILED: "CONNECTION_FAILED",
10
+ INVALID_REPLICATION_STATE: "INVALID_REPLICATION_STATE",
11
+ PENDING_PROXY_CAPACITY: "PENDING_PROXY_CAPACITY",
12
+ UNREACHABLE: "UNREACHABLE",
13
+ };
14
+ export const TargetState = {
15
+ available: "AVAILABLE",
16
+ registering: "REGISTERING",
17
+ unavailable: "UNAVAILABLE",
18
+ };
19
+ export const TargetType = {
20
+ RDS_INSTANCE: "RDS_INSTANCE",
21
+ RDS_SERVERLESS_ENDPOINT: "RDS_SERVERLESS_ENDPOINT",
22
+ TRACKED_CLUSTER: "TRACKED_CLUSTER",
23
+ };
24
+ export const SourceType = {
25
+ blue_green_deployment: "blue-green-deployment",
26
+ custom_engine_version: "custom-engine-version",
27
+ db_cluster: "db-cluster",
28
+ db_cluster_snapshot: "db-cluster-snapshot",
29
+ db_instance: "db-instance",
30
+ db_parameter_group: "db-parameter-group",
31
+ db_proxy: "db-proxy",
32
+ db_security_group: "db-security-group",
33
+ db_snapshot: "db-snapshot",
34
+ };
40
35
  export class ReservedDBInstanceNotFoundFault extends __BaseException {
41
36
  constructor(opts) {
42
37
  super({
@@ -73,11 +68,10 @@ export class DBLogFileNotFoundFault extends __BaseException {
73
68
  Object.setPrototypeOf(this, DBLogFileNotFoundFault.prototype);
74
69
  }
75
70
  }
76
- export var AuditPolicyState;
77
- (function (AuditPolicyState) {
78
- AuditPolicyState["LOCKED_POLICY"] = "locked";
79
- AuditPolicyState["UNLOCKED_POLICY"] = "unlocked";
80
- })(AuditPolicyState || (AuditPolicyState = {}));
71
+ export const AuditPolicyState = {
72
+ LOCKED_POLICY: "locked",
73
+ UNLOCKED_POLICY: "unlocked",
74
+ };
81
75
  export class InvalidDBClusterCapacityFault extends __BaseException {
82
76
  constructor(opts) {
83
77
  super({
@@ -90,12 +84,11 @@ export class InvalidDBClusterCapacityFault extends __BaseException {
90
84
  Object.setPrototypeOf(this, InvalidDBClusterCapacityFault.prototype);
91
85
  }
92
86
  }
93
- export var CustomEngineVersionStatus;
94
- (function (CustomEngineVersionStatus) {
95
- CustomEngineVersionStatus["available"] = "available";
96
- CustomEngineVersionStatus["inactive"] = "inactive";
97
- CustomEngineVersionStatus["inactive_except_restore"] = "inactive-except-restore";
98
- })(CustomEngineVersionStatus || (CustomEngineVersionStatus = {}));
87
+ export const CustomEngineVersionStatus = {
88
+ available: "available",
89
+ inactive: "inactive",
90
+ inactive_except_restore: "inactive-except-restore",
91
+ };
99
92
  export class SharedSnapshotQuotaExceededFault extends __BaseException {
100
93
  constructor(opts) {
101
94
  super({
@@ -140,29 +140,44 @@ export interface AccountAttributesMessage {
140
140
  }
141
141
  /**
142
142
  * @public
143
+ * @enum
143
144
  */
144
- export declare enum ActivityStreamMode {
145
- async = "async",
146
- sync = "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 declare enum ActivityStreamPolicyStatus {
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 enum ActivityStreamStatus {
161
- started = "started",
162
- starting = "starting",
163
- stopped = "stopped",
164
- stopping = "stopping"
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 enum ExportSourceType {
933
- CLUSTER = "CLUSTER",
934
- SNAPSHOT = "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>
@@ -3895,14 +3915,19 @@ export interface DomainMembership {
3895
3915
  }
3896
3916
  /**
3897
3917
  * @public
3918
+ * @enum
3898
3919
  */
3899
- export declare enum WriteForwardingStatus {
3900
- DISABLED = "disabled",
3901
- DISABLING = "disabling",
3902
- ENABLED = "enabled",
3903
- ENABLING = "enabling",
3904
- UNKNOWN = "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 enum AutomationMode {
6161
- ALL_PAUSED = "all-paused",
6162
- FULL = "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 enum ReplicaMode {
6507
- MOUNTED = "mounted",
6508
- OPEN_READ_ONLY = "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>
@@ -7800,27 +7835,42 @@ export interface CreateDBParameterGroupResult {
7800
7835
  }
7801
7836
  /**
7802
7837
  * @public
7838
+ * @enum
7803
7839
  */
7804
- export declare enum AuthScheme {
7805
- SECRETS = "SECRETS"
7806
- }
7840
+ export declare const AuthScheme: {
7841
+ readonly SECRETS: "SECRETS";
7842
+ };
7807
7843
  /**
7808
7844
  * @public
7809
7845
  */
7810
- export declare enum ClientPasswordAuthType {
7811
- MYSQL_NATIVE_PASSWORD = "MYSQL_NATIVE_PASSWORD",
7812
- POSTGRES_MD5 = "POSTGRES_MD5",
7813
- POSTGRES_SCRAM_SHA_256 = "POSTGRES_SCRAM_SHA_256",
7814
- SQL_SERVER_AUTHENTICATION = "SQL_SERVER_AUTHENTICATION"
7815
- }
7846
+ export type AuthScheme = (typeof AuthScheme)[keyof typeof AuthScheme];
7816
7847
  /**
7817
7848
  * @public
7849
+ * @enum
7818
7850
  */
7819
- export declare enum IAMAuthMode {
7820
- DISABLED = "DISABLED",
7821
- ENABLED = "ENABLED",
7822
- REQUIRED = "REQUIRED"
7823
- }
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];
7824
7874
  /**
7825
7875
  * @public
7826
7876
  * <p>Specifies the details of authentication used by a proxy to log in as a specific database user.</p>
@@ -7855,12 +7905,17 @@ export interface UserAuthConfig {
7855
7905
  }
7856
7906
  /**
7857
7907
  * @public
7908
+ * @enum
7858
7909
  */
7859
- export declare enum EngineFamily {
7860
- MYSQL = "MYSQL",
7861
- POSTGRESQL = "POSTGRESQL",
7862
- SQLSERVER = "SQLSERVER"
7863
- }
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];
7864
7919
  /**
7865
7920
  * @public
7866
7921
  */
@@ -7951,18 +8006,23 @@ export interface UserAuthConfigInfo {
7951
8006
  }
7952
8007
  /**
7953
8008
  * @public
8009
+ * @enum
7954
8010
  */
7955
- export declare enum DBProxyStatus {
7956
- AVAILABLE = "available",
7957
- CREATING = "creating",
7958
- DELETING = "deleting",
7959
- INCOMPATIBLE_NETWORK = "incompatible-network",
7960
- INSUFFICIENT_RESOURCE_LIMITS = "insufficient-resource-limits",
7961
- MODIFYING = "modifying",
7962
- REACTIVATING = "reactivating",
7963
- SUSPENDED = "suspended",
7964
- SUSPENDING = "suspending"
7965
- }
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];
7966
8026
  /**
7967
8027
  * @public
7968
8028
  * <p>The data structure representing a proxy managed by the RDS Proxy.</p>
@@ -8081,11 +8141,16 @@ export declare class DBProxyQuotaExceededFault extends __BaseException {
8081
8141
  }
8082
8142
  /**
8083
8143
  * @public
8144
+ * @enum
8084
8145
  */
8085
- export declare enum DBProxyEndpointTargetRole {
8086
- READ_ONLY = "READ_ONLY",
8087
- READ_WRITE = "READ_WRITE"
8088
- }
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];
8089
8154
  /**
8090
8155
  * @public
8091
8156
  */
@@ -8124,15 +8189,20 @@ export interface CreateDBProxyEndpointRequest {
8124
8189
  }
8125
8190
  /**
8126
8191
  * @public
8192
+ * @enum
8127
8193
  */
8128
- export declare enum DBProxyEndpointStatus {
8129
- AVAILABLE = "available",
8130
- CREATING = "creating",
8131
- DELETING = "deleting",
8132
- INCOMPATIBLE_NETWORK = "incompatible-network",
8133
- INSUFFICIENT_RESOURCE_LIMITS = "insufficient-resource-limits",
8134
- MODIFYING = "modifying"
8135
- }
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];
8136
8206
  /**
8137
8207
  * @public
8138
8208
  * <p>The data structure representing an endpoint associated with a DB proxy. RDS automatically creates one
@@ -8662,12 +8732,17 @@ export interface CreateGlobalClusterMessage {
8662
8732
  }
8663
8733
  /**
8664
8734
  * @public
8735
+ * @enum
8665
8736
  */
8666
- export declare enum FailoverStatus {
8667
- CANCELLING = "cancelling",
8668
- FAILING_OVER = "failing-over",
8669
- PENDING = "pending"
8670
- }
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];
8671
8746
  /**
8672
8747
  * @public
8673
8748
  * <p>Contains the state of scheduled or in-process failover operations on an
@@ -10211,11 +10286,16 @@ export interface DescribeDBClusterParameterGroupsMessage {
10211
10286
  }
10212
10287
  /**
10213
10288
  * @public
10289
+ * @enum
10214
10290
  */
10215
- export declare enum ApplyMethod {
10216
- immediate = "immediate",
10217
- pending_reboot = "pending-reboot"
10218
- }
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];
10219
10299
  /**
10220
10300
  * @public
10221
10301
  * <p>This data type is used as a request parameter in the
@@ -318,30 +318,45 @@ export interface DescribeDBProxyTargetsRequest {
318
318
  }
319
319
  /**
320
320
  * @public
321
+ * @enum
321
322
  */
322
- export declare enum TargetRole {
323
- READ_ONLY = "READ_ONLY",
324
- READ_WRITE = "READ_WRITE",
325
- UNKNOWN = "UNKNOWN"
326
- }
323
+ export declare const TargetRole: {
324
+ readonly READ_ONLY: "READ_ONLY";
325
+ readonly READ_WRITE: "READ_WRITE";
326
+ readonly UNKNOWN: "UNKNOWN";
327
+ };
327
328
  /**
328
329
  * @public
329
330
  */
330
- export declare enum TargetHealthReason {
331
- AUTH_FAILURE = "AUTH_FAILURE",
332
- CONNECTION_FAILED = "CONNECTION_FAILED",
333
- INVALID_REPLICATION_STATE = "INVALID_REPLICATION_STATE",
334
- PENDING_PROXY_CAPACITY = "PENDING_PROXY_CAPACITY",
335
- UNREACHABLE = "UNREACHABLE"
336
- }
331
+ export type TargetRole = (typeof TargetRole)[keyof typeof TargetRole];
337
332
  /**
338
333
  * @public
334
+ * @enum
339
335
  */
340
- export declare enum TargetState {
341
- available = "AVAILABLE",
342
- registering = "REGISTERING",
343
- unavailable = "UNAVAILABLE"
344
- }
336
+ export declare const TargetHealthReason: {
337
+ readonly AUTH_FAILURE: "AUTH_FAILURE";
338
+ readonly CONNECTION_FAILED: "CONNECTION_FAILED";
339
+ readonly INVALID_REPLICATION_STATE: "INVALID_REPLICATION_STATE";
340
+ readonly PENDING_PROXY_CAPACITY: "PENDING_PROXY_CAPACITY";
341
+ readonly UNREACHABLE: "UNREACHABLE";
342
+ };
343
+ /**
344
+ * @public
345
+ */
346
+ export type TargetHealthReason = (typeof TargetHealthReason)[keyof typeof TargetHealthReason];
347
+ /**
348
+ * @public
349
+ * @enum
350
+ */
351
+ export declare const TargetState: {
352
+ readonly available: "AVAILABLE";
353
+ readonly registering: "REGISTERING";
354
+ readonly unavailable: "UNAVAILABLE";
355
+ };
356
+ /**
357
+ * @public
358
+ */
359
+ export type TargetState = (typeof TargetState)[keyof typeof TargetState];
345
360
  /**
346
361
  * @public
347
362
  * <p>Information about the connection health of an RDS Proxy target.</p>
@@ -367,12 +382,17 @@ export interface TargetHealth {
367
382
  }
368
383
  /**
369
384
  * @public
385
+ * @enum
370
386
  */
371
- export declare enum TargetType {
372
- RDS_INSTANCE = "RDS_INSTANCE",
373
- RDS_SERVERLESS_ENDPOINT = "RDS_SERVERLESS_ENDPOINT",
374
- TRACKED_CLUSTER = "TRACKED_CLUSTER"
375
- }
387
+ export declare const TargetType: {
388
+ readonly RDS_INSTANCE: "RDS_INSTANCE";
389
+ readonly RDS_SERVERLESS_ENDPOINT: "RDS_SERVERLESS_ENDPOINT";
390
+ readonly TRACKED_CLUSTER: "TRACKED_CLUSTER";
391
+ };
392
+ /**
393
+ * @public
394
+ */
395
+ export type TargetType = (typeof TargetType)[keyof typeof TargetType];
376
396
  /**
377
397
  * @public
378
398
  * <p>Contains the details for an RDS Proxy target. It represents an RDS DB instance or Aurora DB cluster
@@ -1126,18 +1146,23 @@ export interface EventCategoriesMessage {
1126
1146
  }
1127
1147
  /**
1128
1148
  * @public
1149
+ * @enum
1129
1150
  */
1130
- export declare enum SourceType {
1131
- blue_green_deployment = "blue-green-deployment",
1132
- custom_engine_version = "custom-engine-version",
1133
- db_cluster = "db-cluster",
1134
- db_cluster_snapshot = "db-cluster-snapshot",
1135
- db_instance = "db-instance",
1136
- db_parameter_group = "db-parameter-group",
1137
- db_proxy = "db-proxy",
1138
- db_security_group = "db-security-group",
1139
- db_snapshot = "db-snapshot"
1140
- }
1151
+ export declare const SourceType: {
1152
+ readonly blue_green_deployment: "blue-green-deployment";
1153
+ readonly custom_engine_version: "custom-engine-version";
1154
+ readonly db_cluster: "db-cluster";
1155
+ readonly db_cluster_snapshot: "db-cluster-snapshot";
1156
+ readonly db_instance: "db-instance";
1157
+ readonly db_parameter_group: "db-parameter-group";
1158
+ readonly db_proxy: "db-proxy";
1159
+ readonly db_security_group: "db-security-group";
1160
+ readonly db_snapshot: "db-snapshot";
1161
+ };
1162
+ /**
1163
+ * @public
1164
+ */
1165
+ export type SourceType = (typeof SourceType)[keyof typeof SourceType];
1141
1166
  /**
1142
1167
  * @public
1143
1168
  * <p></p>
@@ -2942,11 +2967,16 @@ export interface TagListMessage {
2942
2967
  }
2943
2968
  /**
2944
2969
  * @public
2970
+ * @enum
2945
2971
  */
2946
- export declare enum AuditPolicyState {
2947
- LOCKED_POLICY = "locked",
2948
- UNLOCKED_POLICY = "unlocked"
2949
- }
2972
+ export declare const AuditPolicyState: {
2973
+ readonly LOCKED_POLICY: "locked";
2974
+ readonly UNLOCKED_POLICY: "unlocked";
2975
+ };
2976
+ /**
2977
+ * @public
2978
+ */
2979
+ export type AuditPolicyState = (typeof AuditPolicyState)[keyof typeof AuditPolicyState];
2950
2980
  /**
2951
2981
  * @public
2952
2982
  */
@@ -3110,12 +3140,17 @@ export interface ModifyCurrentDBClusterCapacityMessage {
3110
3140
  }
3111
3141
  /**
3112
3142
  * @public
3143
+ * @enum
3113
3144
  */
3114
- export declare enum CustomEngineVersionStatus {
3115
- available = "available",
3116
- inactive = "inactive",
3117
- inactive_except_restore = "inactive-except-restore"
3118
- }
3145
+ export declare const CustomEngineVersionStatus: {
3146
+ readonly available: "available";
3147
+ readonly inactive: "inactive";
3148
+ readonly inactive_except_restore: "inactive-except-restore";
3149
+ };
3150
+ /**
3151
+ * @public
3152
+ */
3153
+ export type CustomEngineVersionStatus = (typeof CustomEngineVersionStatus)[keyof typeof CustomEngineVersionStatus];
3119
3154
  /**
3120
3155
  * @public
3121
3156
  */