@aws-sdk/client-datasync 3.301.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.
@@ -2,11 +2,16 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
2
2
  import { DataSyncServiceException as __BaseException } from "./DataSyncServiceException";
3
3
  /**
4
4
  * @public
5
+ * @enum
5
6
  */
6
- export declare enum AgentStatus {
7
- OFFLINE = "OFFLINE",
8
- ONLINE = "ONLINE"
9
- }
7
+ export declare const AgentStatus: {
8
+ readonly OFFLINE: "OFFLINE";
9
+ readonly ONLINE: "ONLINE";
10
+ };
11
+ /**
12
+ * @public
13
+ */
14
+ export type AgentStatus = (typeof AgentStatus)[keyof typeof AgentStatus];
10
15
  /**
11
16
  * @public
12
17
  * <p>Represents a single entry in a list (or array) of DataSync agents when
@@ -28,11 +33,16 @@ export interface AgentListEntry {
28
33
  }
29
34
  /**
30
35
  * @public
36
+ * @enum
31
37
  */
32
- export declare enum Atime {
33
- BEST_EFFORT = "BEST_EFFORT",
34
- NONE = "NONE"
35
- }
38
+ export declare const Atime: {
39
+ readonly BEST_EFFORT: "BEST_EFFORT";
40
+ readonly NONE: "NONE";
41
+ };
42
+ /**
43
+ * @public
44
+ */
45
+ export type Atime = (typeof Atime)[keyof typeof Atime];
36
46
  /**
37
47
  * @public
38
48
  * <p>CancelTaskExecutionRequest</p>
@@ -185,11 +195,16 @@ export interface Ec2Config {
185
195
  }
186
196
  /**
187
197
  * @public
198
+ * @enum
188
199
  */
189
- export declare enum EfsInTransitEncryption {
190
- NONE = "NONE",
191
- TLS1_2 = "TLS1_2"
192
- }
200
+ export declare const EfsInTransitEncryption: {
201
+ readonly NONE: "NONE";
202
+ readonly TLS1_2: "TLS1_2";
203
+ };
204
+ /**
205
+ * @public
206
+ */
207
+ export type EfsInTransitEncryption = (typeof EfsInTransitEncryption)[keyof typeof EfsInTransitEncryption];
193
208
  /**
194
209
  * @public
195
210
  * <p>CreateLocationEfsRequest</p>
@@ -279,13 +294,18 @@ export interface CreateLocationFsxLustreResponse {
279
294
  }
280
295
  /**
281
296
  * @public
297
+ * @enum
282
298
  */
283
- export declare enum NfsVersion {
284
- AUTOMATIC = "AUTOMATIC",
285
- NFS3 = "NFS3",
286
- NFS4_0 = "NFS4_0",
287
- NFS4_1 = "NFS4_1"
288
- }
299
+ export declare const NfsVersion: {
300
+ readonly AUTOMATIC: "AUTOMATIC";
301
+ readonly NFS3: "NFS3";
302
+ readonly NFS4_0: "NFS4_0";
303
+ readonly NFS4_1: "NFS4_1";
304
+ };
305
+ /**
306
+ * @public
307
+ */
308
+ export type NfsVersion = (typeof NfsVersion)[keyof typeof NfsVersion];
289
309
  /**
290
310
  * @public
291
311
  * <p>Specifies how DataSync can access a location using the NFS protocol.</p>
@@ -334,14 +354,19 @@ export interface FsxProtocolNfs {
334
354
  }
335
355
  /**
336
356
  * @public
357
+ * @enum
337
358
  */
338
- export declare enum SmbVersion {
339
- AUTOMATIC = "AUTOMATIC",
340
- SMB1 = "SMB1",
341
- SMB2 = "SMB2",
342
- SMB2_0 = "SMB2_0",
343
- SMB3 = "SMB3"
344
- }
359
+ export declare const SmbVersion: {
360
+ readonly AUTOMATIC: "AUTOMATIC";
361
+ readonly SMB1: "SMB1";
362
+ readonly SMB2: "SMB2";
363
+ readonly SMB2_0: "SMB2_0";
364
+ readonly SMB3: "SMB3";
365
+ };
366
+ /**
367
+ * @public
368
+ */
369
+ export type SmbVersion = (typeof SmbVersion)[keyof typeof SmbVersion];
345
370
  /**
346
371
  * @public
347
372
  * <p>Specifies the version of the Server Message Block (SMB) protocol that DataSync uses to access an SMB file server.</p>
@@ -620,11 +645,16 @@ export interface CreateLocationFsxWindowsResponse {
620
645
  }
621
646
  /**
622
647
  * @public
648
+ * @enum
623
649
  */
