datasync.d.ts
67.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
import {Request} from '../lib/request';
import {Response} from '../lib/response';
import {AWSError} from '../lib/error';
import {Service} from '../lib/service';
import {ServiceConfigurationOptions} from '../lib/service';
import {ConfigBase as Config} from '../lib/config';
interface Blob {}
declare class DataSync extends Service {
/**
* Constructs a service object. This object has one method for each API operation.
*/
constructor(options?: DataSync.Types.ClientConfiguration)
config: Config & DataSync.Types.ClientConfiguration;
/**
* Cancels execution of a task. When you cancel a task execution, the transfer of some files are abruptly interrupted. The contents of files that are transferred to the destination might be incomplete or inconsistent with the source files. However, if you start a new task execution on the same task and you allow the task execution to complete, file content on the destination is complete and consistent. This applies to other unexpected failures that interrupt a task execution. In all of these cases, AWS DataSync successfully complete the transfer when you start the next task execution.
*/
cancelTaskExecution(params: DataSync.Types.CancelTaskExecutionRequest, callback?: (err: AWSError, data: DataSync.Types.CancelTaskExecutionResponse) => void): Request<DataSync.Types.CancelTaskExecutionResponse, AWSError>;
/**
* Cancels execution of a task. When you cancel a task execution, the transfer of some files are abruptly interrupted. The contents of files that are transferred to the destination might be incomplete or inconsistent with the source files. However, if you start a new task execution on the same task and you allow the task execution to complete, file content on the destination is complete and consistent. This applies to other unexpected failures that interrupt a task execution. In all of these cases, AWS DataSync successfully complete the transfer when you start the next task execution.
*/
cancelTaskExecution(callback?: (err: AWSError, data: DataSync.Types.CancelTaskExecutionResponse) => void): Request<DataSync.Types.CancelTaskExecutionResponse, AWSError>;
/**
* Activates an AWS DataSync agent that you have deployed on your host. The activation process associates your agent with your account. In the activation process, you specify information such as the AWS Region that you want to activate the agent in. You activate the agent in the AWS Region where your target locations (in Amazon S3 or Amazon EFS) reside. Your tasks are created in this AWS Region. You can activate the agent in a VPC (Virtual private Cloud) or provide the agent access to a VPC endpoint so you can run tasks without going over the public Internet. You can use an agent for more than one location. If a task uses multiple agents, all of them need to have status AVAILABLE for the task to run. If you use multiple agents for a source location, the status of all the agents must be AVAILABLE for the task to run. Agents are automatically updated by AWS on a regular basis, using a mechanism that ensures minimal interruption to your tasks.
*/
createAgent(params: DataSync.Types.CreateAgentRequest, callback?: (err: AWSError, data: DataSync.Types.CreateAgentResponse) => void): Request<DataSync.Types.CreateAgentResponse, AWSError>;
/**
* Activates an AWS DataSync agent that you have deployed on your host. The activation process associates your agent with your account. In the activation process, you specify information such as the AWS Region that you want to activate the agent in. You activate the agent in the AWS Region where your target locations (in Amazon S3 or Amazon EFS) reside. Your tasks are created in this AWS Region. You can activate the agent in a VPC (Virtual private Cloud) or provide the agent access to a VPC endpoint so you can run tasks without going over the public Internet. You can use an agent for more than one location. If a task uses multiple agents, all of them need to have status AVAILABLE for the task to run. If you use multiple agents for a source location, the status of all the agents must be AVAILABLE for the task to run. Agents are automatically updated by AWS on a regular basis, using a mechanism that ensures minimal interruption to your tasks.
*/
createAgent(callback?: (err: AWSError, data: DataSync.Types.CreateAgentResponse) => void): Request<DataSync.Types.CreateAgentResponse, AWSError>;
/**
* Creates an endpoint for an Amazon EFS file system.
*/
createLocationEfs(params: DataSync.Types.CreateLocationEfsRequest, callback?: (err: AWSError, data: DataSync.Types.CreateLocationEfsResponse) => void): Request<DataSync.Types.CreateLocationEfsResponse, AWSError>;
/**
* Creates an endpoint for an Amazon EFS file system.
*/
createLocationEfs(callback?: (err: AWSError, data: DataSync.Types.CreateLocationEfsResponse) => void): Request<DataSync.Types.CreateLocationEfsResponse, AWSError>;
/**
* Defines a file system on a Network File System (NFS) server that can be read from or written to
*/
createLocationNfs(params: DataSync.Types.CreateLocationNfsRequest, callback?: (err: AWSError, data: DataSync.Types.CreateLocationNfsResponse) => void): Request<DataSync.Types.CreateLocationNfsResponse, AWSError>;
/**
* Defines a file system on a Network File System (NFS) server that can be read from or written to
*/
createLocationNfs(callback?: (err: AWSError, data: DataSync.Types.CreateLocationNfsResponse) => void): Request<DataSync.Types.CreateLocationNfsResponse, AWSError>;
/**
* Creates an endpoint for an Amazon S3 bucket. For AWS DataSync to access a destination S3 bucket, it needs an AWS Identity and Access Management (IAM) role that has the required permissions. You can set up the required permissions by creating an IAM policy that grants the required permissions and attaching the policy to the role. An example of such a policy is shown in the examples section. For more information, see https://docs.aws.amazon.com/datasync/latest/userguide/working-with-locations.html#create-s3-location in the AWS DataSync User Guide.
*/
createLocationS3(params: DataSync.Types.CreateLocationS3Request, callback?: (err: AWSError, data: DataSync.Types.CreateLocationS3Response) => void): Request<DataSync.Types.CreateLocationS3Response, AWSError>;
/**
* Creates an endpoint for an Amazon S3 bucket. For AWS DataSync to access a destination S3 bucket, it needs an AWS Identity and Access Management (IAM) role that has the required permissions. You can set up the required permissions by creating an IAM policy that grants the required permissions and attaching the policy to the role. An example of such a policy is shown in the examples section. For more information, see https://docs.aws.amazon.com/datasync/latest/userguide/working-with-locations.html#create-s3-location in the AWS DataSync User Guide.
*/
createLocationS3(callback?: (err: AWSError, data: DataSync.Types.CreateLocationS3Response) => void): Request<DataSync.Types.CreateLocationS3Response, AWSError>;
/**
* Defines a file system on an Server Message Block (SMB) server that can be read from or written to.
*/
createLocationSmb(params: DataSync.Types.CreateLocationSmbRequest, callback?: (err: AWSError, data: DataSync.Types.CreateLocationSmbResponse) => void): Request<DataSync.Types.CreateLocationSmbResponse, AWSError>;
/**
* Defines a file system on an Server Message Block (SMB) server that can be read from or written to.
*/
createLocationSmb(callback?: (err: AWSError, data: DataSync.Types.CreateLocationSmbResponse) => void): Request<DataSync.Types.CreateLocationSmbResponse, AWSError>;
/**
* Creates a task. A task is a set of two locations (source and destination) and a set of Options that you use to control the behavior of a task. If you don't specify Options when you create a task, AWS DataSync populates them with service defaults. When you create a task, it first enters the CREATING state. During CREATING AWS DataSync attempts to mount the on-premises Network File System (NFS) location. The task transitions to the AVAILABLE state without waiting for the AWS location to become mounted. If required, AWS DataSync mounts the AWS location before each task execution. If an agent that is associated with a source (NFS) location goes offline, the task transitions to the UNAVAILABLE status. If the status of the task remains in the CREATING status for more than a few minutes, it means that your agent might be having trouble mounting the source NFS file system. Check the task's ErrorCode and ErrorDetail. Mount issues are often caused by either a misconfigured firewall or a mistyped NFS server host name.
*/
createTask(params: DataSync.Types.CreateTaskRequest, callback?: (err: AWSError, data: DataSync.Types.CreateTaskResponse) => void): Request<DataSync.Types.CreateTaskResponse, AWSError>;
/**
* Creates a task. A task is a set of two locations (source and destination) and a set of Options that you use to control the behavior of a task. If you don't specify Options when you create a task, AWS DataSync populates them with service defaults. When you create a task, it first enters the CREATING state. During CREATING AWS DataSync attempts to mount the on-premises Network File System (NFS) location. The task transitions to the AVAILABLE state without waiting for the AWS location to become mounted. If required, AWS DataSync mounts the AWS location before each task execution. If an agent that is associated with a source (NFS) location goes offline, the task transitions to the UNAVAILABLE status. If the status of the task remains in the CREATING status for more than a few minutes, it means that your agent might be having trouble mounting the source NFS file system. Check the task's ErrorCode and ErrorDetail. Mount issues are often caused by either a misconfigured firewall or a mistyped NFS server host name.
*/
createTask(callback?: (err: AWSError, data: DataSync.Types.CreateTaskResponse) => void): Request<DataSync.Types.CreateTaskResponse, AWSError>;
/**
* Deletes an agent. To specify which agent to delete, use the Amazon Resource Name (ARN) of the agent in your request. The operation disassociates the agent from your AWS account. However, it doesn't delete the agent virtual machine (VM) from your on-premises environment.
*/
deleteAgent(params: DataSync.Types.DeleteAgentRequest, callback?: (err: AWSError, data: DataSync.Types.DeleteAgentResponse) => void): Request<DataSync.Types.DeleteAgentResponse, AWSError>;
/**
* Deletes an agent. To specify which agent to delete, use the Amazon Resource Name (ARN) of the agent in your request. The operation disassociates the agent from your AWS account. However, it doesn't delete the agent virtual machine (VM) from your on-premises environment.
*/
deleteAgent(callback?: (err: AWSError, data: DataSync.Types.DeleteAgentResponse) => void): Request<DataSync.Types.DeleteAgentResponse, AWSError>;
/**
* Deletes the configuration of a location used by AWS DataSync.
*/
deleteLocation(params: DataSync.Types.DeleteLocationRequest, callback?: (err: AWSError, data: DataSync.Types.DeleteLocationResponse) => void): Request<DataSync.Types.DeleteLocationResponse, AWSError>;
/**
* Deletes the configuration of a location used by AWS DataSync.
*/
deleteLocation(callback?: (err: AWSError, data: DataSync.Types.DeleteLocationResponse) => void): Request<DataSync.Types.DeleteLocationResponse, AWSError>;
/**
* Deletes a task.
*/
deleteTask(params: DataSync.Types.DeleteTaskRequest, callback?: (err: AWSError, data: DataSync.Types.DeleteTaskResponse) => void): Request<DataSync.Types.DeleteTaskResponse, AWSError>;
/**
* Deletes a task.
*/
deleteTask(callback?: (err: AWSError, data: DataSync.Types.DeleteTaskResponse) => void): Request<DataSync.Types.DeleteTaskResponse, AWSError>;
/**
* Returns metadata such as the name, the network interfaces, and the status (that is, whether the agent is running or not) for an agent. To specify which agent to describe, use the Amazon Resource Name (ARN) of the agent in your request.
*/
describeAgent(params: DataSync.Types.DescribeAgentRequest, callback?: (err: AWSError, data: DataSync.Types.DescribeAgentResponse) => void): Request<DataSync.Types.DescribeAgentResponse, AWSError>;
/**
* Returns metadata such as the name, the network interfaces, and the status (that is, whether the agent is running or not) for an agent. To specify which agent to describe, use the Amazon Resource Name (ARN) of the agent in your request.
*/
describeAgent(callback?: (err: AWSError, data: DataSync.Types.DescribeAgentResponse) => void): Request<DataSync.Types.DescribeAgentResponse, AWSError>;
/**
* Returns metadata, such as the path information about an Amazon EFS location.
*/
describeLocationEfs(params: DataSync.Types.DescribeLocationEfsRequest, callback?: (err: AWSError, data: DataSync.Types.DescribeLocationEfsResponse) => void): Request<DataSync.Types.DescribeLocationEfsResponse, AWSError>;
/**
* Returns metadata, such as the path information about an Amazon EFS location.
*/
describeLocationEfs(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationEfsResponse) => void): Request<DataSync.Types.DescribeLocationEfsResponse, AWSError>;
/**
* Returns metadata, such as the path information, about a NFS location.
*/
describeLocationNfs(params: DataSync.Types.DescribeLocationNfsRequest, callback?: (err: AWSError, data: DataSync.Types.DescribeLocationNfsResponse) => void): Request<DataSync.Types.DescribeLocationNfsResponse, AWSError>;
/**
* Returns metadata, such as the path information, about a NFS location.
*/
describeLocationNfs(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationNfsResponse) => void): Request<DataSync.Types.DescribeLocationNfsResponse, AWSError>;
/**
* Returns metadata, such as bucket name, about an Amazon S3 bucket location.
*/
describeLocationS3(params: DataSync.Types.DescribeLocationS3Request, callback?: (err: AWSError, data: DataSync.Types.DescribeLocationS3Response) => void): Request<DataSync.Types.DescribeLocationS3Response, AWSError>;
/**
* Returns metadata, such as bucket name, about an Amazon S3 bucket location.
*/
describeLocationS3(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationS3Response) => void): Request<DataSync.Types.DescribeLocationS3Response, AWSError>;
/**
* Returns metadata, such as the path and user information about a SMB location.
*/
describeLocationSmb(params: DataSync.Types.DescribeLocationSmbRequest, callback?: (err: AWSError, data: DataSync.Types.DescribeLocationSmbResponse) => void): Request<DataSync.Types.DescribeLocationSmbResponse, AWSError>;
/**
* Returns metadata, such as the path and user information about a SMB location.
*/
describeLocationSmb(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationSmbResponse) => void): Request<DataSync.Types.DescribeLocationSmbResponse, AWSError>;
/**
* Returns metadata about a task.
*/
describeTask(params: DataSync.Types.DescribeTaskRequest, callback?: (err: AWSError, data: DataSync.Types.DescribeTaskResponse) => void): Request<DataSync.Types.DescribeTaskResponse, AWSError>;
/**
* Returns metadata about a task.
*/
describeTask(callback?: (err: AWSError, data: DataSync.Types.DescribeTaskResponse) => void): Request<DataSync.Types.DescribeTaskResponse, AWSError>;
/**
* Returns detailed metadata about a task that is being executed.
*/
describeTaskExecution(params: DataSync.Types.DescribeTaskExecutionRequest, callback?: (err: AWSError, data: DataSync.Types.DescribeTaskExecutionResponse) => void): Request<DataSync.Types.DescribeTaskExecutionResponse, AWSError>;
/**
* Returns detailed metadata about a task that is being executed.
*/
describeTaskExecution(callback?: (err: AWSError, data: DataSync.Types.DescribeTaskExecutionResponse) => void): Request<DataSync.Types.DescribeTaskExecutionResponse, AWSError>;
/**
* Returns a list of agents owned by an AWS account in the AWS Region specified in the request. The returned list is ordered by agent Amazon Resource Name (ARN). By default, this operation returns a maximum of 100 agents. This operation supports pagination that enables you to optionally reduce the number of agents returned in a response. If you have more agents than are returned in a response (that is, the response returns only a truncated list of your agents), the response contains a marker that you can specify in your next request to fetch the next page of agents.
*/
listAgents(params: DataSync.Types.ListAgentsRequest, callback?: (err: AWSError, data: DataSync.Types.ListAgentsResponse) => void): Request<DataSync.Types.ListAgentsResponse, AWSError>;
/**
* Returns a list of agents owned by an AWS account in the AWS Region specified in the request. The returned list is ordered by agent Amazon Resource Name (ARN). By default, this operation returns a maximum of 100 agents. This operation supports pagination that enables you to optionally reduce the number of agents returned in a response. If you have more agents than are returned in a response (that is, the response returns only a truncated list of your agents), the response contains a marker that you can specify in your next request to fetch the next page of agents.
*/
listAgents(callback?: (err: AWSError, data: DataSync.Types.ListAgentsResponse) => void): Request<DataSync.Types.ListAgentsResponse, AWSError>;
/**
* Returns a lists of source and destination locations. If you have more locations than are returned in a response (that is, the response returns only a truncated list of your agents), the response contains a token that you can specify in your next request to fetch the next page of locations.
*/
listLocations(params: DataSync.Types.ListLocationsRequest, callback?: (err: AWSError, data: DataSync.Types.ListLocationsResponse) => void): Request<DataSync.Types.ListLocationsResponse, AWSError>;
/**
* Returns a lists of source and destination locations. If you have more locations than are returned in a response (that is, the response returns only a truncated list of your agents), the response contains a token that you can specify in your next request to fetch the next page of locations.
*/
listLocations(callback?: (err: AWSError, data: DataSync.Types.ListLocationsResponse) => void): Request<DataSync.Types.ListLocationsResponse, AWSError>;
/**
* Returns all the tags associated with a specified resources.
*/
listTagsForResource(params: DataSync.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: DataSync.Types.ListTagsForResourceResponse) => void): Request<DataSync.Types.ListTagsForResourceResponse, AWSError>;
/**
* Returns all the tags associated with a specified resources.
*/
listTagsForResource(callback?: (err: AWSError, data: DataSync.Types.ListTagsForResourceResponse) => void): Request<DataSync.Types.ListTagsForResourceResponse, AWSError>;
/**
* Returns a list of executed tasks.
*/
listTaskExecutions(params: DataSync.Types.ListTaskExecutionsRequest, callback?: (err: AWSError, data: DataSync.Types.ListTaskExecutionsResponse) => void): Request<DataSync.Types.ListTaskExecutionsResponse, AWSError>;
/**
* Returns a list of executed tasks.
*/
listTaskExecutions(callback?: (err: AWSError, data: DataSync.Types.ListTaskExecutionsResponse) => void): Request<DataSync.Types.ListTaskExecutionsResponse, AWSError>;
/**
* Returns a list of all the tasks.
*/
listTasks(params: DataSync.Types.ListTasksRequest, callback?: (err: AWSError, data: DataSync.Types.ListTasksResponse) => void): Request<DataSync.Types.ListTasksResponse, AWSError>;
/**
* Returns a list of all the tasks.
*/
listTasks(callback?: (err: AWSError, data: DataSync.Types.ListTasksResponse) => void): Request<DataSync.Types.ListTasksResponse, AWSError>;
/**
* Starts a specific invocation of a task. A TaskExecution value represents an individual run of a task. Each task can have at most one TaskExecution at a time. TaskExecution has the following transition phases: INITIALIZING | PREPARING | TRANSFERRING | VERIFYING | SUCCESS/FAILURE. For detailed information, see the Task Execution section in the Components and Terminology topic in the AWS DataSync User Guide.
*/
startTaskExecution(params: DataSync.Types.StartTaskExecutionRequest, callback?: (err: AWSError, data: DataSync.Types.StartTaskExecutionResponse) => void): Request<DataSync.Types.StartTaskExecutionResponse, AWSError>;
/**
* Starts a specific invocation of a task. A TaskExecution value represents an individual run of a task. Each task can have at most one TaskExecution at a time. TaskExecution has the following transition phases: INITIALIZING | PREPARING | TRANSFERRING | VERIFYING | SUCCESS/FAILURE. For detailed information, see the Task Execution section in the Components and Terminology topic in the AWS DataSync User Guide.
*/
startTaskExecution(callback?: (err: AWSError, data: DataSync.Types.StartTaskExecutionResponse) => void): Request<DataSync.Types.StartTaskExecutionResponse, AWSError>;
/**
* Applies a key-value pair to an AWS resource.
*/
tagResource(params: DataSync.Types.TagResourceRequest, callback?: (err: AWSError, data: DataSync.Types.TagResourceResponse) => void): Request<DataSync.Types.TagResourceResponse, AWSError>;
/**
* Applies a key-value pair to an AWS resource.
*/
tagResource(callback?: (err: AWSError, data: DataSync.Types.TagResourceResponse) => void): Request<DataSync.Types.TagResourceResponse, AWSError>;
/**
* Removes a tag from an AWS resource.
*/
untagResource(params: DataSync.Types.UntagResourceRequest, callback?: (err: AWSError, data: DataSync.Types.UntagResourceResponse) => void): Request<DataSync.Types.UntagResourceResponse, AWSError>;
/**
* Removes a tag from an AWS resource.
*/
untagResource(callback?: (err: AWSError, data: DataSync.Types.UntagResourceResponse) => void): Request<DataSync.Types.UntagResourceResponse, AWSError>;
/**
* Updates the name of an agent.
*/
updateAgent(params: DataSync.Types.UpdateAgentRequest, callback?: (err: AWSError, data: DataSync.Types.UpdateAgentResponse) => void): Request<DataSync.Types.UpdateAgentResponse, AWSError>;
/**
* Updates the name of an agent.
*/
updateAgent(callback?: (err: AWSError, data: DataSync.Types.UpdateAgentResponse) => void): Request<DataSync.Types.UpdateAgentResponse, AWSError>;
/**
* Updates the metadata associated with a task.
*/
updateTask(params: DataSync.Types.UpdateTaskRequest, callback?: (err: AWSError, data: DataSync.Types.UpdateTaskResponse) => void): Request<DataSync.Types.UpdateTaskResponse, AWSError>;
/**
* Updates the metadata associated with a task.
*/
updateTask(callback?: (err: AWSError, data: DataSync.Types.UpdateTaskResponse) => void): Request<DataSync.Types.UpdateTaskResponse, AWSError>;
}
declare namespace DataSync {
export type ActivationKey = string;
export type AgentArn = string;
export type AgentArnList = AgentArn[];
export type AgentList = AgentListEntry[];
export interface AgentListEntry {
/**
* The Amazon Resource Name (ARN) of the agent.
*/
AgentArn?: AgentArn;
/**
* The name of the agent.
*/
Name?: TagValue;
/**
* The status of the agent.
*/
Status?: AgentStatus;
}
export type AgentStatus = "ONLINE"|"OFFLINE"|string;
export type Atime = "NONE"|"BEST_EFFORT"|string;
export type BytesPerSecond = number;
export interface CancelTaskExecutionRequest {
/**
* The Amazon Resource Name (ARN) of the task execution to cancel.
*/
TaskExecutionArn: TaskExecutionArn;
}
export interface CancelTaskExecutionResponse {
}
export interface CreateAgentRequest {
/**
* Your agent activation key. You can get the activation key either by sending an HTTP GET request with redirects that enable you to get the agent IP address (port 80). Alternatively, you can get it from the AWS DataSync console. The redirect URL returned in the response provides you the activation key for your agent in the query string parameter activationKey. It might also include other activation-related parameters; however, these are merely defaults. The arguments you pass to this API call determine the actual configuration of your agent. For more information, see Activating an Agent in the AWS DataSync User Guide.
*/
ActivationKey: ActivationKey;
/**
* The name you configured for your agent. This value is a text reference that is used to identify the agent in the console.
*/
AgentName?: TagValue;
/**
* The key-value pair that represents the tag that you want to associate with the agent. The value can be an empty string. This value helps you manage, filter, and search for your agents. Valid characters for key and value are letters, spaces, and numbers representable in UTF-8 format, and the following special characters: + - = . _ : / @.
*/
Tags?: TagList;
/**
* The ID of the VPC (Virtual Private Cloud) endpoint that the agent has access to. This is the client-side VPC endpoint, also called a PrivateLink. If you don't have a PrivateLink VPC endpoint, see Creating a VPC Endpoint Service Configuration in the AWS VPC User Guide. VPC endpoint ID looks like this: vpce-01234d5aff67890e1.
*/
VpcEndpointId?: VpcEndpointId;
/**
* The Amazon Resource Names (ARNs) of the subnets in which DataSync will create elastic network interfaces for each data transfer task. The agent that runs a task must be private. When you start a task that is associated with an agent created in a VPC, or one that has access to an IP address in a VPC, then the task is also private. In this case, DataSync creates four network interfaces for each task in your subnet. For a data transfer to work, the agent must be able to route to all these four network interfaces.
*/
SubnetArns?: PLSubnetArnList;
/**
* The ARNs of the security groups used to protect your data transfer task subnets. See CreateAgentRequest$SubnetArns.
*/
SecurityGroupArns?: PLSecurityGroupArnList;
}
export interface CreateAgentResponse {
/**
* The Amazon Resource Name (ARN) of the agent. Use the ListAgents operation to return a list of agents for your account and AWS Region.
*/
AgentArn?: AgentArn;
}
export interface CreateLocationEfsRequest {
/**
* A subdirectory in the location’s path. This subdirectory in the EFS file system is used to read data from the EFS source location or write data to the EFS destination. By default, AWS DataSync uses the root directory. Subdirectory must be specified with forward slashes. For example /path/to/folder.
*/
Subdirectory?: Subdirectory;
/**
* The Amazon Resource Name (ARN) for the Amazon EFS file system.
*/
EfsFilesystemArn: EfsFilesystemArn;
/**
* The subnet and security group that the Amazon EFS file system uses. The security group that you provide needs to be able to communicate with the security group on the mount target in the subnet specified. The exact relationship between security group M (of the mount target) and security group S (which you provide for DataSync to use at this stage) is as follows: Security group M (which you associate with the mount target) must allow inbound access for the Transmission Control Protocol (TCP) on the NFS port (2049) from security group S. You can enable inbound connections either by IP address (CIDR range) or security group. Security group S (provided to DataSync to access EFS) should have a rule that enables outbound connections to the NFS port on one of the file system’s mount targets. You can enable outbound connections either by IP address (CIDR range) or security group. For information about security groups and mount targets, see Security Groups for Amazon EC2 Instances and Mount Targets in the Amazon EFS User Guide.
*/
Ec2Config: Ec2Config;
/**
* The key-value pair that represents a tag that you want to add to the resource. The value can be an empty string. This value helps you manage, filter, and search for your resources. We recommend that you create a name tag for your location.
*/
Tags?: TagList;
}
export interface CreateLocationEfsResponse {
/**
* The Amazon Resource Name (ARN) of the Amazon EFS file system location that is created.
*/
LocationArn?: LocationArn;
}
export interface CreateLocationNfsRequest {
/**
* The subdirectory in the NFS file system that is used to read data from the NFS source location or write data to the NFS destination. The NFS path should be a path that's exported by the NFS server, or a subdirectory of that path. The path should be such that it can be mounted by other NFS clients in your network. To see all the paths exported by your NFS server. run "showmount -e nfs-server-name" from an NFS client that has access to your server. You can specify any directory that appears in the results, and any subdirectory of that directory. Ensure that the NFS export is accessible without Kerberos authentication. To transfer all the data in the folder you specified, DataSync needs to have permissions to read all the data. To ensure this, either configure the NFS export with no_root_squash, or ensure that the permissions for all of the files that you want DataSync allow read access for all users. Doing either enables the agent to read the files. For the agent to access directories, you must additionally enable all execute access. For information about NFS export configuration, see 18.7. The /etc/exports Configuration File in the Red Hat Enterprise Linux documentation.
*/
Subdirectory: NonEmptySubdirectory;
/**
* The name of the NFS server. This value is the IP address or Domain Name Service (DNS) name of the NFS server. An agent that is installed on-premises uses this host name to mount the NFS server in a network. This name must either be DNS-compliant or must be an IP version 4 (IPv4) address.
*/
ServerHostname: ServerHostname;
/**
* Contains a list of Amazon Resource Names (ARNs) of agents that are used to connect to an NFS server.
*/
OnPremConfig: OnPremConfig;
/**
* The NFS mount options that DataSync can use to mount your NFS share.
*/
MountOptions?: NfsMountOptions;
/**
* The key-value pair that represents the tag that you want to add to the location. The value can be an empty string. We recommend using tags to name your resources.
*/
Tags?: TagList;
}
export interface CreateLocationNfsResponse {
/**
* The Amazon Resource Name (ARN) of the source NFS file system location that is created.
*/
LocationArn?: LocationArn;
}
export interface CreateLocationS3Request {
/**
* A subdirectory in the Amazon S3 bucket. This subdirectory in Amazon S3 is used to read data from the S3 source location or write data to the S3 destination.
*/
Subdirectory?: Subdirectory;
/**
* The Amazon Resource Name (ARN) of the Amazon S3 bucket.
*/
S3BucketArn: S3BucketArn;
/**
* The Amazon S3 storage class that you want to store your files in when this location is used as a task destination. For more information about S3 storage classes, see Amazon S3 Storage Classes in the Amazon Simple Storage Service Developer Guide. Some storage classes have behaviors that can affect your S3 storage cost. For detailed information, see using-storage-classes.
*/
S3StorageClass?: S3StorageClass;
S3Config: S3Config;
/**
* The key-value pair that represents the tag that you want to add to the location. The value can be an empty string. We recommend using tags to name your resources.
*/
Tags?: TagList;
}
export interface CreateLocationS3Response {
/**
* The Amazon Resource Name (ARN) of the source Amazon S3 bucket location that is created.
*/
LocationArn?: LocationArn;
}
export interface CreateLocationSmbRequest {
/**
* The subdirectory in the SMB file system that is used to read data from the SMB source location or write data to the SMB destination. The SMB path should be a path that's exported by the SMB server, or a subdirectory of that path. The path should be such that it can be mounted by other SMB clients in your network. Subdirectory must be specified with forward slashes. For example /path/to/folder. To transfer all the data in the folder you specified, DataSync needs to have permissions to mount the SMB share, as well as to access all the data in that share. To ensure this, either ensure that the user/password specified belongs to the user who can mount the share, and who has the appropriate permissions for all of the files and directories that you want DataSync to access, or use credentials of a member of the Backup Operators group to mount the share. Doing either enables the agent to access the data. For the agent to access directories, you must additionally enable all execute access.
*/
Subdirectory: NonEmptySubdirectory;
/**
* The name of the SMB server. This value is the IP address or Domain Name Service (DNS) name of the SMB server. An agent that is installed on-premises uses this hostname to mount the SMB server in a network. This name must either be DNS-compliant or must be an IP version 4 (IPv4) address.
*/
ServerHostname: ServerHostname;
/**
* The user who can mount the share, has the permissions to access files and folders in the SMB share.
*/
User: SmbUser;
/**
* The name of the Windows domain that the SMB server belongs to.
*/
Domain?: SmbDomain;
/**
* The password of the user who can mount the share, has the permissions to access files and folders in the SMB share.
*/
Password: SmbPassword;
/**
* The Amazon Resource Names (ARNs) of agents to use for a Simple Message Block (SMB) location.
*/
AgentArns: AgentArnList;
/**
* The mount options used by DataSync to access the SMB server.
*/
MountOptions?: SmbMountOptions;
/**
* The key-value pair that represents the tag that you want to add to the location. The value can be an empty string. We recommend using tags to name your resources.
*/
Tags?: TagList;
}
export interface CreateLocationSmbResponse {
/**
* The Amazon Resource Name (ARN) of the source SMB file system location that is created.
*/
LocationArn?: LocationArn;
}
export interface CreateTaskRequest {
/**
* The Amazon Resource Name (ARN) of the source location for the task.
*/
SourceLocationArn: LocationArn;
/**
* The Amazon Resource Name (ARN) of an AWS storage resource's location.
*/
DestinationLocationArn: LocationArn;
/**
* The Amazon Resource Name (ARN) of the Amazon CloudWatch log group that is used to monitor and log events in the task. For more information on these groups, see Working with Log Groups and Log Streams in the Amazon CloudWatch User Guide. For more information about how to use CloudWatch Logs with DataSync, see Monitoring Your Task in the AWS DataSync User Guide.
*/
CloudWatchLogGroupArn?: LogGroupArn;
/**
* The name of a task. This value is a text reference that is used to identify the task in the console.
*/
Name?: TagValue;
/**
* The set of configuration options that control the behavior of a single execution of the task that occurs when you call StartTaskExecution. You can configure these options to preserve metadata such as user ID (UID) and group ID (GID), file permissions, data integrity verification, and so on. For each individual task execution, you can override these options by specifying the OverrideOptions before starting a the task execution. For more information, see the operation.
*/
Options?: Options;
/**
* A list of filter rules that determines which files to exclude from a task. The list should contain a single filter string that consists of the patterns to exclude. The patterns are delimited by "|" (that is, a pipe), for example, "/folder1|/folder2"
*/
Excludes?: FilterList;
/**
* Specifies a schedule used to periodically transfer files from a source to a destination location. The schedule should be specified in UTC time. For more information, see task-scheduling.
*/
Schedule?: TaskSchedule;
/**
* The key-value pair that represents the tag that you want to add to the resource. The value can be an empty string.
*/
Tags?: TagList;
}
export interface CreateTaskResponse {
/**
* The Amazon Resource Name (ARN) of the task.
*/
TaskArn?: TaskArn;
}
export interface DeleteAgentRequest {
/**
* The Amazon Resource Name (ARN) of the agent to delete. Use the ListAgents operation to return a list of agents for your account and AWS Region.
*/
AgentArn: AgentArn;
}
export interface DeleteAgentResponse {
}
export interface DeleteLocationRequest {
/**
* The Amazon Resource Name (ARN) of the location to delete.
*/
LocationArn: LocationArn;
}
export interface DeleteLocationResponse {
}
export interface DeleteTaskRequest {
/**
* The Amazon Resource Name (ARN) of the task to delete.
*/
TaskArn: TaskArn;
}
export interface DeleteTaskResponse {
}
export interface DescribeAgentRequest {
/**
* The Amazon Resource Name (ARN) of the agent to describe.
*/
AgentArn: AgentArn;
}
export interface DescribeAgentResponse {
/**
* The Amazon Resource Name (ARN) of the agent.
*/
AgentArn?: AgentArn;
/**
* The name of the agent.
*/
Name?: TagValue;
/**
* The status of the agent. If the status is ONLINE, then the agent is configured properly and is available to use. The Running status is the normal running status for an agent. If the status is OFFLINE, the agent's VM is turned off or the agent is in an unhealthy state. When the issue that caused the unhealthy state is resolved, the agent returns to ONLINE status.
*/
Status?: AgentStatus;
/**
* The time that the agent last connected to DataSyc.
*/
LastConnectionTime?: Time;
/**
* The time that the agent was activated (that is, created in your account).
*/
CreationTime?: Time;
/**
* The type of endpoint that your agent is connected to. If the endpoint is a VPC endpoint, the agent is not accessible over the public Internet.
*/
EndpointType?: EndpointType;
/**
* The subnet and the security group that DataSync used to access a VPC endpoint.
*/
PrivateLinkConfig?: PrivateLinkConfig;
}
export interface DescribeLocationEfsRequest {
/**
* The Amazon Resource Name (ARN) of the EFS location to describe.
*/
LocationArn: LocationArn;
}
export interface DescribeLocationEfsResponse {
/**
* The Amazon resource Name (ARN) of the EFS location that was described.
*/
LocationArn?: LocationArn;
/**
* The URL of the EFS location that was described.
*/
LocationUri?: LocationUri;
Ec2Config?: Ec2Config;
/**
* The time that the EFS location was created.
*/
CreationTime?: Time;
}
export interface DescribeLocationNfsRequest {
/**
* The Amazon resource Name (ARN) of the NFS location to describe.
*/
LocationArn: LocationArn;
}
export interface DescribeLocationNfsResponse {
/**
* The Amazon resource Name (ARN) of the NFS location that was described.
*/
LocationArn?: LocationArn;
/**
* The URL of the source NFS location that was described.
*/
LocationUri?: LocationUri;
OnPremConfig?: OnPremConfig;
/**
* The NFS mount options that DataSync used to mount your NFS share.
*/
MountOptions?: NfsMountOptions;
/**
* The time that the NFS location was created.
*/
CreationTime?: Time;
}
export interface DescribeLocationS3Request {
/**
* The Amazon Resource Name (ARN) of the Amazon S3 bucket location to describe.
*/
LocationArn: LocationArn;
}
export interface DescribeLocationS3Response {
/**
* The Amazon Resource Name (ARN) of the Amazon S3 bucket location.
*/
LocationArn?: LocationArn;
/**
* The URL of the Amazon S3 location that was described.
*/
LocationUri?: LocationUri;
/**
* The Amazon S3 storage class that you chose to store your files in when this location is used as a task destination. For more information about S3 storage classes, see Amazon S3 Storage Classes in the Amazon Simple Storage Service Developer Guide. Some storage classes have behaviors that can affect your S3 storage cost. For detailed information, see using-storage-classes.
*/
S3StorageClass?: S3StorageClass;
S3Config?: S3Config;
/**
* The time that the Amazon S3 bucket location was created.
*/
CreationTime?: Time;
}
export interface DescribeLocationSmbRequest {
/**
* The Amazon resource Name (ARN) of the SMB location to describe.
*/
LocationArn: LocationArn;
}
export interface DescribeLocationSmbResponse {
/**
* The Amazon resource Name (ARN) of the SMB location that was described.
*/
LocationArn?: LocationArn;
/**
* The URL of the source SBM location that was described.
*/
LocationUri?: LocationUri;
/**
* The Amazon Resource Name (ARN) of the source SMB file system location that is created.
*/
AgentArns?: AgentArnList;
/**
* The user who can mount the share, has the permissions to access files and folders in the SMB share.
*/
User?: SmbUser;
/**
* The name of the Windows domain that the SMB server belongs to.
*/
Domain?: SmbDomain;
/**
* The mount options that are available for DataSync to use to access an SMB location.
*/
MountOptions?: SmbMountOptions;
/**
* The time that the SMB location was created.
*/
CreationTime?: Time;
}
export interface DescribeTaskExecutionRequest {
/**
* The Amazon Resource Name (ARN) of the task that is being executed.
*/
TaskExecutionArn: TaskExecutionArn;
}
export interface DescribeTaskExecutionResponse {
/**
* The Amazon Resource Name (ARN) of the task execution that was described. TaskExecutionArn is hierarchical and includes TaskArn for the task that was executed. For example, a TaskExecution value with the ARN arn:aws:datasync:us-east-1:111222333444:task/task-0208075f79cedf4a2/execution/exec-08ef1e88ec491019b executed the task with the ARN arn:aws:datasync:us-east-1:111222333444:task/task-0208075f79cedf4a2.
*/
TaskExecutionArn?: TaskExecutionArn;
/**
* The status of the task execution. For detailed information about task execution statuses, see Understanding Task Statuses in the AWS DataSync User Guide.
*/
Status?: TaskExecutionStatus;
Options?: Options;
/**
* A list of filter rules that determines which files to exclude from a task. The list should contain a single filter string that consists of the patterns to exclude. The patterns are delimited by "|" (that is, a pipe), for example: "/folder1|/folder2"
*/
Excludes?: FilterList;
/**
* A list of filter rules that determines which files to include when running a task. The list should contain a single filter string that consists of the patterns to include. The patterns are delimited by "|" (that is, a pipe), for example: "/folder1|/folder2"
*/
Includes?: FilterList;
/**
* The time that the task execution was started.
*/
StartTime?: Time;
/**
* The expected number of files that is to be transferred over the network. This value is calculated during the PREPARING phase, before the TRANSFERRING phase. This value is the expected number of files to be transferred. It's calculated based on comparing the content of the source and destination locations and finding the delta that needs to be transferred.
*/
EstimatedFilesToTransfer?: long;
/**
* The estimated physical number of bytes that is to be transferred over the network.
*/
EstimatedBytesToTransfer?: long;
/**
* The actual number of files that was transferred over the network. This value is calculated and updated on an ongoing basis during the TRANSFERRING phase. It's updated periodically when each file is read from the source and sent over the network. If failures occur during a transfer, this value can be less than EstimatedFilesToTransfer. This value can also be greater than EstimatedFilesTransferred in some cases. This element is implementation-specific for some location types, so don't use it as an indicator for a correct file number or to monitor your task execution.
*/
FilesTransferred?: long;
/**
* The number of logical bytes written to the destination AWS storage resource.
*/
BytesWritten?: long;
/**
* The physical number of bytes transferred over the network.
*/
BytesTransferred?: long;
/**
* The result of the task execution.
*/
Result?: TaskExecutionResultDetail;
}
export interface DescribeTaskRequest {
/**
* The Amazon Resource Name (ARN) of the task to describe.
*/
TaskArn: TaskArn;
}
export interface DescribeTaskResponse {
/**
* The Amazon Resource Name (ARN) of the task that was described.
*/
TaskArn?: TaskArn;
/**
* The status of the task that was described. For detailed information about task execution statuses, see Understanding Task Statuses in the AWS DataSync User Guide.
*/
Status?: TaskStatus;
/**
* The name of the task that was described.
*/
Name?: TagValue;
/**
* The Amazon Resource Name (ARN) of the task execution that is syncing files.
*/
CurrentTaskExecutionArn?: TaskExecutionArn;
/**
* The Amazon Resource Name (ARN) of the source file system's location.
*/
SourceLocationArn?: LocationArn;
/**
* The Amazon Resource Name (ARN) of the AWS storage resource's location.
*/
DestinationLocationArn?: LocationArn;
/**
* The Amazon Resource Name (ARN) of the Amazon CloudWatch log group that was used to monitor and log events in the task. For more information on these groups, see Working with Log Groups and Log Streams in the Amazon CloudWatch User Guide.
*/
CloudWatchLogGroupArn?: LogGroupArn;
/**
* The Amazon Resource Name (ARN) of the source ENIs (Elastic Network Interface) that was created for your subnet.
*/
SourceNetworkInterfaceArns?: SourceNetworkInterfaceArns;
/**
* The Amazon Resource Name (ARN) of the destination ENIs (Elastic Network Interface) that was created for your subnet.
*/
DestinationNetworkInterfaceArns?: DestinationNetworkInterfaceArns;
/**
* The set of configuration options that control the behavior of a single execution of the task that occurs when you call StartTaskExecution. You can configure these options to preserve metadata such as user ID (UID) and group (GID), file permissions, data integrity verification, and so on. For each individual task execution, you can override these options by specifying the overriding OverrideOptions value to operation.
*/
Options?: Options;
/**
* A list of filter rules that determines which files to exclude from a task. The list should contain a single filter string that consists of the patterns to exclude. The patterns are delimited by "|" (that is, a pipe), for example: "/folder1|/folder2"
*/
Excludes?: FilterList;
/**
* The schedule used to periodically transfer files from a source to a destination location.
*/
Schedule?: TaskSchedule;
/**
* Errors that AWS DataSync encountered during execution of the task. You can use this error code to help troubleshoot issues.
*/
ErrorCode?: string;
/**
* Detailed description of an error that was encountered during the task execution. You can use this information to help troubleshoot issues.
*/
ErrorDetail?: string;
/**
* The time that the task was created.
*/
CreationTime?: Time;
}
export type DestinationNetworkInterfaceArns = NetworkInterfaceArn[];
export type Duration = number;
export interface Ec2Config {
/**
* The ARN of the subnet and the security group that DataSync uses to access the target EFS file system.
*/
SubnetArn: Ec2SubnetArn;
/**
* The Amazon Resource Names (ARNs) of the security groups that are configured for the Amazon EC2 resource.
*/
SecurityGroupArns: Ec2SecurityGroupArnList;
}
export type Ec2SecurityGroupArn = string;
export type Ec2SecurityGroupArnList = Ec2SecurityGroupArn[];
export type Ec2SubnetArn = string;
export type EfsFilesystemArn = string;
export type Endpoint = string;
export type EndpointType = "PUBLIC"|"PRIVATE_LINK"|"FIPS"|string;
export type FilterList = FilterRule[];
export interface FilterRule {
/**
* The type of filter rule to apply. AWS DataSync only supports the SIMPLE_PATTERN rule type.
*/
FilterType?: FilterType;
/**
* A single filter string that consists of the patterns to include or exclude. The patterns are delimited by "|" (that is, a pipe), for example: /folder1|/folder2
*/
Value?: FilterValue;
}
export type FilterType = "SIMPLE_PATTERN"|string;
export type FilterValue = string;
export type Gid = "NONE"|"INT_VALUE"|"NAME"|"BOTH"|string;
export type IamRoleArn = string;
export interface ListAgentsRequest {
/**
* The maximum number of agents to list.
*/
MaxResults?: MaxResults;
/**
* An opaque string that indicates the position at which to begin the next list of agents.
*/
NextToken?: NextToken;
}
export interface ListAgentsResponse {
/**
* A list of agents in your account.
*/
Agents?: AgentList;
/**
* An opaque string that indicates the position at which to begin returning the next list of agents.
*/
NextToken?: NextToken;
}
export interface ListLocationsRequest {
/**
* The maximum number of locations to return.
*/
MaxResults?: MaxResults;
/**
* An opaque string that indicates the position at which to begin the next list of locations.
*/
NextToken?: NextToken;
}
export interface ListLocationsResponse {
/**
* An array that contains a list of locations.
*/
Locations?: LocationList;
/**
* An opaque string that indicates the position at which to begin returning the next list of locations.
*/
NextToken?: NextToken;
}
export interface ListTagsForResourceRequest {
/**
* The Amazon Resource Name (ARN) of the resource whose tags to list.
*/
ResourceArn: TaggableResourceArn;
/**
* The maximum number of locations to return.
*/
MaxResults?: MaxResults;
/**
* An opaque string that indicates the position at which to begin the next list of locations.
*/
NextToken?: NextToken;
}
export interface ListTagsForResourceResponse {
/**
* Array of resource tags.
*/
Tags?: TagList;
/**
* An opaque string that indicates the position at which to begin returning the next list of resource tags.
*/
NextToken?: NextToken;
}
export interface ListTaskExecutionsRequest {
/**
* The Amazon Resource Name (ARN) of the task whose tasks you want to list.
*/
TaskArn?: TaskArn;
/**
* The maximum number of executed tasks to list.
*/
MaxResults?: MaxResults;
/**
* An opaque string that indicates the position at which to begin the next list of the executed tasks.
*/
NextToken?: NextToken;
}
export interface ListTaskExecutionsResponse {
/**
* A list of executed tasks.
*/
TaskExecutions?: TaskExecutionList;
/**
* An opaque string that indicates the position at which to begin returning the next list of executed tasks.
*/
NextToken?: NextToken;
}
export interface ListTasksRequest {
/**
* The maximum number of tasks to return.
*/
MaxResults?: MaxResults;
/**
* An opaque string that indicates the position at which to begin the next list of tasks.
*/
NextToken?: NextToken;
}
export interface ListTasksResponse {
/**
* A list of all the tasks that are returned.
*/
Tasks?: TaskList;
/**
* An opaque string that indicates the position at which to begin returning the next list of tasks.
*/
NextToken?: NextToken;
}
export type LocationArn = string;
export type LocationList = LocationListEntry[];
export interface LocationListEntry {
/**
* The Amazon Resource Name (ARN) of the location. For Network File System (NFS) or Amazon EFS, the location is the export path. For Amazon S3, the location is the prefix path that you want to mount and use as the root of the location.
*/
LocationArn?: LocationArn;
/**
* Represents a list of URLs of a location. LocationUri returns an array that contains a list of locations when the ListLocations operation is called. Format: TYPE://GLOBAL_ID/SUBDIR. TYPE designates the type of location. Valid values: NFS | EFS | S3. GLOBAL_ID is the globally unique identifier of the resource that backs the location. An example for EFS is us-east-2.fs-abcd1234. An example for Amazon S3 is the bucket name, such as myBucket. An example for NFS is a valid IPv4 address or a host name compliant with Domain Name Service (DNS). SUBDIR is a valid file system path, delimited by forward slashes as is the *nix convention. For NFS and Amazon EFS, it's the export path to mount the location. For Amazon S3, it's the prefix path that you mount to and treat as the root of the location.
*/
LocationUri?: LocationUri;
}
export type LocationUri = string;
export type LogGroupArn = string;
export type MaxResults = number;
export type Mtime = "NONE"|"PRESERVE"|string;
export type NetworkInterfaceArn = string;
export type NextToken = string;
export interface NfsMountOptions {
/**
* The specific NFS version that you want DataSync to use to mount your NFS share. If the server refuses to use the version specified, the sync will fail. If you don't specify a version, DataSync defaults to AUTOMATIC. That is, DataSync automatically selects a version based on negotiation with the NFS server. You can specify the following NFS versions: NFSv3 - stateless protocol version that allows for asynchronous writes on the server. NFSv4.0 - stateful, firewall-friendly protocol version that supports delegations and pseudo filesystems. NFSv4.1 - stateful protocol version that supports sessions, directory delegations, and parallel data processing. Version 4.1 also includes all features available in version 4.0.
*/
Version?: NfsVersion;
}
export type NfsVersion = "AUTOMATIC"|"NFS3"|"NFS4_0"|"NFS4_1"|string;
export type NonEmptySubdirectory = string;
export interface OnPremConfig {
/**
* ARNs)of the agents to use for an NFS location.
*/
AgentArns: AgentArnList;
}
export interface Options {
/**
* A value that determines whether a data integrity verification should be performed at the end of a task execution after all data and metadata have been transferred. Default value: POINT_IN_TIME_CONSISTENT. POINT_IN_TIME_CONSISTENT: Perform verification (recommended). ONLY_FILES_TRANSFERRED: Perform verification on only files that were transferred. NONE: Skip verification.
*/
VerifyMode?: VerifyMode;
/**
* A value that determines whether files at the destination should be overwritten or preserved when copying files. If set to NEVER a destination file will not be replaced by a source file, even if the destination file differs from the source file. If you modify files in the destination and you sync the files, you can use this value to protect against overwriting those changes. Some storage classes have specific behaviors that can affect your S3 storage cost. For detailed information, see using-storage-classes in the AWS DataSync User Guide.
*/
OverwriteMode?: OverwriteMode;
/**
* A file metadata value that shows the last time a file was accessed (that is, when the file was read or written to). If you set Atime to BEST_EFFORT, DataSync attempts to preserve the original Atime attribute on all source files (that is, the version before the PREPARING phase). However, Atime's behavior is not fully standard across platforms, so AWS DataSync can only do this on a best-effort basis. Default value: BEST_EFFORT. BEST_EFFORT: Attempt to preserve the per-file Atime value (recommended). NONE: Ignore Atime. If Atime is set to BEST_EFFORT, Mtime must be set to PRESERVE. If Atime is set to NONE, Mtime must also be NONE.
*/
Atime?: Atime;
/**
* A value that indicates the last time that a file was modified (that is, a file was written to) before the PREPARING phase. Default value: PRESERVE. PRESERVE: Preserve original Mtime (recommended) NONE: Ignore Mtime. If Mtime is set to PRESERVE, Atime must be set to BEST_EFFORT. If Mtime is set to NONE, Atime must also be set to NONE.
*/
Mtime?: Mtime;
/**
* The user ID (UID) of the file's owner. Default value: INT_VALUE. This preserves the integer value of the ID. INT_VALUE: Preserve the integer value of UID and group ID (GID) (recommended). NONE: Ignore UID and GID.
*/
Uid?: Uid;
/**
* The group ID (GID) of the file's owners. Default value: INT_VALUE. This preserves the integer value of the ID. INT_VALUE: Preserve the integer value of user ID (UID) and GID (recommended). NONE: Ignore UID and GID.
*/
Gid?: Gid;
/**
* A value that specifies whether files in the destination that don't exist in the source file system should be preserved. This option can affect your storage cost. If your task deletes objects, you might incur minimum storage duration charges for certain storage classes. For detailed information, see using-storage-classes in the AWS DataSync User Guide. Default value: PRESERVE. PRESERVE: Ignore such destination files (recommended). REMOVE: Delete destination files that aren’t present in the source.
*/
PreserveDeletedFiles?: PreserveDeletedFiles;
/**
* A value that determines whether AWS DataSync should preserve the metadata of block and character devices in the source file system, and recreate the files with that device name and metadata on the destination. AWS DataSync can't sync the actual contents of such devices, because they are nonterminal and don't return an end-of-file (EOF) marker. Default value: NONE. NONE: Ignore special devices (recommended). PRESERVE: Preserve character and block device metadata. This option isn't currently supported for Amazon EFS.
*/
PreserveDevices?: PreserveDevices;
/**
* A value that determines which users or groups can access a file for a specific purpose such as reading, writing, or execution of the file. Default value: PRESERVE. PRESERVE: Preserve POSIX-style permissions (recommended). NONE: Ignore permissions. AWS DataSync can preserve extant permissions of a source location.
*/
PosixPermissions?: PosixPermissions;
/**
* A value that limits the bandwidth used by AWS DataSync. For example, if you want AWS DataSync to use a maximum of 1 MB, set this value to 1048576 (=1024*1024).
*/
BytesPerSecond?: BytesPerSecond;
/**
* A value that determines whether tasks should be queued before executing the tasks. If set to ENABLED, the tasks will be queued. The default is ENABLED. If you use the same agent to run multiple tasks you can enable the tasks to run in series. For more information see queue-task-execution.
*/
TaskQueueing?: TaskQueueing;
}
export type OverwriteMode = "ALWAYS"|"NEVER"|string;
export type PLSecurityGroupArnList = Ec2SecurityGroupArn[];
export type PLSubnetArnList = Ec2SubnetArn[];
export type PhaseStatus = "PENDING"|"SUCCESS"|"ERROR"|string;
export type PosixPermissions = "NONE"|"PRESERVE"|string;
export type PreserveDeletedFiles = "PRESERVE"|"REMOVE"|string;
export type PreserveDevices = "NONE"|"PRESERVE"|string;
export interface PrivateLinkConfig {
/**
* The ID of the VPC endpoint that is configured for an agent. An agent that is configured with a VPC endpoint will not be accessible over the public Internet.
*/
VpcEndpointId?: VpcEndpointId;
/**
* The private endpoint that is configured for an agent that has access to IP addresses in a PrivateLink. An agent that is configured with this endpoint will not be accessible over the public Internet.
*/
PrivateLinkEndpoint?: Endpoint;
/**
* The Amazon Resource Names (ARNs) of the subnets that are configured for an agent activated in a VPC or an agent that has access to a VPC endpoint.
*/
SubnetArns?: PLSubnetArnList;
/**
* The Amazon Resource Names (ARNs) of the security groups that are configured for the EC2 resource that hosts an agent activated in a VPC or an agent that has access to a VPC endpoint.
*/
SecurityGroupArns?: PLSecurityGroupArnList;
}
export type S3BucketArn = string;
export interface S3Config {
/**
* The Amazon S3 bucket to access. This bucket is used as a parameter in the CreateLocationS3 operation.
*/
BucketAccessRoleArn: IamRoleArn;
}
export type S3StorageClass = "STANDARD"|"STANDARD_IA"|"ONEZONE_IA"|"INTELLIGENT_TIERING"|"GLACIER"|"DEEP_ARCHIVE"|string;
export type ScheduleExpressionCron = string;
export type ServerHostname = string;
export type SmbDomain = string;
export interface SmbMountOptions {
/**
* The specific SMB version that you want DataSync to use to mount your SMB share. If you don't specify a version, DataSync defaults to AUTOMATIC. That is, DataSync automatically selects a version based on negotiation with the SMB server.
*/
Version?: SmbVersion;
}
export type SmbPassword = string;
export type SmbUser = string;
export type SmbVersion = "AUTOMATIC"|"SMB2"|"SMB3"|string;
export type SourceNetworkInterfaceArns = NetworkInterfaceArn[];
export interface StartTaskExecutionRequest {
/**
* The Amazon Resource Name (ARN) of the task to start.
*/
TaskArn: TaskArn;
OverrideOptions?: Options;
/**
* A list of filter rules that determines which files to include when running a task. The pattern should contain a single filter string that consists of the patterns to include. The patterns are delimited by "|" (that is, a pipe). For example: "/folder1|/folder2"
*/
Includes?: FilterList;
}
export interface StartTaskExecutionResponse {
/**
* The Amazon Resource Name (ARN) of the specific task execution that was started.
*/
TaskExecutionArn?: TaskExecutionArn;
}
export type Subdirectory = string;
export type TagKey = string;
export type TagKeyList = TagKey[];
export type TagList = TagListEntry[];
export interface TagListEntry {
/**
* The key for an AWS resource tag.
*/
Key: TagKey;
/**
* The value for an AWS resource tag.
*/
Value?: TagValue;
}
export interface TagResourceRequest {
/**
* The Amazon Resource Name (ARN) of the resource to apply the tag to.
*/
ResourceArn: TaggableResourceArn;
/**
* The tags to apply.
*/
Tags: TagList;
}
export interface TagResourceResponse {
}
export type TagValue = string;
export type TaggableResourceArn = string;
export type TaskArn = string;
export type TaskExecutionArn = string;
export type TaskExecutionList = TaskExecutionListEntry[];
export interface TaskExecutionListEntry {
/**
* The Amazon Resource Name (ARN) of the task that was executed.
*/
TaskExecutionArn?: TaskExecutionArn;
/**
* The status of a task execution.
*/
Status?: TaskExecutionStatus;
}
export interface TaskExecutionResultDetail {
/**
* The total time in milliseconds that AWS DataSync spent in the PREPARING phase.
*/
PrepareDuration?: Duration;
/**
* The status of the PREPARING phase.
*/
PrepareStatus?: PhaseStatus;
/**
* The total time in milliseconds that AWS DataSync took to transfer the file from the source to the destination location.
*/
TotalDuration?: Duration;
/**
* The total time in milliseconds that AWS DataSync spent in the TRANSFERRING phase.
*/
TransferDuration?: Duration;
/**
* The status of the TRANSFERRING Phase.
*/
TransferStatus?: PhaseStatus;
/**
* The total time in milliseconds that AWS DataSync spent in the VERIFYING phase.
*/
VerifyDuration?: Duration;
/**
* The status of the VERIFYING Phase.
*/
VerifyStatus?: PhaseStatus;
/**
* Errors that AWS DataSync encountered during execution of the task. You can use this error code to help troubleshoot issues.
*/
ErrorCode?: string;
/**
* Detailed description of an error that was encountered during the task execution. You can use this information to help troubleshoot issues.
*/
ErrorDetail?: string;
}
export type TaskExecutionStatus = "QUEUED"|"LAUNCHING"|"PREPARING"|"TRANSFERRING"|"VERIFYING"|"SUCCESS"|"ERROR"|string;
export type TaskList = TaskListEntry[];
export interface TaskListEntry {
/**
* The Amazon Resource Name (ARN) of the task.
*/
TaskArn?: TaskArn;
/**
* The status of the task.
*/
Status?: TaskStatus;
/**
* The name of the task.
*/
Name?: TagValue;
}
export type TaskQueueing = "ENABLED"|"DISABLED"|string;
export interface TaskSchedule {
/**
* A cron expression that specifies when AWS DataSync initiates a scheduled transfer from a source to a destination location.
*/
ScheduleExpression: ScheduleExpressionCron;
}
export type TaskStatus = "AVAILABLE"|"CREATING"|"QUEUED"|"RUNNING"|"UNAVAILABLE"|string;
export type Time = Date;
export type Uid = "NONE"|"INT_VALUE"|"NAME"|"BOTH"|string;
export interface UntagResourceRequest {
/**
* The Amazon Resource Name (ARN) of the resource to remove the tag from.
*/
ResourceArn: TaggableResourceArn;
/**
* The keys in the key-value pair in the tag to remove.
*/
Keys: TagKeyList;
}
export interface UntagResourceResponse {
}
export interface UpdateAgentRequest {
/**
* The Amazon Resource Name (ARN) of the agent to update.
*/
AgentArn: AgentArn;
/**
* The name that you want to use to configure the agent.
*/
Name?: TagValue;
}
export interface UpdateAgentResponse {
}
export interface UpdateTaskRequest {
/**
* The Amazon Resource Name (ARN) of the resource name of the task to update.
*/
TaskArn: TaskArn;
Options?: Options;
/**
* A list of filter rules that determines which files to exclude from a task. The list should contain a single filter string that consists of the patterns to exclude. The patterns are delimited by "|" (that is, a pipe), for example: "/folder1|/folder2"
*/
Excludes?: FilterList;
/**
* Specifies a schedule used to periodically transfer files from a source to a destination location. You can configure your task to execute hourly, daily, weekly or on specific days of the week. You control when in the day or hour you want the task to execute. The time you specify is UTC time. For more information, see task-scheduling.
*/
Schedule?: TaskSchedule;
/**
* The name of the task to update.
*/
Name?: TagValue;
/**
* The Amazon Resource Name (ARN) of the resource name of the CloudWatch LogGroup.
*/
CloudWatchLogGroupArn?: LogGroupArn;
}
export interface UpdateTaskResponse {
}
export type VerifyMode = "POINT_IN_TIME_CONSISTENT"|"ONLY_FILES_TRANSFERRED"|"NONE"|string;
export type VpcEndpointId = string;
export type long = number;
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
export type apiVersion = "2018-11-09"|"latest"|string;
export interface ClientApiVersions {
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
apiVersion?: apiVersion;
}
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
/**
* Contains interfaces for use with the DataSync client.
*/
export import Types = DataSync;
}
export = DataSync;