624
- export declare enum HdfsAuthenticationType {
625
- KERBEROS = "KERBEROS",
626
- SIMPLE = "SIMPLE"
627
- }
650
+ export declare const HdfsAuthenticationType: {
651
+ readonly KERBEROS: "KERBEROS";
652
+ readonly SIMPLE: "SIMPLE";
653
+ };
654
+ /**
655
+ * @public
656
+ */
657
+ export type HdfsAuthenticationType = (typeof HdfsAuthenticationType)[keyof typeof HdfsAuthenticationType];
628
658
  /**
629
659
  * @public
630
660
  * <p>The NameNode of the Hadoop Distributed File System (HDFS). The NameNode manages the file
@@ -646,22 +676,32 @@ export interface HdfsNameNode {
646
676
  }
647
677
  /**
648
678
  * @public
679
+ * @enum
649
680
  */
650
- export declare enum HdfsDataTransferProtection {
651
- AUTHENTICATION = "AUTHENTICATION",
652
- DISABLED = "DISABLED",
653
- INTEGRITY = "INTEGRITY",
654
- PRIVACY = "PRIVACY"
655
- }
681
+ export declare const HdfsDataTransferProtection: {
682
+ readonly AUTHENTICATION: "AUTHENTICATION";
683
+ readonly DISABLED: "DISABLED";
684
+ readonly INTEGRITY: "INTEGRITY";
685
+ readonly PRIVACY: "PRIVACY";
686
+ };
656
687
  /**
657
688
  * @public
658
689
  */
659
- export declare enum HdfsRpcProtection {
660
- AUTHENTICATION = "AUTHENTICATION",
661
- DISABLED = "DISABLED",
662
- INTEGRITY = "INTEGRITY",
663
- PRIVACY = "PRIVACY"
664
- }
690
+ export type HdfsDataTransferProtection = (typeof HdfsDataTransferProtection)[keyof typeof HdfsDataTransferProtection];
691
+ /**
692
+ * @public
693
+ * @enum
694
+ */
695
+ export declare const HdfsRpcProtection: {
696
+ readonly AUTHENTICATION: "AUTHENTICATION";
697
+ readonly DISABLED: "DISABLED";
698
+ readonly INTEGRITY: "INTEGRITY";
699
+ readonly PRIVACY: "PRIVACY";
700
+ };
701
+ /**
702
+ * @public
703
+ */
704
+ export type HdfsRpcProtection = (typeof HdfsRpcProtection)[keyof typeof HdfsRpcProtection];
665
705
  /**
666
706
  * @public
667
707
  * <p>The Quality of Protection (QOP) configuration specifies the Remote Procedure Call (RPC)
@@ -859,11 +899,16 @@ export interface CreateLocationNfsResponse {
859
899
  }
860
900
  /**
861
901
  * @public
902
+ * @enum
862
903
  */
863
- export declare enum ObjectStorageServerProtocol {
864
- HTTP = "HTTP",
865
- HTTPS = "HTTPS"
866
- }
904
+ export declare const ObjectStorageServerProtocol: {
905
+ readonly HTTP: "HTTP";
906
+ readonly HTTPS: "HTTPS";
907
+ };
908
+ /**
909
+ * @public
910
+ */
911
+ export type ObjectStorageServerProtocol = (typeof ObjectStorageServerProtocol)[keyof typeof ObjectStorageServerProtocol];
867
912
  /**
868
913
  * @public
869
914
  * <p>CreateLocationObjectStorageRequest</p>
@@ -939,17 +984,22 @@ export interface S3Config {
939
984
  }
940
985
  /**
941
986
  * @public
987
+ * @enum
942
988
  */
943
- export declare enum S3StorageClass {
944
- DEEP_ARCHIVE = "DEEP_ARCHIVE",
945
- GLACIER = "GLACIER",
946
- GLACIER_INSTANT_RETRIEVAL = "GLACIER_INSTANT_RETRIEVAL",
947
- INTELLIGENT_TIERING = "INTELLIGENT_TIERING",
948
- ONEZONE_IA = "ONEZONE_IA",
949
- OUTPOSTS = "OUTPOSTS",
950
- STANDARD = "STANDARD",
951
- STANDARD_IA = "STANDARD_IA"
952
- }
989
+ export declare const S3StorageClass: {
990
+ readonly DEEP_ARCHIVE: "DEEP_ARCHIVE";
991
+ readonly GLACIER: "GLACIER";
992
+ readonly GLACIER_INSTANT_RETRIEVAL: "GLACIER_INSTANT_RETRIEVAL";
993
+ readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
994
+ readonly ONEZONE_IA: "ONEZONE_IA";
995
+ readonly OUTPOSTS: "OUTPOSTS";
996
+ readonly STANDARD: "STANDARD";
997
+ readonly STANDARD_IA: "STANDARD_IA";
998
+ };
999
+ /**
1000
+ * @public
1001
+ */
1002
+ export type S3StorageClass = (typeof S3StorageClass)[keyof typeof S3StorageClass];
953
1003
  /**
954
1004
  * @public
955
1005
  * <p>CreateLocationS3Request</p>
@@ -1072,10 +1122,15 @@ export interface CreateLocationSmbResponse {
1072
1122
  }
1073
1123
  /**
1074
1124
  * @public
1125
+ * @enum
1075
1126
  */
1076
- export declare enum FilterType {
1077
- SIMPLE_PATTERN = "SIMPLE_PATTERN"
1078
- }
1127
+ export declare const FilterType: {
1128
+ readonly SIMPLE_PATTERN: "SIMPLE_PATTERN";
1129
+ };
1130
+ /**
1131
+ * @public
1132
+ */
1133
+ export type FilterType = (typeof FilterType)[keyof typeof FilterType];
1079
1134
  /**
1080
1135
  * @public
1081
1136
  * <p>Specifies which files, folders, and objects to include or exclude when transferring files
@@ -1098,102 +1153,167 @@ export interface FilterRule {
1098
1153
  }
1099
1154
  /**
1100
1155
  * @public
1156
+ * @enum
1101
1157
  */
1102
- export declare enum Gid {
1103
- BOTH = "BOTH",
1104
- INT_VALUE = "INT_VALUE",
1105
- NAME = "NAME",
1106
- NONE = "NONE"
1107
- }
1158
+ export declare const Gid: {
1159
+ readonly BOTH: "BOTH";
1160
+ readonly INT_VALUE: "INT_VALUE";
1161
+ readonly NAME: "NAME";
1162
+ readonly NONE: "NONE";
1163
+ };
1108
1164
  /**
1109
1165
  * @public
1110
1166
  */
1111
- export declare enum LogLevel {
1112
- BASIC = "BASIC",
1113
- OFF = "OFF",
1114
- TRANSFER = "TRANSFER"
1115
- }
1167
+ export type Gid = (typeof Gid)[keyof typeof Gid];
1116
1168
  /**
1117
1169
  * @public
1170
+ * @enum
1118
1171
  */
1119
- export declare enum Mtime {
1120
- NONE = "NONE",
1121
- PRESERVE = "PRESERVE"
1122
- }
1172
+ export declare const LogLevel: {
1173
+ readonly BASIC: "BASIC";
1174
+ readonly OFF: "OFF";
1175
+ readonly TRANSFER: "TRANSFER";
1176
+ };
1123
1177
  /**
1124
1178
  * @public
1125
1179
  */
1126
- export declare enum ObjectTags {
1127
- NONE = "NONE",
1128
- PRESERVE = "PRESERVE"
1129
- }
1180
+ export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
1130
1181
  /**
1131
1182
  * @public
1183
+ * @enum
1132
1184
  */
1133
- export declare enum OverwriteMode {
1134
- ALWAYS = "ALWAYS",
1135
- NEVER = "NEVER"
1136
- }
1185
+ export declare const Mtime: {
1186
+ readonly NONE: "NONE";
1187
+ readonly PRESERVE: "PRESERVE";
1188
+ };
1137
1189
  /**
1138
1190
  * @public
1139
1191
  */
1140
- export declare enum PosixPermissions {
1141
- NONE = "NONE",
1142
- PRESERVE = "PRESERVE"
1143
- }
1192
+ export type Mtime = (typeof Mtime)[keyof typeof Mtime];
1144
1193
  /**
1145
1194
  * @public
1195
+ * @enum
1146
1196
  */
1147
- export declare enum PreserveDeletedFiles {
1148
- PRESERVE = "PRESERVE",
1149
- REMOVE = "REMOVE"
1150
- }
1197
+ export declare const ObjectTags: {
1198
+ readonly NONE: "NONE";
1199
+ readonly PRESERVE: "PRESERVE";
1200
+ };
1151
1201
  /**
1152
1202
  * @public
1153
1203
  */
1154
- export declare enum PreserveDevices {
1155
- NONE = "NONE",
1156
- PRESERVE = "PRESERVE"
1157
- }
1204
+ export type ObjectTags = (typeof ObjectTags)[keyof typeof ObjectTags];
1158
1205
  /**
1159
1206
  * @public
1207
+ * @enum
1160
1208
  */
1161
- export declare enum SmbSecurityDescriptorCopyFlags {
1162
- NONE = "NONE",
1163
- OWNER_DACL = "OWNER_DACL",
1164
- OWNER_DACL_SACL = "OWNER_DACL_SACL"
1165
- }
1209
+ export declare const OverwriteMode: {
1210
+ readonly ALWAYS: "ALWAYS";
1211
+ readonly NEVER: "NEVER";
1212
+ };
1166
1213
  /**
1167
1214
  * @public
1168
1215
  */
1169
- export declare enum TaskQueueing {
1170
- DISABLED = "DISABLED",
1171
- ENABLED = "ENABLED"
1172
- }
1216
+ export type OverwriteMode = (typeof OverwriteMode)[keyof typeof OverwriteMode];
1173
1217
  /**
1174
1218
  * @public
1219
+ * @enum
1175
1220
  */
1176
- export declare enum TransferMode {
1177
- ALL = "ALL",
1178
- CHANGED = "CHANGED"
1179
- }
1221
+ export declare const PosixPermissions: {
1222
+ readonly NONE: "NONE";
1223
+ readonly PRESERVE: "PRESERVE";
1224
+ };
1180
1225
  /**
1181
1226
  * @public
1182
1227
  */
1183
- export declare enum Uid {
1184
- BOTH = "BOTH",
1185
- INT_VALUE = "INT_VALUE",
1186
- NAME = "NAME",
1187
- NONE = "NONE"
1188
- }
1228
+ export type PosixPermissions = (typeof PosixPermissions)[keyof typeof PosixPermissions];
1189
1229
  /**
1190
1230
  * @public
1231
+ * @enum
1191
1232
  */
1192
- export declare enum VerifyMode {
1193
- NONE = "NONE",
1194
- ONLY_FILES_TRANSFERRED = "ONLY_FILES_TRANSFERRED",
1195
- POINT_IN_TIME_CONSISTENT = "POINT_IN_TIME_CONSISTENT"
1196
- }
1233
+ export declare const PreserveDeletedFiles: {
1234
+ readonly PRESERVE: "PRESERVE";
1235
+ readonly REMOVE: "REMOVE";
1236
+ };
1237
+ /**
1238
+ * @public
1239
+ */
1240
+ export type PreserveDeletedFiles = (typeof PreserveDeletedFiles)[keyof typeof PreserveDeletedFiles];
1241
+ /**
1242
+ * @public
1243
+ * @enum
1244
+ */
1245
+ export declare const PreserveDevices: {
1246
+ readonly NONE: "NONE";
1247
+ readonly PRESERVE: "PRESERVE";
1248
+ };
1249
+ /**
1250
+ * @public
1251
+ */
1252
+ export type PreserveDevices = (typeof PreserveDevices)[keyof typeof PreserveDevices];
1253
+ /**
1254
+ * @public
1255
+ * @enum
1256
+ */
1257
+ export declare const SmbSecurityDescriptorCopyFlags: {
1258
+ readonly NONE: "NONE";
1259
+ readonly OWNER_DACL: "OWNER_DACL";
1260
+ readonly OWNER_DACL_SACL: "OWNER_DACL_SACL";
1261
+ };
1262
+ /**
1263
+ * @public
1264
+ */
1265
+ export type SmbSecurityDescriptorCopyFlags = (typeof SmbSecurityDescriptorCopyFlags)[keyof typeof SmbSecurityDescriptorCopyFlags];
1266
+ /**
1267
+ * @public
1268
+ * @enum
1269
+ */
1270
+ export declare const TaskQueueing: {
1271
+ readonly DISABLED: "DISABLED";
1272
+ readonly ENABLED: "ENABLED";
1273
+ };
1274
+ /**
1275
+ * @public
1276
+ */
1277
+ export type TaskQueueing = (typeof TaskQueueing)[keyof typeof TaskQueueing];
1278
+ /**
1279
+ * @public
1280
+ * @enum
1281
+ */
1282
+ export declare const TransferMode: {
1283
+ readonly ALL: "ALL";
1284
+ readonly CHANGED: "CHANGED";
1285
+ };
1286
+ /**
1287
+ * @public
1288
+ */
1289
+ export type TransferMode = (typeof TransferMode)[keyof typeof TransferMode];
1290
+ /**
1291
+ * @public
1292
+ * @enum
1293
+ */
1294
+ export declare const Uid: {
1295
+ readonly BOTH: "BOTH";
1296
+ readonly INT_VALUE: "INT_VALUE";
1297
+ readonly NAME: "NAME";
1298
+ readonly NONE: "NONE";
1299
+ };
1300
+ /**
1301
+ * @public
1302
+ */
1303
+ export type Uid = (typeof Uid)[keyof typeof Uid];
1304
+ /**
1305
+ * @public
1306
+ * @enum
1307
+ */
1308
+ export declare const VerifyMode: {
1309
+ readonly NONE: "NONE";
1310
+ readonly ONLY_FILES_TRANSFERRED: "ONLY_FILES_TRANSFERRED";
1311
+ readonly POINT_IN_TIME_CONSISTENT: "POINT_IN_TIME_CONSISTENT";
1312
+ };
1313
+ /**
1314
+ * @public
1315
+ */
1316
+ export type VerifyMode = (typeof VerifyMode)[keyof typeof VerifyMode];
1197
1317
  /**
1198
1318
  * @public
1199
1319
  * <p>Configures your DataSync task settings. These options include how DataSync handles files, objects, and their associated metadata. You also can specify how
@@ -1577,12 +1697,17 @@ export interface DescribeAgentRequest {
1577
1697
  }
1578
1698
  /**
1579
1699
  * @public
1700
+ * @enum
1580
1701
  */
1581
- export declare enum EndpointType {
1582
- FIPS = "FIPS",
1583
- PRIVATE_LINK = "PRIVATE_LINK",
1584
- PUBLIC = "PUBLIC"
1585
- }
1702
+ export declare const EndpointType: {
1703
+ readonly FIPS: "FIPS";
1704
+ readonly PRIVATE_LINK: "PRIVATE_LINK";
1705
+ readonly PUBLIC: "PUBLIC";
1706
+ };
1707
+ /**
1708
+ * @public
1709
+ */
1710
+ export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
1586
1711
  /**
1587
1712
  * @public
1588
1713
  * <p>The VPC endpoint, subnet, and security group that an agent uses to access IP addresses in
@@ -2110,14 +2235,19 @@ export interface DescribeTaskRequest {
2110
2235
  }
2111
2236
  /**
2112
2237
  * @public
2238
+ * @enum
2113
2239
  */
2114
- export declare enum TaskStatus {
2115
- AVAILABLE = "AVAILABLE",
2116
- CREATING = "CREATING",
2117
- QUEUED = "QUEUED",
2118
- RUNNING = "RUNNING",
2119
- UNAVAILABLE = "UNAVAILABLE"
2120
- }
2240
+ export declare const TaskStatus: {
2241
+ readonly AVAILABLE: "AVAILABLE";
2242
+ readonly CREATING: "CREATING";
2243
+ readonly QUEUED: "QUEUED";
2244
+ readonly RUNNING: "RUNNING";
2245
+ readonly UNAVAILABLE: "UNAVAILABLE";
2246
+ };
2247
+ /**
2248
+ * @public
2249
+ */
2250
+ export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
2121
2251
  /**
2122
2252
  * @public
2123
2253
  * <p>DescribeTaskResponse</p>
@@ -2208,12 +2338,17 @@ export interface DescribeTaskExecutionRequest {
2208
2338
  }
2209
2339
  /**
2210
2340
  * @public
2341
+ * @enum
2211
2342
  */
2212
- export declare enum PhaseStatus {
2213
- ERROR = "ERROR",
2214
- PENDING = "PENDING",
2215
- SUCCESS = "SUCCESS"
2216
- }
2343
+ export declare const PhaseStatus: {
2344
+ readonly ERROR: "ERROR";
2345
+ readonly PENDING: "PENDING";
2346
+ readonly SUCCESS: "SUCCESS";
2347
+ };
2348
+ /**
2349
+ * @public
2350
+ */
2351
+ export type PhaseStatus = (typeof PhaseStatus)[keyof typeof PhaseStatus];
2217
2352
  /**
2218
2353
  * @public
2219
2354
  * <p>Describes the detailed result of a <code>TaskExecution</code> operation. This result
@@ -2265,16 +2400,21 @@ export interface TaskExecutionResultDetail {
2265
2400
  }
2266
2401
  /**
2267
2402
  * @public
2403
+ * @enum
2268
2404
  */
2269
- export declare enum TaskExecutionStatus {
2270
- ERROR = "ERROR",
2271
- LAUNCHING = "LAUNCHING",
2272
- PREPARING = "PREPARING",
2273
- QUEUED = "QUEUED",
2274
- SUCCESS = "SUCCESS",
2275
- TRANSFERRING = "TRANSFERRING",
2276
- VERIFYING = "VERIFYING"
2277
- }
2405
+ export declare const TaskExecutionStatus: {
2406
+ readonly ERROR: "ERROR";
2407
+ readonly LAUNCHING: "LAUNCHING";
2408
+ readonly PREPARING: "PREPARING";
2409
+ readonly QUEUED: "QUEUED";
2410
+ readonly SUCCESS: "SUCCESS";
2411
+ readonly TRANSFERRING: "TRANSFERRING";
2412
+ readonly VERIFYING: "VERIFYING";
2413
+ };
2414
+ /**
2415
+ * @public
2416
+ */
2417
+ export type TaskExecutionStatus = (typeof TaskExecutionStatus)[keyof typeof TaskExecutionStatus];
2278
2418
  /**
2279
2419
  * @public
2280
2420
  * <p>DescribeTaskExecutionResponse</p>
@@ -2396,27 +2536,37 @@ export interface ListAgentsResponse {
2396
2536
  }
2397
2537
  /**
2398
2538
  * @public
2539
+ * @enum
2399
2540
  */
2400
- export declare enum LocationFilterName {
2401
- CreationTime = "CreationTime",
2402
- LocationType = "LocationType",
2403
- LocationUri = "LocationUri"
2404
- }
2541
+ export declare const LocationFilterName: {
2542
+ readonly CreationTime: "CreationTime";
2543
+ readonly LocationType: "LocationType";
2544
+ readonly LocationUri: "LocationUri";
2545
+ };
2405
2546
  /**
2406
2547
  * @public
2407
2548
  */
2408
- export declare enum Operator {
2409
- BEGINS_WITH = "BeginsWith",
2410
- CONTAINS = "Contains",
2411
- EQ = "Equals",
2412
- GE = "GreaterThanOrEqual",
2413
- GT = "GreaterThan",
2414
- IN = "In",
2415
- LE = "LessThanOrEqual",
2416
- LT = "LessThan",
2417
- NE = "NotEquals",
2418
- NOT_CONTAINS = "NotContains"
2419
- }
2549
+ export type LocationFilterName = (typeof LocationFilterName)[keyof typeof LocationFilterName];
2550
+ /**
2551
+ * @public
2552
+ * @enum
2553
+ */
2554
+ export declare const Operator: {
2555
+ readonly BEGINS_WITH: "BeginsWith";
2556
+ readonly CONTAINS: "Contains";
2557
+ readonly EQ: "Equals";
2558
+ readonly GE: "GreaterThanOrEqual";
2559
+ readonly GT: "GreaterThan";
2560
+ readonly IN: "In";
2561
+ readonly LE: "LessThanOrEqual";
2562
+ readonly LT: "LessThan";
2563
+ readonly NE: "NotEquals";
2564
+ readonly NOT_CONTAINS: "NotContains";
2565
+ };
2566
+ /**
2567
+ * @public
2568
+ */
2569
+ export type Operator = (typeof Operator)[keyof typeof Operator];
2420
2570
  /**
2421
2571
  * @public
2422
2572
  * <p>Narrow down the list of resources returned by <code>ListLocations</code>. For example, to
@@ -2598,11 +2748,16 @@ export interface ListTaskExecutionsResponse {
2598
2748
  }
2599
2749
  /**
2600
2750
  * @public
2751
+ * @enum
2601
2752
  */
2602
- export declare enum TaskFilterName {
2603
- CreationTime = "CreationTime",
2604
- LocationId = "LocationId"
2605
- }
2753
+ export declare const TaskFilterName: {
2754
+ readonly CreationTime: "CreationTime";
2755
+ readonly LocationId: "LocationId";
2756
+ };
2757
+ /**
2758
+ * @public
2759
+ */
2760
+ export type TaskFilterName = (typeof TaskFilterName)[keyof typeof TaskFilterName];
2606
2761
  /**
2607
2762
  * @public
2608
2763
  * <p>You can use API filters to narrow down the list of resources returned by <code>ListTasks</code>.