@aws-sdk/client-datasync 3.687.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +493 -493
- package/dist-types/ts3.4/models/models_0.d.ts +493 -493
- package/package.json +7 -7
|
@@ -35,7 +35,7 @@ export interface DiscoveryServerConfiguration {
|
|
|
35
35
|
* <p>The network port for accessing the storage system's management interface.</p>
|
|
36
36
|
* @public
|
|
37
37
|
*/
|
|
38
|
-
ServerPort?: number;
|
|
38
|
+
ServerPort?: number | undefined;
|
|
39
39
|
}
|
|
40
40
|
/**
|
|
41
41
|
* @public
|
|
@@ -63,7 +63,7 @@ export interface TagListEntry {
|
|
|
63
63
|
* <p>The value for an Amazon Web Services resource tag.</p>
|
|
64
64
|
* @public
|
|
65
65
|
*/
|
|
66
|
-
Value?: string;
|
|
66
|
+
Value?: string | undefined;
|
|
67
67
|
}
|
|
68
68
|
/**
|
|
69
69
|
* @public
|
|
@@ -99,26 +99,26 @@ export interface AddStorageSystemRequest {
|
|
|
99
99
|
* discovery job events.</p>
|
|
100
100
|
* @public
|
|
101
101
|
*/
|
|
102
|
-
CloudWatchLogGroupArn?: string;
|
|
102
|
+
CloudWatchLogGroupArn?: string | undefined;
|
|
103
103
|
/**
|
|
104
104
|
* <p>Specifies labels that help you categorize, filter, and search for your Amazon Web Services
|
|
105
105
|
* resources. We recommend creating at least a name tag for your on-premises storage
|
|
106
106
|
* system.</p>
|
|
107
107
|
* @public
|
|
108
108
|
*/
|
|
109
|
-
Tags?: TagListEntry[];
|
|
109
|
+
Tags?: TagListEntry[] | undefined;
|
|
110
110
|
/**
|
|
111
111
|
* <p>Specifies a familiar name for your on-premises storage system.</p>
|
|
112
112
|
* @public
|
|
113
113
|
*/
|
|
114
|
-
Name?: string;
|
|
114
|
+
Name?: string | undefined;
|
|
115
115
|
/**
|
|
116
116
|
* <p>Specifies a client token to make sure requests with this API operation are idempotent. If
|
|
117
117
|
* you don't specify a client token, DataSync generates one for you
|
|
118
118
|
* automatically.</p>
|
|
119
119
|
* @public
|
|
120
120
|
*/
|
|
121
|
-
ClientToken?: string;
|
|
121
|
+
ClientToken?: string | undefined;
|
|
122
122
|
/**
|
|
123
123
|
* <p>Specifies the user name and password for accessing your on-premises storage system's
|
|
124
124
|
* management interface.</p>
|
|
@@ -144,7 +144,7 @@ export interface AddStorageSystemResponse {
|
|
|
144
144
|
export declare class InternalException extends __BaseException {
|
|
145
145
|
readonly name: "InternalException";
|
|
146
146
|
readonly $fault: "server";
|
|
147
|
-
errorCode?: string;
|
|
147
|
+
errorCode?: string | undefined;
|
|
148
148
|
/**
|
|
149
149
|
* @internal
|
|
150
150
|
*/
|
|
@@ -157,8 +157,8 @@ export declare class InternalException extends __BaseException {
|
|
|
157
157
|
export declare class InvalidRequestException extends __BaseException {
|
|
158
158
|
readonly name: "InvalidRequestException";
|
|
159
159
|
readonly $fault: "client";
|
|
160
|
-
errorCode?: string;
|
|
161
|
-
datasyncErrorCode?: string;
|
|
160
|
+
errorCode?: string | undefined;
|
|
161
|
+
datasyncErrorCode?: string | undefined;
|
|
162
162
|
/**
|
|
163
163
|
* @internal
|
|
164
164
|
*/
|
|
@@ -174,7 +174,7 @@ export interface Platform {
|
|
|
174
174
|
* <p>The version of the DataSync agent.</p>
|
|
175
175
|
* @public
|
|
176
176
|
*/
|
|
177
|
-
Version?: string;
|
|
177
|
+
Version?: string | undefined;
|
|
178
178
|
}
|
|
179
179
|
/**
|
|
180
180
|
* @public
|
|
@@ -198,12 +198,12 @@ export interface AgentListEntry {
|
|
|
198
198
|
* <p>The Amazon Resource Name (ARN) of a DataSync agent.</p>
|
|
199
199
|
* @public
|
|
200
200
|
*/
|
|
201
|
-
AgentArn?: string;
|
|
201
|
+
AgentArn?: string | undefined;
|
|
202
202
|
/**
|
|
203
203
|
* <p>The name of an agent.</p>
|
|
204
204
|
* @public
|
|
205
205
|
*/
|
|
206
|
-
Name?: string;
|
|
206
|
+
Name?: string | undefined;
|
|
207
207
|
/**
|
|
208
208
|
* <p>The status of an agent.</p>
|
|
209
209
|
* <ul>
|
|
@@ -220,12 +220,12 @@ export interface AgentListEntry {
|
|
|
220
220
|
* </ul>
|
|
221
221
|
* @public
|
|
222
222
|
*/
|
|
223
|
-
Status?: AgentStatus;
|
|
223
|
+
Status?: AgentStatus | undefined;
|
|
224
224
|
/**
|
|
225
225
|
* <p>The platform-related details about the agent, such as the version number.</p>
|
|
226
226
|
* @public
|
|
227
227
|
*/
|
|
228
|
-
Platform?: Platform;
|
|
228
|
+
Platform?: Platform | undefined;
|
|
229
229
|
}
|
|
230
230
|
/**
|
|
231
231
|
* @public
|
|
@@ -317,23 +317,23 @@ export interface Capacity {
|
|
|
317
317
|
* <p>The amount of space that's being used in a storage system resource.</p>
|
|
318
318
|
* @public
|
|
319
319
|
*/
|
|
320
|
-
Used?: number;
|
|
320
|
+
Used?: number | undefined;
|
|
321
321
|
/**
|
|
322
322
|
* <p>The total amount of space available in a storage system resource.</p>
|
|
323
323
|
* @public
|
|
324
324
|
*/
|
|
325
|
-
Provisioned?: number;
|
|
325
|
+
Provisioned?: number | undefined;
|
|
326
326
|
/**
|
|
327
327
|
* <p>The amount of space that's being used in a storage system resource without accounting for
|
|
328
328
|
* compression or deduplication.</p>
|
|
329
329
|
* @public
|
|
330
330
|
*/
|
|
331
|
-
LogicalUsed?: number;
|
|
331
|
+
LogicalUsed?: number | undefined;
|
|
332
332
|
/**
|
|
333
333
|
* <p>The amount of space in the cluster that's in cloud storage (for example, if you're using data tiering).</p>
|
|
334
334
|
* @public
|
|
335
335
|
*/
|
|
336
|
-
ClusterCloudStorageUsed?: number;
|
|
336
|
+
ClusterCloudStorageUsed?: number | undefined;
|
|
337
337
|
}
|
|
338
338
|
/**
|
|
339
339
|
* <p>CreateAgentRequest</p>
|
|
@@ -351,13 +351,13 @@ export interface CreateAgentRequest {
|
|
|
351
351
|
* remember.</p>
|
|
352
352
|
* @public
|
|
353
353
|
*/
|
|
354
|
-
AgentName?: string;
|
|
354
|
+
AgentName?: string | undefined;
|
|
355
355
|
/**
|
|
356
356
|
* <p>Specifies labels that help you categorize, filter, and search for your Amazon Web Services resources.
|
|
357
357
|
* We recommend creating at least one tag for your agent.</p>
|
|
358
358
|
* @public
|
|
359
359
|
*/
|
|
360
|
-
Tags?: TagListEntry[];
|
|
360
|
+
Tags?: TagListEntry[] | undefined;
|
|
361
361
|
/**
|
|
362
362
|
* <p>Specifies the ID of the <a href="https://docs.aws.amazon.com/datasync/latest/userguide/choose-service-endpoint.html#datasync-in-vpc">VPC service endpoint</a> that you're using. For
|
|
363
363
|
* example, a VPC endpoint ID looks like <code>vpce-01234d5aff67890e1</code>.</p>
|
|
@@ -367,19 +367,19 @@ export interface CreateAgentRequest {
|
|
|
367
367
|
* </important>
|
|
368
368
|
* @public
|
|
369
369
|
*/
|
|
370
|
-
VpcEndpointId?: string;
|
|
370
|
+
VpcEndpointId?: string | undefined;
|
|
371
371
|
/**
|
|
372
372
|
* <p>Specifies the ARN of the subnet where your VPC service endpoint is located. You can only
|
|
373
373
|
* specify one ARN.</p>
|
|
374
374
|
* @public
|
|
375
375
|
*/
|
|
376
|
-
SubnetArns?: string[];
|
|
376
|
+
SubnetArns?: string[] | undefined;
|
|
377
377
|
/**
|
|
378
378
|
* <p>Specifies the Amazon Resource Name (ARN) of the security group that allows traffic between
|
|
379
379
|
* your agent and VPC service endpoint. You can only specify one ARN.</p>
|
|
380
380
|
* @public
|
|
381
381
|
*/
|
|
382
|
-
SecurityGroupArns?: string[];
|
|
382
|
+
SecurityGroupArns?: string[] | undefined;
|
|
383
383
|
}
|
|
384
384
|
/**
|
|
385
385
|
* <p>CreateAgentResponse</p>
|
|
@@ -391,7 +391,7 @@ export interface CreateAgentResponse {
|
|
|
391
391
|
* list of agents in your Amazon Web Services account and Amazon Web Services Region.</p>
|
|
392
392
|
* @public
|
|
393
393
|
*/
|
|
394
|
-
AgentArn?: string;
|
|
394
|
+
AgentArn?: string | undefined;
|
|
395
395
|
}
|
|
396
396
|
/**
|
|
397
397
|
* @public
|
|
@@ -411,25 +411,25 @@ export interface CreateLocationAzureBlobRequest {
|
|
|
411
411
|
* <p>Specifies the SAS configuration that allows DataSync to access your Azure Blob Storage.</p>
|
|
412
412
|
* @public
|
|
413
413
|
*/
|
|
414
|
-
SasConfiguration?: AzureBlobSasConfiguration;
|
|
414
|
+
SasConfiguration?: AzureBlobSasConfiguration | undefined;
|
|
415
415
|
/**
|
|
416
416
|
* <p>Specifies the type of blob that you want your objects or files to be when transferring
|
|
417
417
|
* them into Azure Blob Storage. Currently, DataSync only supports moving data into
|
|
418
418
|
* Azure Blob Storage as block blobs. For more information on blob types, see the <a href="https://learn.microsoft.com/en-us/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs">Azure Blob Storage documentation</a>.</p>
|
|
419
419
|
* @public
|
|
420
420
|
*/
|
|
421
|
-
BlobType?: AzureBlobType;
|
|
421
|
+
BlobType?: AzureBlobType | undefined;
|
|
422
422
|
/**
|
|
423
423
|
* <p>Specifies the access tier that you want your objects or files transferred into. This only applies when using the location as a transfer destination. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access-tiers">Access tiers</a>.</p>
|
|
424
424
|
* @public
|
|
425
425
|
*/
|
|
426
|
-
AccessTier?: AzureAccessTier;
|
|
426
|
+
AccessTier?: AzureAccessTier | undefined;
|
|
427
427
|
/**
|
|
428
428
|
* <p>Specifies path segments if you want to limit your transfer to a virtual directory in your
|
|
429
429
|
* container (for example, <code>/my/images</code>).</p>
|
|
430
430
|
* @public
|
|
431
431
|
*/
|
|
432
|
-
Subdirectory?: string;
|
|
432
|
+
Subdirectory?: string | undefined;
|
|
433
433
|
/**
|
|
434
434
|
* <p>Specifies the Amazon Resource Name (ARN) of the DataSync agent that can connect with your Azure Blob Storage container.</p>
|
|
435
435
|
* <p>You can specify more than one agent. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/multiple-agents.html">Using multiple
|
|
@@ -441,7 +441,7 @@ export interface CreateLocationAzureBlobRequest {
|
|
|
441
441
|
* <p>Specifies labels that help you categorize, filter, and search for your Amazon Web Services resources. We recommend creating at least a name tag for your transfer location.</p>
|
|
442
442
|
* @public
|
|
443
443
|
*/
|
|
444
|
-
Tags?: TagListEntry[];
|
|
444
|
+
Tags?: TagListEntry[] | undefined;
|
|
445
445
|
}
|
|
446
446
|
/**
|
|
447
447
|
* @public
|
|
@@ -451,7 +451,7 @@ export interface CreateLocationAzureBlobResponse {
|
|
|
451
451
|
* <p>The ARN of the Azure Blob Storage transfer location that you created.</p>
|
|
452
452
|
* @public
|
|
453
453
|
*/
|
|
454
|
-
LocationArn?: string;
|
|
454
|
+
LocationArn?: string | undefined;
|
|
455
455
|
}
|
|
456
456
|
/**
|
|
457
457
|
* <p>The subnet and security groups that DataSync uses to connect to one of your
|
|
@@ -509,7 +509,7 @@ export interface CreateLocationEfsRequest {
|
|
|
509
509
|
* example, <code>/path/to/folder</code>).</p>
|
|
510
510
|
* @public
|
|
511
511
|
*/
|
|
512
|
-
Subdirectory?: string;
|
|
512
|
+
Subdirectory?: string | undefined;
|
|
513
513
|
/**
|
|
514
514
|
* <p>Specifies the ARN for your Amazon EFS file system.</p>
|
|
515
515
|
* @public
|
|
@@ -527,20 +527,20 @@ export interface CreateLocationEfsRequest {
|
|
|
527
527
|
* for your resources. We recommend that you create a name tag for your location.</p>
|
|
528
528
|
* @public
|
|
529
529
|
*/
|
|
530
|
-
Tags?: TagListEntry[];
|
|
530
|
+
Tags?: TagListEntry[] | undefined;
|
|
531
531
|
/**
|
|
532
532
|
* <p>Specifies the Amazon Resource Name (ARN) of the access point that DataSync uses
|
|
533
533
|
* to mount your Amazon EFS file system.</p>
|
|
534
534
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-efs-location.html#create-efs-location-iam">Accessing restricted file systems</a>.</p>
|
|
535
535
|
* @public
|
|
536
536
|
*/
|
|
537
|
-
AccessPointArn?: string;
|
|
537
|
+
AccessPointArn?: string | undefined;
|
|
538
538
|
/**
|
|
539
539
|
* <p>Specifies an Identity and Access Management (IAM) role that allows DataSync to access your Amazon EFS file system.</p>
|
|
540
540
|
* <p>For information on creating this role, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-efs-location.html#create-efs-location-iam-role">Creating a DataSync IAM role for file system access</a>.</p>
|
|
541
541
|
* @public
|
|
542
542
|
*/
|
|
543
|
-
FileSystemAccessRoleArn?: string;
|
|
543
|
+
FileSystemAccessRoleArn?: string | undefined;
|
|
544
544
|
/**
|
|
545
545
|
* <p>Specifies whether you want DataSync to use Transport Layer Security (TLS) 1.2
|
|
546
546
|
* encryption when it transfers data to or from your Amazon EFS file system.</p>
|
|
@@ -549,7 +549,7 @@ export interface CreateLocationEfsRequest {
|
|
|
549
549
|
* <code>TLS1_2</code>.</p>
|
|
550
550
|
* @public
|
|
551
551
|
*/
|
|
552
|
-
InTransitEncryption?: EfsInTransitEncryption;
|
|
552
|
+
InTransitEncryption?: EfsInTransitEncryption | undefined;
|
|
553
553
|
}
|
|
554
554
|
/**
|
|
555
555
|
* <p>CreateLocationEfs</p>
|
|
@@ -561,7 +561,7 @@ export interface CreateLocationEfsResponse {
|
|
|
561
561
|
* create.</p>
|
|
562
562
|
* @public
|
|
563
563
|
*/
|
|
564
|
-
LocationArn?: string;
|
|
564
|
+
LocationArn?: string | undefined;
|
|
565
565
|
}
|
|
566
566
|
/**
|
|
567
567
|
* @public
|
|
@@ -584,14 +584,14 @@ export interface CreateLocationFsxLustreRequest {
|
|
|
584
584
|
* data to the FSx for Lustre destination.</p>
|
|
585
585
|
* @public
|
|
586
586
|
*/
|
|
587
|
-
Subdirectory?: string;
|
|
587
|
+
Subdirectory?: string | undefined;
|
|
588
588
|
/**
|
|
589
589
|
* <p>The key-value pair that represents a tag that you want to add to the resource. The value
|
|
590
590
|
* can be an empty string. This value helps you manage, filter, and search for your resources. We
|
|
591
591
|
* recommend that you create a name tag for your location.</p>
|
|
592
592
|
* @public
|
|
593
593
|
*/
|
|
594
|
-
Tags?: TagListEntry[];
|
|
594
|
+
Tags?: TagListEntry[] | undefined;
|
|
595
595
|
}
|
|
596
596
|
/**
|
|
597
597
|
* @public
|
|
@@ -602,7 +602,7 @@ export interface CreateLocationFsxLustreResponse {
|
|
|
602
602
|
* created. </p>
|
|
603
603
|
* @public
|
|
604
604
|
*/
|
|
605
|
-
LocationArn?: string;
|
|
605
|
+
LocationArn?: string | undefined;
|
|
606
606
|
}
|
|
607
607
|
/**
|
|
608
608
|
* @public
|
|
@@ -654,7 +654,7 @@ export interface NfsMountOptions {
|
|
|
654
654
|
* </note>
|
|
655
655
|
* @public
|
|
656
656
|
*/
|
|
657
|
-
Version?: NfsVersion;
|
|
657
|
+
Version?: NfsVersion | undefined;
|
|
658
658
|
}
|
|
659
659
|
/**
|
|
660
660
|
* <p>Specifies the Network File System (NFS) protocol configuration that DataSync
|
|
@@ -667,7 +667,7 @@ export interface FsxProtocolNfs {
|
|
|
667
667
|
* <p>Specifies how DataSync can access a location using the NFS protocol.</p>
|
|
668
668
|
* @public
|
|
669
669
|
*/
|
|
670
|
-
MountOptions?: NfsMountOptions;
|
|
670
|
+
MountOptions?: NfsMountOptions | undefined;
|
|
671
671
|
}
|
|
672
672
|
/**
|
|
673
673
|
* @public
|
|
@@ -728,7 +728,7 @@ export interface SmbMountOptions {
|
|
|
728
728
|
* </ul>
|
|
729
729
|
* @public
|
|
730
730
|
*/
|
|
731
|
-
Version?: SmbVersion;
|
|
731
|
+
Version?: SmbVersion | undefined;
|
|
732
732
|
}
|
|
733
733
|
/**
|
|
734
734
|
* <p>Specifies the Server Message Block (SMB) protocol configuration that DataSync uses to access your Amazon FSx for NetApp ONTAP file system. For more information, see
|
|
@@ -743,12 +743,12 @@ export interface FsxProtocolSmb {
|
|
|
743
743
|
* DataSync connects to the right SVM.</p>
|
|
744
744
|
* @public
|
|
745
745
|
*/
|
|
746
|
-
Domain?: string;
|
|
746
|
+
Domain?: string | undefined;
|
|
747
747
|
/**
|
|
748
748
|
* <p>Specifies the version of the Server Message Block (SMB) protocol that DataSync uses to access an SMB file server.</p>
|
|
749
749
|
* @public
|
|
750
750
|
*/
|
|
751
|
-
MountOptions?: SmbMountOptions;
|
|
751
|
+
MountOptions?: SmbMountOptions | undefined;
|
|
752
752
|
/**
|
|
753
753
|
* <p>Specifies the password of a user who has permission to access your SVM.</p>
|
|
754
754
|
* @public
|
|
@@ -774,13 +774,13 @@ export interface FsxProtocol {
|
|
|
774
774
|
* system's storage virtual machine (SVM).</p>
|
|
775
775
|
* @public
|
|
776
776
|
*/
|
|
777
|
-
NFS?: FsxProtocolNfs;
|
|
777
|
+
NFS?: FsxProtocolNfs | undefined;
|
|
778
778
|
/**
|
|
779
779
|
* <p>Specifies the Server Message Block (SMB) protocol configuration that DataSync
|
|
780
780
|
* uses to access your FSx for ONTAP file system's SVM.</p>
|
|
781
781
|
* @public
|
|
782
782
|
*/
|
|
783
|
-
SMB?: FsxProtocolSmb;
|
|
783
|
+
SMB?: FsxProtocolSmb | undefined;
|
|
784
784
|
}
|
|
785
785
|
/**
|
|
786
786
|
* @public
|
|
@@ -829,13 +829,13 @@ export interface CreateLocationFsxOntapRequest {
|
|
|
829
829
|
* </note>
|
|
830
830
|
* @public
|
|
831
831
|
*/
|
|
832
|
-
Subdirectory?: string;
|
|
832
|
+
Subdirectory?: string | undefined;
|
|
833
833
|
/**
|
|
834
834
|
* <p>Specifies labels that help you categorize, filter, and search for your Amazon Web Services
|
|
835
835
|
* resources. We recommend creating at least a name tag for your location.</p>
|
|
836
836
|
* @public
|
|
837
837
|
*/
|
|
838
|
-
Tags?: TagListEntry[];
|
|
838
|
+
Tags?: TagListEntry[] | undefined;
|
|
839
839
|
}
|
|
840
840
|
/**
|
|
841
841
|
* @public
|
|
@@ -846,7 +846,7 @@ export interface CreateLocationFsxOntapResponse {
|
|
|
846
846
|
* create.</p>
|
|
847
847
|
* @public
|
|
848
848
|
*/
|
|
849
|
-
LocationArn?: string;
|
|
849
|
+
LocationArn?: string | undefined;
|
|
850
850
|
}
|
|
851
851
|
/**
|
|
852
852
|
* @public
|
|
@@ -873,14 +873,14 @@ export interface CreateLocationFsxOpenZfsRequest {
|
|
|
873
873
|
* system is a source or destination location).</p>
|
|
874
874
|
* @public
|
|
875
875
|
*/
|
|
876
|
-
Subdirectory?: string;
|
|
876
|
+
Subdirectory?: string | undefined;
|
|
877
877
|
/**
|
|
878
878
|
* <p>The key-value pair that represents a tag that you want to add to the resource. The value
|
|
879
879
|
* can be an empty string. This value helps you manage, filter, and search for your resources. We
|
|
880
880
|
* recommend that you create a name tag for your location.</p>
|
|
881
881
|
* @public
|
|
882
882
|
*/
|
|
883
|
-
Tags?: TagListEntry[];
|
|
883
|
+
Tags?: TagListEntry[] | undefined;
|
|
884
884
|
}
|
|
885
885
|
/**
|
|
886
886
|
* @public
|
|
@@ -890,7 +890,7 @@ export interface CreateLocationFsxOpenZfsResponse {
|
|
|
890
890
|
* <p>The ARN of the FSx for OpenZFS file system location that you created.</p>
|
|
891
891
|
* @public
|
|
892
892
|
*/
|
|
893
|
-
LocationArn?: string;
|
|
893
|
+
LocationArn?: string | undefined;
|
|
894
894
|
}
|
|
895
895
|
/**
|
|
896
896
|
* @public
|
|
@@ -901,7 +901,7 @@ export interface CreateLocationFsxWindowsRequest {
|
|
|
901
901
|
* location).</p>
|
|
902
902
|
* @public
|
|
903
903
|
*/
|
|
904
|
-
Subdirectory?: string;
|
|
904
|
+
Subdirectory?: string | undefined;
|
|
905
905
|
/**
|
|
906
906
|
* <p>Specifies the Amazon Resource Name (ARN) for the FSx for Windows File Server file
|
|
907
907
|
* system.</p>
|
|
@@ -936,7 +936,7 @@ export interface CreateLocationFsxWindowsRequest {
|
|
|
936
936
|
* resources. We recommend creating at least a name tag for your location.</p>
|
|
937
937
|
* @public
|
|
938
938
|
*/
|
|
939
|
-
Tags?: TagListEntry[];
|
|
939
|
+
Tags?: TagListEntry[] | undefined;
|
|
940
940
|
/**
|
|
941
941
|
* <p>Specifies the user with the permissions to mount and access the files, folders, and file
|
|
942
942
|
* metadata in your FSx for Windows File Server file system.</p>
|
|
@@ -950,7 +950,7 @@ export interface CreateLocationFsxWindowsRequest {
|
|
|
950
950
|
* parameter makes sure that DataSync connects to the right file system.</p>
|
|
951
951
|
* @public
|
|
952
952
|
*/
|
|
953
|
-
Domain?: string;
|
|
953
|
+
Domain?: string | undefined;
|
|
954
954
|
/**
|
|
955
955
|
* <p>Specifies the password of the user with the permissions to mount and access the files,
|
|
956
956
|
* folders, and file metadata in your FSx for Windows File Server file system.</p>
|
|
@@ -966,7 +966,7 @@ export interface CreateLocationFsxWindowsResponse {
|
|
|
966
966
|
* <p>The ARN of the FSx for Windows File Server file system location you created.</p>
|
|
967
967
|
* @public
|
|
968
968
|
*/
|
|
969
|
-
LocationArn?: string;
|
|
969
|
+
LocationArn?: string | undefined;
|
|
970
970
|
}
|
|
971
971
|
/**
|
|
972
972
|
* @public
|
|
@@ -1042,14 +1042,14 @@ export interface QopConfiguration {
|
|
|
1042
1042
|
* your Hadoop cluster.</p>
|
|
1043
1043
|
* @public
|
|
1044
1044
|
*/
|
|
1045
|
-
RpcProtection?: HdfsRpcProtection;
|
|
1045
|
+
RpcProtection?: HdfsRpcProtection | undefined;
|
|
1046
1046
|
/**
|
|
1047
1047
|
* <p>The data transfer protection setting configured on the HDFS cluster. This setting
|
|
1048
1048
|
* corresponds to your <code>dfs.data.transfer.protection</code> setting in the
|
|
1049
1049
|
* <code>hdfs-site.xml</code> file on your Hadoop cluster.</p>
|
|
1050
1050
|
* @public
|
|
1051
1051
|
*/
|
|
1052
|
-
DataTransferProtection?: HdfsDataTransferProtection;
|
|
1052
|
+
DataTransferProtection?: HdfsDataTransferProtection | undefined;
|
|
1053
1053
|
}
|
|
1054
1054
|
/**
|
|
1055
1055
|
* @public
|
|
@@ -1061,7 +1061,7 @@ export interface CreateLocationHdfsRequest {
|
|
|
1061
1061
|
* <code>/</code>.</p>
|
|
1062
1062
|
* @public
|
|
1063
1063
|
*/
|
|
1064
|
-
Subdirectory?: string;
|
|
1064
|
+
Subdirectory?: string | undefined;
|
|
1065
1065
|
/**
|
|
1066
1066
|
* <p>The NameNode that manages the HDFS namespace. The NameNode performs operations such as
|
|
1067
1067
|
* opening, closing, and renaming files and directories. The NameNode contains the information to
|
|
@@ -1074,18 +1074,18 @@ export interface CreateLocationHdfsRequest {
|
|
|
1074
1074
|
* of 512 bytes. The default block size is 128 mebibytes (MiB).</p>
|
|
1075
1075
|
* @public
|
|
1076
1076
|
*/
|
|
1077
|
-
BlockSize?: number;
|
|
1077
|
+
BlockSize?: number | undefined;
|
|
1078
1078
|
/**
|
|
1079
1079
|
* <p>The number of DataNodes to replicate the data to when writing to the HDFS cluster. By
|
|
1080
1080
|
* default, data is replicated to three DataNodes.</p>
|
|
1081
1081
|
* @public
|
|
1082
1082
|
*/
|
|
1083
|
-
ReplicationFactor?: number;
|
|
1083
|
+
ReplicationFactor?: number | undefined;
|
|
1084
1084
|
/**
|
|
1085
1085
|
* <p>The URI of the HDFS cluster's Key Management Server (KMS). </p>
|
|
1086
1086
|
* @public
|
|
1087
1087
|
*/
|
|
1088
|
-
KmsKeyProviderUri?: string;
|
|
1088
|
+
KmsKeyProviderUri?: string | undefined;
|
|
1089
1089
|
/**
|
|
1090
1090
|
* <p>The Quality of Protection (QOP) configuration specifies the Remote Procedure Call (RPC)
|
|
1091
1091
|
* and data transfer protection settings configured on the Hadoop Distributed File System (HDFS)
|
|
@@ -1095,7 +1095,7 @@ export interface CreateLocationHdfsRequest {
|
|
|
1095
1095
|
* assumes the same value. </p>
|
|
1096
1096
|
* @public
|
|
1097
1097
|
*/
|
|
1098
|
-
QopConfiguration?: QopConfiguration;
|
|
1098
|
+
QopConfiguration?: QopConfiguration | undefined;
|
|
1099
1099
|
/**
|
|
1100
1100
|
* <p>The type of authentication used to determine the identity of the user. </p>
|
|
1101
1101
|
* @public
|
|
@@ -1109,7 +1109,7 @@ export interface CreateLocationHdfsRequest {
|
|
|
1109
1109
|
* </note>
|
|
1110
1110
|
* @public
|
|
1111
1111
|
*/
|
|
1112
|
-
SimpleUser?: string;
|
|
1112
|
+
SimpleUser?: string | undefined;
|
|
1113
1113
|
/**
|
|
1114
1114
|
* <p>The Kerberos principal with access to the files and folders on the HDFS cluster. </p>
|
|
1115
1115
|
* <note>
|
|
@@ -1118,7 +1118,7 @@ export interface CreateLocationHdfsRequest {
|
|
|
1118
1118
|
* </note>
|
|
1119
1119
|
* @public
|
|
1120
1120
|
*/
|
|
1121
|
-
KerberosPrincipal?: string;
|
|
1121
|
+
KerberosPrincipal?: string | undefined;
|
|
1122
1122
|
/**
|
|
1123
1123
|
* <p>The Kerberos key table (keytab) that contains mappings between the defined Kerberos
|
|
1124
1124
|
* principal and the encrypted keys. You can load the keytab from a file by providing the file's
|
|
@@ -1130,7 +1130,7 @@ export interface CreateLocationHdfsRequest {
|
|
|
1130
1130
|
* </note>
|
|
1131
1131
|
* @public
|
|
1132
1132
|
*/
|
|
1133
|
-
KerberosKeytab?: Uint8Array;
|
|
1133
|
+
KerberosKeytab?: Uint8Array | undefined;
|
|
1134
1134
|
/**
|
|
1135
1135
|
* <p>The <code>krb5.conf</code> file that contains the Kerberos configuration information. You
|
|
1136
1136
|
* can load the <code>krb5.conf</code> file by providing the file's address. If you're using the
|
|
@@ -1142,7 +1142,7 @@ export interface CreateLocationHdfsRequest {
|
|
|
1142
1142
|
* </note>
|
|
1143
1143
|
* @public
|
|
1144
1144
|
*/
|
|
1145
|
-
KerberosKrb5Conf?: Uint8Array;
|
|
1145
|
+
KerberosKrb5Conf?: Uint8Array | undefined;
|
|
1146
1146
|
/**
|
|
1147
1147
|
* <p>The Amazon Resource Names (ARNs) of the DataSync agents that can connect to your HDFS cluster.</p>
|
|
1148
1148
|
* @public
|
|
@@ -1153,7 +1153,7 @@ export interface CreateLocationHdfsRequest {
|
|
|
1153
1153
|
* can be an empty string. We recommend using tags to name your resources. </p>
|
|
1154
1154
|
* @public
|
|
1155
1155
|
*/
|
|
1156
|
-
Tags?: TagListEntry[];
|
|
1156
|
+
Tags?: TagListEntry[] | undefined;
|
|
1157
1157
|
}
|
|
1158
1158
|
/**
|
|
1159
1159
|
* @public
|
|
@@ -1163,7 +1163,7 @@ export interface CreateLocationHdfsResponse {
|
|
|
1163
1163
|
* <p>The ARN of the source HDFS cluster location that you create.</p>
|
|
1164
1164
|
* @public
|
|
1165
1165
|
*/
|
|
1166
|
-
LocationArn?: string;
|
|
1166
|
+
LocationArn?: string | undefined;
|
|
1167
1167
|
}
|
|
1168
1168
|
/**
|
|
1169
1169
|
* <p>The DataSync agents that can connect to your Network File System (NFS)
|
|
@@ -1211,13 +1211,13 @@ export interface CreateLocationNfsRequest {
|
|
|
1211
1211
|
* server.</p>
|
|
1212
1212
|
* @public
|
|
1213
1213
|
*/
|
|
1214
|
-
MountOptions?: NfsMountOptions;
|
|
1214
|
+
MountOptions?: NfsMountOptions | undefined;
|
|
1215
1215
|
/**
|
|
1216
1216
|
* <p>Specifies labels that help you categorize, filter, and search for your Amazon Web Services resources.
|
|
1217
1217
|
* We recommend creating at least a name tag for your location.</p>
|
|
1218
1218
|
* @public
|
|
1219
1219
|
*/
|
|
1220
|
-
Tags?: TagListEntry[];
|
|
1220
|
+
Tags?: TagListEntry[] | undefined;
|
|
1221
1221
|
}
|
|
1222
1222
|
/**
|
|
1223
1223
|
* <p>CreateLocationNfsResponse</p>
|
|
@@ -1228,7 +1228,7 @@ export interface CreateLocationNfsResponse {
|
|
|
1228
1228
|
* <p>The ARN of the transfer location that you created for your NFS file server.</p>
|
|
1229
1229
|
* @public
|
|
1230
1230
|
*/
|
|
1231
|
-
LocationArn?: string;
|
|
1231
|
+
LocationArn?: string | undefined;
|
|
1232
1232
|
}
|
|
1233
1233
|
/**
|
|
1234
1234
|
* @public
|
|
@@ -1258,19 +1258,19 @@ export interface CreateLocationObjectStorageRequest {
|
|
|
1258
1258
|
* example, port 443).</p>
|
|
1259
1259
|
* @public
|
|
1260
1260
|
*/
|
|
1261
|
-
ServerPort?: number;
|
|
1261
|
+
ServerPort?: number | undefined;
|
|
1262
1262
|
/**
|
|
1263
1263
|
* <p>Specifies the protocol that your object storage server uses to communicate.</p>
|
|
1264
1264
|
* @public
|
|
1265
1265
|
*/
|
|
1266
|
-
ServerProtocol?: ObjectStorageServerProtocol;
|
|
1266
|
+
ServerProtocol?: ObjectStorageServerProtocol | undefined;
|
|
1267
1267
|
/**
|
|
1268
1268
|
* <p>Specifies the object prefix for your object storage server. If this is a source location,
|
|
1269
1269
|
* DataSync only copies objects with this prefix. If this is a destination location,
|
|
1270
1270
|
* DataSync writes all objects with this prefix. </p>
|
|
1271
1271
|
* @public
|
|
1272
1272
|
*/
|
|
1273
|
-
Subdirectory?: string;
|
|
1273
|
+
Subdirectory?: string | undefined;
|
|
1274
1274
|
/**
|
|
1275
1275
|
* <p>Specifies the name of the object storage bucket involved in the transfer.</p>
|
|
1276
1276
|
* @public
|
|
@@ -1281,13 +1281,13 @@ export interface CreateLocationObjectStorageRequest {
|
|
|
1281
1281
|
* authenticate with the object storage server.</p>
|
|
1282
1282
|
* @public
|
|
1283
1283
|
*/
|
|
1284
|
-
AccessKey?: string;
|
|
1284
|
+
AccessKey?: string | undefined;
|
|
1285
1285
|
/**
|
|
1286
1286
|
* <p>Specifies the secret key (for example, a password) if credentials are required to
|
|
1287
1287
|
* authenticate with the object storage server.</p>
|
|
1288
1288
|
* @public
|
|
1289
1289
|
*/
|
|
1290
|
-
SecretKey?: string;
|
|
1290
|
+
SecretKey?: string | undefined;
|
|
1291
1291
|
/**
|
|
1292
1292
|
* <p>Specifies the Amazon Resource Names (ARNs) of the DataSync agents that can
|
|
1293
1293
|
* connect with your object storage system.</p>
|
|
@@ -1300,7 +1300,7 @@ export interface CreateLocationObjectStorageRequest {
|
|
|
1300
1300
|
* tag for your location.</p>
|
|
1301
1301
|
* @public
|
|
1302
1302
|
*/
|
|
1303
|
-
Tags?: TagListEntry[];
|
|
1303
|
+
Tags?: TagListEntry[] | undefined;
|
|
1304
1304
|
/**
|
|
1305
1305
|
* <p>Specifies a certificate chain for DataSync to authenticate with your object
|
|
1306
1306
|
* storage system if the system uses a private or self-signed certificate authority (CA). You
|
|
@@ -1328,7 +1328,7 @@ export interface CreateLocationObjectStorageRequest {
|
|
|
1328
1328
|
* <p>To use this parameter, configure <code>ServerProtocol</code> to <code>HTTPS</code>.</p>
|
|
1329
1329
|
* @public
|
|
1330
1330
|
*/
|
|
1331
|
-
ServerCertificate?: Uint8Array;
|
|
1331
|
+
ServerCertificate?: Uint8Array | undefined;
|
|
1332
1332
|
}
|
|
1333
1333
|
/**
|
|
1334
1334
|
* <p>CreateLocationObjectStorageResponse</p>
|
|
@@ -1339,7 +1339,7 @@ export interface CreateLocationObjectStorageResponse {
|
|
|
1339
1339
|
* <p>Specifies the ARN of the object storage system location that you create.</p>
|
|
1340
1340
|
* @public
|
|
1341
1341
|
*/
|
|
1342
|
-
LocationArn?: string;
|
|
1342
|
+
LocationArn?: string | undefined;
|
|
1343
1343
|
}
|
|
1344
1344
|
/**
|
|
1345
1345
|
* <p>Specifies the Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that DataSync uses to access your S3 bucket.</p>
|
|
@@ -1410,7 +1410,7 @@ export interface CreateLocationS3Request {
|
|
|
1410
1410
|
* </note>
|
|
1411
1411
|
* @public
|
|
1412
1412
|
*/
|
|
1413
|
-
Subdirectory?: string;
|
|
1413
|
+
Subdirectory?: string | undefined;
|
|
1414
1414
|
/**
|
|
1415
1415
|
* <p>Specifies the ARN of the S3 bucket that you want to use as a location. (When creating
|
|
1416
1416
|
* your DataSync task later, you specify whether this location is a transfer source or
|
|
@@ -1431,7 +1431,7 @@ export interface CreateLocationS3Request {
|
|
|
1431
1431
|
* considerations with Amazon S3 transfers</a>.</p>
|
|
1432
1432
|
* @public
|
|
1433
1433
|
*/
|
|
1434
|
-
S3StorageClass?: S3StorageClass;
|
|
1434
|
+
S3StorageClass?: S3StorageClass | undefined;
|
|
1435
1435
|
/**
|
|
1436
1436
|
* <p>Specifies the Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that DataSync uses to access your S3 bucket.</p>
|
|
1437
1437
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#create-s3-location-access">Accessing
|
|
@@ -1445,13 +1445,13 @@ export interface CreateLocationS3Request {
|
|
|
1445
1445
|
* on Outposts</a>.</p>
|
|
1446
1446
|
* @public
|
|
1447
1447
|
*/
|
|
1448
|
-
AgentArns?: string[];
|
|
1448
|
+
AgentArns?: string[] | undefined;
|
|
1449
1449
|
/**
|
|
1450
1450
|
* <p>Specifies labels that help you categorize, filter, and search for your Amazon Web Services resources.
|
|
1451
1451
|
* We recommend creating at least a name tag for your transfer location.</p>
|
|
1452
1452
|
* @public
|
|
1453
1453
|
*/
|
|
1454
|
-
Tags?: TagListEntry[];
|
|
1454
|
+
Tags?: TagListEntry[] | undefined;
|
|
1455
1455
|
}
|
|
1456
1456
|
/**
|
|
1457
1457
|
* <p>CreateLocationS3Response</p>
|
|
@@ -1462,7 +1462,7 @@ export interface CreateLocationS3Response {
|
|
|
1462
1462
|
* <p>The ARN of the S3 location that you created.</p>
|
|
1463
1463
|
* @public
|
|
1464
1464
|
*/
|
|
1465
|
-
LocationArn?: string;
|
|
1465
|
+
LocationArn?: string | undefined;
|
|
1466
1466
|
}
|
|
1467
1467
|
/**
|
|
1468
1468
|
* <p>CreateLocationSmbRequest</p>
|
|
@@ -1502,7 +1502,7 @@ export interface CreateLocationSmbRequest {
|
|
|
1502
1502
|
* parameter makes sure that DataSync connects to the right file server.</p>
|
|
1503
1503
|
* @public
|
|
1504
1504
|
*/
|
|
1505
|
-
Domain?: string;
|
|
1505
|
+
Domain?: string | undefined;
|
|
1506
1506
|
/**
|
|
1507
1507
|
* <p>Specifies the password of the user who can mount your SMB file server and has permission
|
|
1508
1508
|
* to access the files and folders involved in your transfer.</p>
|
|
@@ -1521,13 +1521,13 @@ export interface CreateLocationSmbRequest {
|
|
|
1521
1521
|
* file server.</p>
|
|
1522
1522
|
* @public
|
|
1523
1523
|
*/
|
|
1524
|
-
MountOptions?: SmbMountOptions;
|
|
1524
|
+
MountOptions?: SmbMountOptions | undefined;
|
|
1525
1525
|
/**
|
|
1526
1526
|
* <p>Specifies labels that help you categorize, filter, and search for your Amazon Web Services
|
|
1527
1527
|
* resources. We recommend creating at least a name tag for your location.</p>
|
|
1528
1528
|
* @public
|
|
1529
1529
|
*/
|
|
1530
|
-
Tags?: TagListEntry[];
|
|
1530
|
+
Tags?: TagListEntry[] | undefined;
|
|
1531
1531
|
}
|
|
1532
1532
|
/**
|
|
1533
1533
|
* <p>CreateLocationSmbResponse</p>
|
|
@@ -1538,7 +1538,7 @@ export interface CreateLocationSmbResponse {
|
|
|
1538
1538
|
* <p>The ARN of the SMB location that you created.</p>
|
|
1539
1539
|
* @public
|
|
1540
1540
|
*/
|
|
1541
|
-
LocationArn?: string;
|
|
1541
|
+
LocationArn?: string | undefined;
|
|
1542
1542
|
}
|
|
1543
1543
|
/**
|
|
1544
1544
|
* @public
|
|
@@ -1562,7 +1562,7 @@ export interface FilterRule {
|
|
|
1562
1562
|
* rule type.</p>
|
|
1563
1563
|
* @public
|
|
1564
1564
|
*/
|
|
1565
|
-
FilterType?: FilterType;
|
|
1565
|
+
FilterType?: FilterType | undefined;
|
|
1566
1566
|
/**
|
|
1567
1567
|
* <p>A single filter string that consists of the patterns to include or exclude. The patterns
|
|
1568
1568
|
* are delimited by "|" (that is, a pipe), for example: <code>/folder1|/folder2</code>
|
|
@@ -1570,7 +1570,7 @@ export interface FilterRule {
|
|
|
1570
1570
|
* <p> </p>
|
|
1571
1571
|
* @public
|
|
1572
1572
|
*/
|
|
1573
|
-
Value?: string;
|
|
1573
|
+
Value?: string | undefined;
|
|
1574
1574
|
}
|
|
1575
1575
|
/**
|
|
1576
1576
|
* @public
|
|
@@ -1621,7 +1621,7 @@ export interface S3ManifestConfig {
|
|
|
1621
1621
|
* If you don't set this, DataSync uses the latest version of the object.</p>
|
|
1622
1622
|
* @public
|
|
1623
1623
|
*/
|
|
1624
|
-
ManifestObjectVersionId?: string;
|
|
1624
|
+
ManifestObjectVersionId?: string | undefined;
|
|
1625
1625
|
}
|
|
1626
1626
|
/**
|
|
1627
1627
|
* <p>Specifies the manifest that you want DataSync to use and where it's hosted.
|
|
@@ -1644,12 +1644,12 @@ export interface ManifestConfig {
|
|
|
1644
1644
|
* <p>Specifies what DataSync uses the manifest for.</p>
|
|
1645
1645
|
* @public
|
|
1646
1646
|
*/
|
|
1647
|
-
Action?: ManifestAction;
|
|
1647
|
+
Action?: ManifestAction | undefined;
|
|
1648
1648
|
/**
|
|
1649
1649
|
* <p>Specifies the file format of your manifest. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/transferring-with-manifest.html#transferring-with-manifest-create">Creating a manifest</a>.</p>
|
|
1650
1650
|
* @public
|
|
1651
1651
|
*/
|
|
1652
|
-
Format?: ManifestFormat;
|
|
1652
|
+
Format?: ManifestFormat | undefined;
|
|
1653
1653
|
/**
|
|
1654
1654
|
* <p>Specifies the manifest that you want DataSync to use and where it's
|
|
1655
1655
|
* hosted.</p>
|
|
@@ -1662,7 +1662,7 @@ export interface ManifestConfig {
|
|
|
1662
1662
|
* </note>
|
|
1663
1663
|
* @public
|
|
1664
1664
|
*/
|
|
1665
|
-
Source?: SourceManifestConfig;
|
|
1665
|
+
Source?: SourceManifestConfig | undefined;
|
|
1666
1666
|
}
|
|
1667
1667
|
/**
|
|
1668
1668
|
* @public
|
|
@@ -1879,7 +1879,7 @@ export interface Options {
|
|
|
1879
1879
|
* </ul>
|
|
1880
1880
|
* @public
|
|
1881
1881
|
*/
|
|
1882
|
-
VerifyMode?: VerifyMode;
|
|
1882
|
+
VerifyMode?: VerifyMode | undefined;
|
|
1883
1883
|
/**
|
|
1884
1884
|
* <p>Specifies whether DataSync should modify or preserve data at the destination
|
|
1885
1885
|
* location.</p>
|
|
@@ -1902,7 +1902,7 @@ export interface Options {
|
|
|
1902
1902
|
* </ul>
|
|
1903
1903
|
* @public
|
|
1904
1904
|
*/
|
|
1905
|
-
OverwriteMode?: OverwriteMode;
|
|
1905
|
+
OverwriteMode?: OverwriteMode | undefined;
|
|
1906
1906
|
/**
|
|
1907
1907
|
* <p>Specifies whether to preserve metadata indicating the last time a file was read or
|
|
1908
1908
|
* written to.</p>
|
|
@@ -1930,7 +1930,7 @@ export interface Options {
|
|
|
1930
1930
|
* </note>
|
|
1931
1931
|
* @public
|
|
1932
1932
|
*/
|
|
1933
|
-
Atime?: Atime;
|
|
1933
|
+
Atime?: Atime | undefined;
|
|
1934
1934
|
/**
|
|
1935
1935
|
* <p>Specifies whether to preserve metadata indicating the last time that a file was written
|
|
1936
1936
|
* to before the <code>PREPARING</code> step of your task execution. This option is required when
|
|
@@ -1954,7 +1954,7 @@ export interface Options {
|
|
|
1954
1954
|
* </note>
|
|
1955
1955
|
* @public
|
|
1956
1956
|
*/
|
|
1957
|
-
Mtime?: Mtime;
|
|
1957
|
+
Mtime?: Mtime | undefined;
|
|
1958
1958
|
/**
|
|
1959
1959
|
* <p>Specifies the POSIX user ID (UID) of the file's owner.</p>
|
|
1960
1960
|
* <ul>
|
|
@@ -1971,7 +1971,7 @@ export interface Options {
|
|
|
1971
1971
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/special-files.html#metadata-copied">Metadata copied by DataSync</a>.</p>
|
|
1972
1972
|
* @public
|
|
1973
1973
|
*/
|
|
1974
|
-
Uid?: Uid;
|
|
1974
|
+
Uid?: Uid | undefined;
|
|
1975
1975
|
/**
|
|
1976
1976
|
* <p>Specifies the POSIX group ID (GID) of the file's owners.</p>
|
|
1977
1977
|
* <ul>
|
|
@@ -1988,7 +1988,7 @@ export interface Options {
|
|
|
1988
1988
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/metadata-copied.html">Understanding how DataSync handles file and object metadata</a>.</p>
|
|
1989
1989
|
* @public
|
|
1990
1990
|
*/
|
|
1991
|
-
Gid?: Gid;
|
|
1991
|
+
Gid?: Gid | undefined;
|
|
1992
1992
|
/**
|
|
1993
1993
|
* <p>Specifies whether files in the destination location that don't exist in the source
|
|
1994
1994
|
* should be preserved. This option can affect your Amazon S3 storage cost. If your task
|
|
@@ -2013,7 +2013,7 @@ export interface Options {
|
|
|
2013
2013
|
* </note>
|
|
2014
2014
|
* @public
|
|
2015
2015
|
*/
|
|
2016
|
-
PreserveDeletedFiles?: PreserveDeletedFiles;
|
|
2016
|
+
PreserveDeletedFiles?: PreserveDeletedFiles | undefined;
|
|
2017
2017
|
/**
|
|
2018
2018
|
* <p>Specifies whether DataSync should preserve the metadata of block and
|
|
2019
2019
|
* character devices in the source location and recreate the files with that device name and
|
|
@@ -2036,7 +2036,7 @@ export interface Options {
|
|
|
2036
2036
|
* </ul>
|
|
2037
2037
|
* @public
|
|
2038
2038
|
*/
|
|
2039
|
-
PreserveDevices?: PreserveDevices;
|
|
2039
|
+
PreserveDevices?: PreserveDevices | undefined;
|
|
2040
2040
|
/**
|
|
2041
2041
|
* <p>Specifies which users or groups can access a file for a specific purpose such as reading,
|
|
2042
2042
|
* writing, or execution of the file.</p>
|
|
@@ -2057,7 +2057,7 @@ export interface Options {
|
|
|
2057
2057
|
* </note>
|
|
2058
2058
|
* @public
|
|
2059
2059
|
*/
|
|
2060
|
-
PosixPermissions?: PosixPermissions;
|
|
2060
|
+
PosixPermissions?: PosixPermissions | undefined;
|
|
2061
2061
|
/**
|
|
2062
2062
|
* <p>Limits the bandwidth used by a DataSync task. For example, if you want
|
|
2063
2063
|
* DataSync to use a maximum of 1 MB, set this value to <code>1048576</code>
|
|
@@ -2068,14 +2068,14 @@ export interface Options {
|
|
|
2068
2068
|
* </note>
|
|
2069
2069
|
* @public
|
|
2070
2070
|
*/
|
|
2071
|
-
BytesPerSecond?: number;
|
|
2071
|
+
BytesPerSecond?: number | undefined;
|
|
2072
2072
|
/**
|
|
2073
2073
|
* <p>Specifies whether your transfer tasks should be put into a queue during certain scenarios
|
|
2074
2074
|
* when <a href="https://docs.aws.amazon.com/datasync/latest/userguide/run-task.html#running-multiple-tasks">running multiple
|
|
2075
2075
|
* tasks</a>. This is <code>ENABLED</code> by default.</p>
|
|
2076
2076
|
* @public
|
|
2077
2077
|
*/
|
|
2078
|
-
TaskQueueing?: TaskQueueing;
|
|
2078
|
+
TaskQueueing?: TaskQueueing | undefined;
|
|
2079
2079
|
/**
|
|
2080
2080
|
* <p>Specifies the type of logs that DataSync publishes to a Amazon CloudWatch Logs
|
|
2081
2081
|
* log group. To specify the log group, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/API_CreateTask.html#DataSync-CreateTask-request-CloudWatchLogGroupArn">CloudWatchLogGroupArn</a>.</p>
|
|
@@ -2096,7 +2096,7 @@ export interface Options {
|
|
|
2096
2096
|
* </ul>
|
|
2097
2097
|
* @public
|
|
2098
2098
|
*/
|
|
2099
|
-
LogLevel?: LogLevel;
|
|
2099
|
+
LogLevel?: LogLevel | undefined;
|
|
2100
2100
|
/**
|
|
2101
2101
|
* <p>Specifies whether DataSync transfers only the data (including metadata) that
|
|
2102
2102
|
* differs between locations following an initial copy or transfers all data every time you run
|
|
@@ -2117,7 +2117,7 @@ export interface Options {
|
|
|
2117
2117
|
* </ul>
|
|
2118
2118
|
* @public
|
|
2119
2119
|
*/
|
|
2120
|
-
TransferMode?: TransferMode;
|
|
2120
|
+
TransferMode?: TransferMode | undefined;
|
|
2121
2121
|
/**
|
|
2122
2122
|
* <p>Specifies which components of the SMB security descriptor are copied from source to
|
|
2123
2123
|
* destination objects. </p>
|
|
@@ -2171,13 +2171,13 @@ export interface Options {
|
|
|
2171
2171
|
* </ul>
|
|
2172
2172
|
* @public
|
|
2173
2173
|
*/
|
|
2174
|
-
SecurityDescriptorCopyFlags?: SmbSecurityDescriptorCopyFlags;
|
|
2174
|
+
SecurityDescriptorCopyFlags?: SmbSecurityDescriptorCopyFlags | undefined;
|
|
2175
2175
|
/**
|
|
2176
2176
|
* <p>Specifies whether you want DataSync to <code>PRESERVE</code> object tags
|
|
2177
2177
|
* (default behavior) when transferring between object storage systems. If you want your DataSync task to ignore object tags, specify the <code>NONE</code> value.</p>
|
|
2178
2178
|
* @public
|
|
2179
2179
|
*/
|
|
2180
|
-
ObjectTags?: ObjectTags;
|
|
2180
|
+
ObjectTags?: ObjectTags | undefined;
|
|
2181
2181
|
}
|
|
2182
2182
|
/**
|
|
2183
2183
|
* @public
|
|
@@ -2225,7 +2225,7 @@ export interface TaskSchedule {
|
|
|
2225
2225
|
* with the same error. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/API_TaskScheduleDetails.html">TaskScheduleDetails</a>.</p>
|
|
2226
2226
|
* @public
|
|
2227
2227
|
*/
|
|
2228
|
-
Status?: ScheduleStatus;
|
|
2228
|
+
Status?: ScheduleStatus | undefined;
|
|
2229
2229
|
}
|
|
2230
2230
|
/**
|
|
2231
2231
|
* @public
|
|
@@ -2248,7 +2248,7 @@ export interface ReportDestinationS3 {
|
|
|
2248
2248
|
* <p>Specifies a bucket prefix for your report.</p>
|
|
2249
2249
|
* @public
|
|
2250
2250
|
*/
|
|
2251
|
-
Subdirectory?: string;
|
|
2251
|
+
Subdirectory?: string | undefined;
|
|
2252
2252
|
/**
|
|
2253
2253
|
* <p>Specifies the ARN of the S3 bucket where DataSync uploads your report.</p>
|
|
2254
2254
|
* @public
|
|
@@ -2269,7 +2269,7 @@ export interface ReportDestination {
|
|
|
2269
2269
|
* <p>Specifies the Amazon S3 bucket where DataSync uploads your task report.</p>
|
|
2270
2270
|
* @public
|
|
2271
2271
|
*/
|
|
2272
|
-
S3?: ReportDestinationS3;
|
|
2272
|
+
S3?: ReportDestinationS3 | undefined;
|
|
2273
2273
|
}
|
|
2274
2274
|
/**
|
|
2275
2275
|
* @public
|
|
@@ -2319,7 +2319,7 @@ export interface ReportOverride {
|
|
|
2319
2319
|
* <p>For example, your report might mostly include only what didn't go well in your transfer (<code>ERRORS_ONLY</code>). At the same time, you want to verify that your <a href="https://docs.aws.amazon.com/datasync/latest/userguide/filtering.html">task filter</a> is working correctly. In this situation, you can get a list of what files DataSync successfully skipped and if something transferred that you didn't to transfer (<code>SUCCESSES_AND_ERRORS</code>).</p>
|
|
2320
2320
|
* @public
|
|
2321
2321
|
*/
|
|
2322
|
-
ReportLevel?: ReportLevel;
|
|
2322
|
+
ReportLevel?: ReportLevel | undefined;
|
|
2323
2323
|
}
|
|
2324
2324
|
/**
|
|
2325
2325
|
* <p>The level of detail included in each aspect of your DataSync
|
|
@@ -2332,22 +2332,22 @@ export interface ReportOverrides {
|
|
|
2332
2332
|
* <p>Specifies the level of reporting for the files, objects, and directories that DataSync attempted to transfer.</p>
|
|
2333
2333
|
* @public
|
|
2334
2334
|
*/
|
|
2335
|
-
Transferred?: ReportOverride;
|
|
2335
|
+
Transferred?: ReportOverride | undefined;
|
|
2336
2336
|
/**
|
|
2337
2337
|
* <p>Specifies the level of reporting for the files, objects, and directories that DataSync attempted to verify at the end of your transfer.</p>
|
|
2338
2338
|
* @public
|
|
2339
2339
|
*/
|
|
2340
|
-
Verified?: ReportOverride;
|
|
2340
|
+
Verified?: ReportOverride | undefined;
|
|
2341
2341
|
/**
|
|
2342
2342
|
* <p>Specifies the level of reporting for the files, objects, and directories that DataSync attempted to delete in your destination location. This only applies if you <a href="https://docs.aws.amazon.com/datasync/latest/userguide/configure-metadata.html">configure your task</a> to delete data in the destination that isn't in the source.</p>
|
|
2343
2343
|
* @public
|
|
2344
2344
|
*/
|
|
2345
|
-
Deleted?: ReportOverride;
|
|
2345
|
+
Deleted?: ReportOverride | undefined;
|
|
2346
2346
|
/**
|
|
2347
2347
|
* <p>Specifies the level of reporting for the files, objects, and directories that DataSync attempted to skip during your transfer.</p>
|
|
2348
2348
|
* @public
|
|
2349
2349
|
*/
|
|
2350
|
-
Skipped?: ReportOverride;
|
|
2350
|
+
Skipped?: ReportOverride | undefined;
|
|
2351
2351
|
}
|
|
2352
2352
|
/**
|
|
2353
2353
|
* <p>Specifies how you want to configure a task report, which provides detailed information about for your DataSync transfer.</p>
|
|
@@ -2361,7 +2361,7 @@ export interface TaskReportConfig {
|
|
|
2361
2361
|
* information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/task-reports.html#task-report-access">Task reports</a>.</p>
|
|
2362
2362
|
* @public
|
|
2363
2363
|
*/
|
|
2364
|
-
Destination?: ReportDestination;
|
|
2364
|
+
Destination?: ReportDestination | undefined;
|
|
2365
2365
|
/**
|
|
2366
2366
|
* <p>Specifies the type of task report that you want:</p>
|
|
2367
2367
|
* <ul>
|
|
@@ -2378,7 +2378,7 @@ export interface TaskReportConfig {
|
|
|
2378
2378
|
* </ul>
|
|
2379
2379
|
* @public
|
|
2380
2380
|
*/
|
|
2381
|
-
OutputType?: ReportOutputType;
|
|
2381
|
+
OutputType?: ReportOutputType | undefined;
|
|
2382
2382
|
/**
|
|
2383
2383
|
* <p>Specifies whether you want your task report to include only what went wrong with your transfer or a list of what succeeded and didn't.</p>
|
|
2384
2384
|
* <ul>
|
|
@@ -2395,12 +2395,12 @@ export interface TaskReportConfig {
|
|
|
2395
2395
|
* </ul>
|
|
2396
2396
|
* @public
|
|
2397
2397
|
*/
|
|
2398
|
-
ReportLevel?: ReportLevel;
|
|
2398
|
+
ReportLevel?: ReportLevel | undefined;
|
|
2399
2399
|
/**
|
|
2400
2400
|
* <p>Specifies whether your task report includes the new version of each object transferred into an S3 bucket. This only applies if you <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/manage-versioning-examples.html">enable versioning on your bucket</a>. Keep in mind that setting this to <code>INCLUDE</code> can increase the duration of your task execution.</p>
|
|
2401
2401
|
* @public
|
|
2402
2402
|
*/
|
|
2403
|
-
ObjectVersionIds?: ObjectVersionIds;
|
|
2403
|
+
ObjectVersionIds?: ObjectVersionIds | undefined;
|
|
2404
2404
|
/**
|
|
2405
2405
|
* <p>Customizes the reporting level for aspects of your task report. For example, your report
|
|
2406
2406
|
* might generally only include errors, but you could specify that you want a list of successes
|
|
@@ -2408,7 +2408,7 @@ export interface TaskReportConfig {
|
|
|
2408
2408
|
* location.</p>
|
|
2409
2409
|
* @public
|
|
2410
2410
|
*/
|
|
2411
|
-
Overrides?: ReportOverrides;
|
|
2411
|
+
Overrides?: ReportOverrides | undefined;
|
|
2412
2412
|
}
|
|
2413
2413
|
/**
|
|
2414
2414
|
* <p>CreateTaskRequest</p>
|
|
@@ -2432,30 +2432,30 @@ export interface CreateTaskRequest {
|
|
|
2432
2432
|
* automatically sends logs to a CloudWatch log group named <code>/aws/datasync</code>.</p>
|
|
2433
2433
|
* @public
|
|
2434
2434
|
*/
|
|
2435
|
-
CloudWatchLogGroupArn?: string;
|
|
2435
|
+
CloudWatchLogGroupArn?: string | undefined;
|
|
2436
2436
|
/**
|
|
2437
2437
|
* <p>Specifies the name of your task.</p>
|
|
2438
2438
|
* @public
|
|
2439
2439
|
*/
|
|
2440
|
-
Name?: string;
|
|
2440
|
+
Name?: string | undefined;
|
|
2441
2441
|
/**
|
|
2442
2442
|
* <p>Specifies your task's settings, such as preserving file metadata, verifying data
|
|
2443
2443
|
* integrity, among other options.</p>
|
|
2444
2444
|
* @public
|
|
2445
2445
|
*/
|
|
2446
|
-
Options?: Options;
|
|
2446
|
+
Options?: Options | undefined;
|
|
2447
2447
|
/**
|
|
2448
2448
|
* <p>Specifies exclude filters that define the files, objects, and folders in your source location that you don't want DataSync to transfer. For more
|
|
2449
2449
|
* information and examples, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/filtering.html">Specifying what DataSync transfers by using filters</a>.</p>
|
|
2450
2450
|
* @public
|
|
2451
2451
|
*/
|
|
2452
|
-
Excludes?: FilterRule[];
|
|
2452
|
+
Excludes?: FilterRule[] | undefined;
|
|
2453
2453
|
/**
|
|
2454
2454
|
* <p>Specifies a schedule for when you want your task to run. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/task-scheduling.html">Scheduling your
|
|
2455
2455
|
* task</a>.</p>
|
|
2456
2456
|
* @public
|
|
2457
2457
|
*/
|
|
2458
|
-
Schedule?: TaskSchedule;
|
|
2458
|
+
Schedule?: TaskSchedule | undefined;
|
|
2459
2459
|
/**
|
|
2460
2460
|
* <p>Specifies the tags that you want to apply to your task.</p>
|
|
2461
2461
|
* <p>
|
|
@@ -2463,7 +2463,7 @@ export interface CreateTaskRequest {
|
|
|
2463
2463
|
* for your DataSync resources.</p>
|
|
2464
2464
|
* @public
|
|
2465
2465
|
*/
|
|
2466
|
-
Tags?: TagListEntry[];
|
|
2466
|
+
Tags?: TagListEntry[] | undefined;
|
|
2467
2467
|
/**
|
|
2468
2468
|
* <p>Specifies include filters that define the files, objects, and folders in your source
|
|
2469
2469
|
* location that you want DataSync to transfer. For more information and examples, see
|
|
@@ -2471,13 +2471,13 @@ export interface CreateTaskRequest {
|
|
|
2471
2471
|
* DataSync transfers by using filters</a>.</p>
|
|
2472
2472
|
* @public
|
|
2473
2473
|
*/
|
|
2474
|
-
Includes?: FilterRule[];
|
|
2474
|
+
Includes?: FilterRule[] | undefined;
|
|
2475
2475
|
/**
|
|
2476
2476
|
* <p>Configures a manifest, which is a list of files or objects that you want DataSync to transfer. For more information and configuration examples, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/transferring-with-manifest.html">Specifying what DataSync transfers by using a manifest</a>.</p>
|
|
2477
2477
|
* <p>When using this parameter, your caller identity (the role that you're using DataSync with) must have the <code>iam:PassRole</code> permission. The <a href="https://docs.aws.amazon.com/datasync/latest/userguide/security-iam-awsmanpol.html#security-iam-awsmanpol-awsdatasyncfullaccess">AWSDataSyncFullAccess</a> policy includes this permission.</p>
|
|
2478
2478
|
* @public
|
|
2479
2479
|
*/
|
|
2480
|
-
ManifestConfig?: ManifestConfig;
|
|
2480
|
+
ManifestConfig?: ManifestConfig | undefined;
|
|
2481
2481
|
/**
|
|
2482
2482
|
* <p>Specifies how you want to configure a task report, which provides detailed information
|
|
2483
2483
|
* about your DataSync transfer. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/task-reports.html">Monitoring your DataSync
|
|
@@ -2485,7 +2485,7 @@ export interface CreateTaskRequest {
|
|
|
2485
2485
|
* <p>When using this parameter, your caller identity (the role that you're using DataSync with) must have the <code>iam:PassRole</code> permission. The <a href="https://docs.aws.amazon.com/datasync/latest/userguide/security-iam-awsmanpol.html#security-iam-awsmanpol-awsdatasyncfullaccess">AWSDataSyncFullAccess</a> policy includes this permission.</p>
|
|
2486
2486
|
* @public
|
|
2487
2487
|
*/
|
|
2488
|
-
TaskReportConfig?: TaskReportConfig;
|
|
2488
|
+
TaskReportConfig?: TaskReportConfig | undefined;
|
|
2489
2489
|
/**
|
|
2490
2490
|
* <p>Specifies one of the following task modes for your data transfer:</p>
|
|
2491
2491
|
* <ul>
|
|
@@ -2508,7 +2508,7 @@ export interface CreateTaskRequest {
|
|
|
2508
2508
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/choosing-task-mode.html#task-mode-differences">Understanding task mode differences</a>.</p>
|
|
2509
2509
|
* @public
|
|
2510
2510
|
*/
|
|
2511
|
-
TaskMode?: TaskMode;
|
|
2511
|
+
TaskMode?: TaskMode | undefined;
|
|
2512
2512
|
}
|
|
2513
2513
|
/**
|
|
2514
2514
|
* <p>CreateTaskResponse</p>
|
|
@@ -2519,7 +2519,7 @@ export interface CreateTaskResponse {
|
|
|
2519
2519
|
* <p>The Amazon Resource Name (ARN) of the task.</p>
|
|
2520
2520
|
* @public
|
|
2521
2521
|
*/
|
|
2522
|
-
TaskArn?: string;
|
|
2522
|
+
TaskArn?: string | undefined;
|
|
2523
2523
|
}
|
|
2524
2524
|
/**
|
|
2525
2525
|
* <p>DeleteAgentRequest</p>
|
|
@@ -2605,24 +2605,24 @@ export interface PrivateLinkConfig {
|
|
|
2605
2605
|
* <p>Specifies the ID of the VPC endpoint that your agent connects to.</p>
|
|
2606
2606
|
* @public
|
|
2607
2607
|
*/
|
|
2608
|
-
VpcEndpointId?: string;
|
|
2608
|
+
VpcEndpointId?: string | undefined;
|
|
2609
2609
|
/**
|
|
2610
2610
|
* <p>Specifies the VPC endpoint provided by <a href="https://docs.aws.amazon.com/vpc/latest/privatelink/privatelink-share-your-services.html">Amazon Web Services PrivateLink</a> that
|
|
2611
2611
|
* your agent connects to.</p>
|
|
2612
2612
|
* @public
|
|
2613
2613
|
*/
|
|
2614
|
-
PrivateLinkEndpoint?: string;
|
|
2614
|
+
PrivateLinkEndpoint?: string | undefined;
|
|
2615
2615
|
/**
|
|
2616
2616
|
* <p>Specifies the ARN of the subnet where your VPC endpoint is located. You can only specify
|
|
2617
2617
|
* one ARN.</p>
|
|
2618
2618
|
* @public
|
|
2619
2619
|
*/
|
|
2620
|
-
SubnetArns?: string[];
|
|
2620
|
+
SubnetArns?: string[] | undefined;
|
|
2621
2621
|
/**
|
|
2622
2622
|
* <p>Specifies the Amazon Resource Names (ARN) of the security group that provides DataSync access to your VPC endpoint. You can only specify one ARN.</p>
|
|
2623
2623
|
* @public
|
|
2624
2624
|
*/
|
|
2625
|
-
SecurityGroupArns?: string[];
|
|
2625
|
+
SecurityGroupArns?: string[] | undefined;
|
|
2626
2626
|
}
|
|
2627
2627
|
/**
|
|
2628
2628
|
* <p>DescribeAgentResponse</p>
|
|
@@ -2633,12 +2633,12 @@ export interface DescribeAgentResponse {
|
|
|
2633
2633
|
* <p>The ARN of the agent.</p>
|
|
2634
2634
|
* @public
|
|
2635
2635
|
*/
|
|
2636
|
-
AgentArn?: string;
|
|
2636
|
+
AgentArn?: string | undefined;
|
|
2637
2637
|
/**
|
|
2638
2638
|
* <p>The name of the agent.</p>
|
|
2639
2639
|
* @public
|
|
2640
2640
|
*/
|
|
2641
|
-
Name?: string;
|
|
2641
|
+
Name?: string | undefined;
|
|
2642
2642
|
/**
|
|
2643
2643
|
* <p>The status of the agent.</p>
|
|
2644
2644
|
* <ul>
|
|
@@ -2655,34 +2655,34 @@ export interface DescribeAgentResponse {
|
|
|
2655
2655
|
* </ul>
|
|
2656
2656
|
* @public
|
|
2657
2657
|
*/
|
|
2658
|
-
Status?: AgentStatus;
|
|
2658
|
+
Status?: AgentStatus | undefined;
|
|
2659
2659
|
/**
|
|
2660
2660
|
* <p>The last time that the agent was communicating with the DataSync
|
|
2661
2661
|
* service.</p>
|
|
2662
2662
|
* @public
|
|
2663
2663
|
*/
|
|
2664
|
-
LastConnectionTime?: Date;
|
|
2664
|
+
LastConnectionTime?: Date | undefined;
|
|
2665
2665
|
/**
|
|
2666
2666
|
* <p>The time that the agent was <a href="https://docs.aws.amazon.com/datasync/latest/userguide/activate-agent.html">activated</a>.</p>
|
|
2667
2667
|
* @public
|
|
2668
2668
|
*/
|
|
2669
|
-
CreationTime?: Date;
|
|
2669
|
+
CreationTime?: Date | undefined;
|
|
2670
2670
|
/**
|
|
2671
2671
|
* <p>The type of <a href="https://docs.aws.amazon.com/datasync/latest/userguide/choose-service-endpoint.html">service endpoint</a> that your agent is connected to.</p>
|
|
2672
2672
|
* @public
|
|
2673
2673
|
*/
|
|
2674
|
-
EndpointType?: EndpointType;
|
|
2674
|
+
EndpointType?: EndpointType | undefined;
|
|
2675
2675
|
/**
|
|
2676
2676
|
* <p>The network configuration that the agent uses when connecting to a <a href="https://docs.aws.amazon.com/datasync/latest/userguide/choose-service-endpoint.html#choose-service-endpoint-vpc">VPC
|
|
2677
2677
|
* service endpoint</a>.</p>
|
|
2678
2678
|
* @public
|
|
2679
2679
|
*/
|
|
2680
|
-
PrivateLinkConfig?: PrivateLinkConfig;
|
|
2680
|
+
PrivateLinkConfig?: PrivateLinkConfig | undefined;
|
|
2681
2681
|
/**
|
|
2682
2682
|
* <p>The platform-related details about the agent, such as the version number.</p>
|
|
2683
2683
|
* @public
|
|
2684
2684
|
*/
|
|
2685
|
-
Platform?: Platform;
|
|
2685
|
+
Platform?: Platform | undefined;
|
|
2686
2686
|
}
|
|
2687
2687
|
/**
|
|
2688
2688
|
* @public
|
|
@@ -2720,32 +2720,32 @@ export interface DescribeDiscoveryJobResponse {
|
|
|
2720
2720
|
* <p>The ARN of the on-premises storage system you're running the discovery job on.</p>
|
|
2721
2721
|
* @public
|
|
2722
2722
|
*/
|
|
2723
|
-
StorageSystemArn?: string;
|
|
2723
|
+
StorageSystemArn?: string | undefined;
|
|
2724
2724
|
/**
|
|
2725
2725
|
* <p>The ARN of the discovery job.</p>
|
|
2726
2726
|
* @public
|
|
2727
2727
|
*/
|
|
2728
|
-
DiscoveryJobArn?: string;
|
|
2728
|
+
DiscoveryJobArn?: string | undefined;
|
|
2729
2729
|
/**
|
|
2730
2730
|
* <p>The number of minutes that the discovery job runs.</p>
|
|
2731
2731
|
* @public
|
|
2732
2732
|
*/
|
|
2733
|
-
CollectionDurationMinutes?: number;
|
|
2733
|
+
CollectionDurationMinutes?: number | undefined;
|
|
2734
2734
|
/**
|
|
2735
2735
|
* <p>Indicates the status of a discovery job. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#discovery-job-statuses-table">Discovery job statuses</a>.</p>
|
|
2736
2736
|
* @public
|
|
2737
2737
|
*/
|
|
2738
|
-
Status?: DiscoveryJobStatus;
|
|
2738
|
+
Status?: DiscoveryJobStatus | undefined;
|
|
2739
2739
|
/**
|
|
2740
2740
|
* <p>The time when the discovery job started.</p>
|
|
2741
2741
|
* @public
|
|
2742
2742
|
*/
|
|
2743
|
-
JobStartTime?: Date;
|
|
2743
|
+
JobStartTime?: Date | undefined;
|
|
2744
2744
|
/**
|
|
2745
2745
|
* <p>The time when the discovery job ended.</p>
|
|
2746
2746
|
* @public
|
|
2747
2747
|
*/
|
|
2748
|
-
JobEndTime?: Date;
|
|
2748
|
+
JobEndTime?: Date | undefined;
|
|
2749
2749
|
}
|
|
2750
2750
|
/**
|
|
2751
2751
|
* @public
|
|
@@ -2765,39 +2765,39 @@ export interface DescribeLocationAzureBlobResponse {
|
|
|
2765
2765
|
* <p>The ARN of your Azure Blob Storage transfer location.</p>
|
|
2766
2766
|
* @public
|
|
2767
2767
|
*/
|
|
2768
|
-
LocationArn?: string;
|
|
2768
|
+
LocationArn?: string | undefined;
|
|
2769
2769
|
/**
|
|
2770
2770
|
* <p>The URL of the Azure Blob Storage container involved in your transfer.</p>
|
|
2771
2771
|
* @public
|
|
2772
2772
|
*/
|
|
2773
|
-
LocationUri?: string;
|
|
2773
|
+
LocationUri?: string | undefined;
|
|
2774
2774
|
/**
|
|
2775
2775
|
* <p>The authentication method DataSync uses to access your Azure Blob Storage. DataSync can access blob storage using a shared access signature (SAS).</p>
|
|
2776
2776
|
* @public
|
|
2777
2777
|
*/
|
|
2778
|
-
AuthenticationType?: AzureBlobAuthenticationType;
|
|
2778
|
+
AuthenticationType?: AzureBlobAuthenticationType | undefined;
|
|
2779
2779
|
/**
|
|
2780
2780
|
* <p>The type of blob that you want your objects or files to be when transferring them into
|
|
2781
2781
|
* Azure Blob Storage. Currently, DataSync only supports moving data into Azure Blob
|
|
2782
2782
|
* Storage as block blobs. For more information on blob types, see the <a href="https://learn.microsoft.com/en-us/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs">Azure Blob Storage documentation</a>.</p>
|
|
2783
2783
|
* @public
|
|
2784
2784
|
*/
|
|
2785
|
-
BlobType?: AzureBlobType;
|
|
2785
|
+
BlobType?: AzureBlobType | undefined;
|
|
2786
2786
|
/**
|
|
2787
2787
|
* <p>The access tier that you want your objects or files transferred into. This only applies when using the location as a transfer destination. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access-tiers">Access tiers</a>.</p>
|
|
2788
2788
|
* @public
|
|
2789
2789
|
*/
|
|
2790
|
-
AccessTier?: AzureAccessTier;
|
|
2790
|
+
AccessTier?: AzureAccessTier | undefined;
|
|
2791
2791
|
/**
|
|
2792
2792
|
* <p>The ARNs of the DataSync agents that can connect with your Azure Blob Storage container.</p>
|
|
2793
2793
|
* @public
|
|
2794
2794
|
*/
|
|
2795
|
-
AgentArns?: string[];
|
|
2795
|
+
AgentArns?: string[] | undefined;
|
|
2796
2796
|
/**
|
|
2797
2797
|
* <p>The time that your Azure Blob Storage transfer location was created.</p>
|
|
2798
2798
|
* @public
|
|
2799
2799
|
*/
|
|
2800
|
-
CreationTime?: Date;
|
|
2800
|
+
CreationTime?: Date | undefined;
|
|
2801
2801
|
}
|
|
2802
2802
|
/**
|
|
2803
2803
|
* <p>DescribeLocationEfsRequest</p>
|
|
@@ -2820,43 +2820,43 @@ export interface DescribeLocationEfsResponse {
|
|
|
2820
2820
|
* <p>The ARN of the Amazon EFS file system location.</p>
|
|
2821
2821
|
* @public
|
|
2822
2822
|
*/
|
|
2823
|
-
LocationArn?: string;
|
|
2823
|
+
LocationArn?: string | undefined;
|
|
2824
2824
|
/**
|
|
2825
2825
|
* <p>The URL of the Amazon EFS file system location.</p>
|
|
2826
2826
|
* @public
|
|
2827
2827
|
*/
|
|
2828
|
-
LocationUri?: string;
|
|
2828
|
+
LocationUri?: string | undefined;
|
|
2829
2829
|
/**
|
|
2830
2830
|
* <p>The subnet and security groups that DataSync uses to connect to one of your
|
|
2831
2831
|
* Amazon EFS file system's <a href="https://docs.aws.amazon.com/efs/latest/ug/accessing-fs.html">mount targets</a>.</p>
|
|
2832
2832
|
* @public
|
|
2833
2833
|
*/
|
|
2834
|
-
Ec2Config?: Ec2Config;
|
|
2834
|
+
Ec2Config?: Ec2Config | undefined;
|
|
2835
2835
|
/**
|
|
2836
2836
|
* <p>The time that the location was created.</p>
|
|
2837
2837
|
* @public
|
|
2838
2838
|
*/
|
|
2839
|
-
CreationTime?: Date;
|
|
2839
|
+
CreationTime?: Date | undefined;
|
|
2840
2840
|
/**
|
|
2841
2841
|
* <p>The ARN of the access point that DataSync uses to access the Amazon EFS
|
|
2842
2842
|
* file system.</p>
|
|
2843
2843
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-efs-location.html#create-efs-location-iam">Accessing restricted file systems</a>.</p>
|
|
2844
2844
|
* @public
|
|
2845
2845
|
*/
|
|
2846
|
-
AccessPointArn?: string;
|
|
2846
|
+
AccessPointArn?: string | undefined;
|
|
2847
2847
|
/**
|
|
2848
2848
|
* <p>The Identity and Access Management (IAM) role that allows DataSync to
|
|
2849
2849
|
* access your Amazon EFS file system.</p>
|
|
2850
2850
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-efs-location.html#create-efs-location-iam-role">Creating a DataSync IAM role for file system access</a>.</p>
|
|
2851
2851
|
* @public
|
|
2852
2852
|
*/
|
|
2853
|
-
FileSystemAccessRoleArn?: string;
|
|
2853
|
+
FileSystemAccessRoleArn?: string | undefined;
|
|
2854
2854
|
/**
|
|
2855
2855
|
* <p>Indicates whether DataSync uses Transport Layer Security (TLS) encryption when
|
|
2856
2856
|
* transferring data to or from the Amazon EFS file system.</p>
|
|
2857
2857
|
* @public
|
|
2858
2858
|
*/
|
|
2859
|
-
InTransitEncryption?: EfsInTransitEncryption;
|
|
2859
|
+
InTransitEncryption?: EfsInTransitEncryption | undefined;
|
|
2860
2860
|
}
|
|
2861
2861
|
/**
|
|
2862
2862
|
* @public
|
|
@@ -2878,23 +2878,23 @@ export interface DescribeLocationFsxLustreResponse {
|
|
|
2878
2878
|
* described.</p>
|
|
2879
2879
|
* @public
|
|
2880
2880
|
*/
|
|
2881
|
-
LocationArn?: string;
|
|
2881
|
+
LocationArn?: string | undefined;
|
|
2882
2882
|
/**
|
|
2883
2883
|
* <p>The URI of the FSx for Lustre location that was described.</p>
|
|
2884
2884
|
* @public
|
|
2885
2885
|
*/
|
|
2886
|
-
LocationUri?: string;
|
|
2886
|
+
LocationUri?: string | undefined;
|
|
2887
2887
|
/**
|
|
2888
2888
|
* <p>The Amazon Resource Names (ARNs) of the security groups that are configured for the
|
|
2889
2889
|
* FSx for Lustre file system.</p>
|
|
2890
2890
|
* @public
|
|
2891
2891
|
*/
|
|
2892
|
-
SecurityGroupArns?: string[];
|
|
2892
|
+
SecurityGroupArns?: string[] | undefined;
|
|
2893
2893
|
/**
|
|
2894
2894
|
* <p>The time that the FSx for Lustre location was created.</p>
|
|
2895
2895
|
* @public
|
|
2896
2896
|
*/
|
|
2897
|
-
CreationTime?: Date;
|
|
2897
|
+
CreationTime?: Date | undefined;
|
|
2898
2898
|
}
|
|
2899
2899
|
/**
|
|
2900
2900
|
* @public
|
|
@@ -2915,41 +2915,41 @@ export interface DescribeLocationFsxOntapResponse {
|
|
|
2915
2915
|
* <p>The time that the location was created.</p>
|
|
2916
2916
|
* @public
|
|
2917
2917
|
*/
|
|
2918
|
-
CreationTime?: Date;
|
|
2918
|
+
CreationTime?: Date | undefined;
|
|
2919
2919
|
/**
|
|
2920
2920
|
* <p>The ARN of the FSx for ONTAP file system location.</p>
|
|
2921
2921
|
* @public
|
|
2922
2922
|
*/
|
|
2923
|
-
LocationArn?: string;
|
|
2923
|
+
LocationArn?: string | undefined;
|
|
2924
2924
|
/**
|
|
2925
2925
|
* <p>The uniform resource identifier (URI) of the FSx for ONTAP file system
|
|
2926
2926
|
* location.</p>
|
|
2927
2927
|
* @public
|
|
2928
2928
|
*/
|
|
2929
|
-
LocationUri?: string;
|
|
2929
|
+
LocationUri?: string | undefined;
|
|
2930
2930
|
/**
|
|
2931
2931
|
* <p>Specifies the data transfer protocol that DataSync uses to access your
|
|
2932
2932
|
* Amazon FSx file system.</p>
|
|
2933
2933
|
* @public
|
|
2934
2934
|
*/
|
|
2935
|
-
Protocol?: FsxProtocol;
|
|
2935
|
+
Protocol?: FsxProtocol | undefined;
|
|
2936
2936
|
/**
|
|
2937
2937
|
* <p>The security groups that DataSync uses to access your FSx for ONTAP
|
|
2938
2938
|
* file system.</p>
|
|
2939
2939
|
* @public
|
|
2940
2940
|
*/
|
|
2941
|
-
SecurityGroupArns?: string[];
|
|
2941
|
+
SecurityGroupArns?: string[] | undefined;
|
|
2942
2942
|
/**
|
|
2943
2943
|
* <p>The ARN of the storage virtual machine (SVM) on your FSx for ONTAP file system
|
|
2944
2944
|
* where you're copying data to or from.</p>
|
|
2945
2945
|
* @public
|
|
2946
2946
|
*/
|
|
2947
|
-
StorageVirtualMachineArn?: string;
|
|
2947
|
+
StorageVirtualMachineArn?: string | undefined;
|
|
2948
2948
|
/**
|
|
2949
2949
|
* <p>The ARN of the FSx for ONTAP file system.</p>
|
|
2950
2950
|
* @public
|
|
2951
2951
|
*/
|
|
2952
|
-
FsxFilesystemArn?: string;
|
|
2952
|
+
FsxFilesystemArn?: string | undefined;
|
|
2953
2953
|
}
|
|
2954
2954
|
/**
|
|
2955
2955
|
* @public
|
|
@@ -2969,7 +2969,7 @@ export interface DescribeLocationFsxOpenZfsResponse {
|
|
|
2969
2969
|
* <p>The ARN of the FSx for OpenZFS location that was described.</p>
|
|
2970
2970
|
* @public
|
|
2971
2971
|
*/
|
|
2972
|
-
LocationArn?: string;
|
|
2972
|
+
LocationArn?: string | undefined;
|
|
2973
2973
|
/**
|
|
2974
2974
|
* <p>The uniform resource identifier (URI) of the FSx for OpenZFS location that was
|
|
2975
2975
|
* described.</p>
|
|
@@ -2977,23 +2977,23 @@ export interface DescribeLocationFsxOpenZfsResponse {
|
|
|
2977
2977
|
* </p>
|
|
2978
2978
|
* @public
|
|
2979
2979
|
*/
|
|
2980
|
-
LocationUri?: string;
|
|
2980
|
+
LocationUri?: string | undefined;
|
|
2981
2981
|
/**
|
|
2982
2982
|
* <p>The ARNs of the security groups that are configured for the FSx for OpenZFS file
|
|
2983
2983
|
* system.</p>
|
|
2984
2984
|
* @public
|
|
2985
2985
|
*/
|
|
2986
|
-
SecurityGroupArns?: string[];
|
|
2986
|
+
SecurityGroupArns?: string[] | undefined;
|
|
2987
2987
|
/**
|
|
2988
2988
|
* <p>The type of protocol that DataSync uses to access your file system.</p>
|
|
2989
2989
|
* @public
|
|
2990
2990
|
*/
|
|
2991
|
-
Protocol?: FsxProtocol;
|
|
2991
|
+
Protocol?: FsxProtocol | undefined;
|
|
2992
2992
|
/**
|
|
2993
2993
|
* <p>The time that the FSx for OpenZFS location was created.</p>
|
|
2994
2994
|
* @public
|
|
2995
2995
|
*/
|
|
2996
|
-
CreationTime?: Date;
|
|
2996
|
+
CreationTime?: Date | undefined;
|
|
2997
2997
|
}
|
|
2998
2998
|
/**
|
|
2999
2999
|
* @public
|
|
@@ -3013,12 +3013,12 @@ export interface DescribeLocationFsxWindowsResponse {
|
|
|
3013
3013
|
* <p>The ARN of the FSx for Windows File Server location.</p>
|
|
3014
3014
|
* @public
|
|
3015
3015
|
*/
|
|
3016
|
-
LocationArn?: string;
|
|
3016
|
+
LocationArn?: string | undefined;
|
|
3017
3017
|
/**
|
|
3018
3018
|
* <p>The uniform resource identifier (URI) of the FSx for Windows File Server location.</p>
|
|
3019
3019
|
* @public
|
|
3020
3020
|
*/
|
|
3021
|
-
LocationUri?: string;
|
|
3021
|
+
LocationUri?: string | undefined;
|
|
3022
3022
|
/**
|
|
3023
3023
|
* <p>The ARNs of the Amazon EC2 security groups that provide access to your file
|
|
3024
3024
|
* system's preferred subnet.</p>
|
|
@@ -3027,24 +3027,24 @@ export interface DescribeLocationFsxWindowsResponse {
|
|
|
3027
3027
|
* </a>.</p>
|
|
3028
3028
|
* @public
|
|
3029
3029
|
*/
|
|
3030
|
-
SecurityGroupArns?: string[];
|
|
3030
|
+
SecurityGroupArns?: string[] | undefined;
|
|
3031
3031
|
/**
|
|
3032
3032
|
* <p>The time that the FSx for Windows File Server location was created.</p>
|
|
3033
3033
|
* @public
|
|
3034
3034
|
*/
|
|
3035
|
-
CreationTime?: Date;
|
|
3035
|
+
CreationTime?: Date | undefined;
|
|
3036
3036
|
/**
|
|
3037
3037
|
* <p>The user with the permissions to mount and access the FSx for Windows File Server file
|
|
3038
3038
|
* system.</p>
|
|
3039
3039
|
* @public
|
|
3040
3040
|
*/
|
|
3041
|
-
User?: string;
|
|
3041
|
+
User?: string | undefined;
|
|
3042
3042
|
/**
|
|
3043
3043
|
* <p>The name of the Microsoft Active Directory domain that the FSx for Windows File Server file
|
|
3044
3044
|
* system belongs to.</p>
|
|
3045
3045
|
* @public
|
|
3046
3046
|
*/
|
|
3047
|
-
Domain?: string;
|
|
3047
|
+
Domain?: string | undefined;
|
|
3048
3048
|
}
|
|
3049
3049
|
/**
|
|
3050
3050
|
* @public
|
|
@@ -3064,66 +3064,66 @@ export interface DescribeLocationHdfsResponse {
|
|
|
3064
3064
|
* <p>The ARN of the HDFS location.</p>
|
|
3065
3065
|
* @public
|
|
3066
3066
|
*/
|
|
3067
|
-
LocationArn?: string;
|
|
3067
|
+
LocationArn?: string | undefined;
|
|
3068
3068
|
/**
|
|
3069
3069
|
* <p>The URI of the HDFS location.</p>
|
|
3070
3070
|
* @public
|
|
3071
3071
|
*/
|
|
3072
|
-
LocationUri?: string;
|
|
3072
|
+
LocationUri?: string | undefined;
|
|
3073
3073
|
/**
|
|
3074
3074
|
* <p>The NameNode that manages the HDFS namespace. </p>
|
|
3075
3075
|
* @public
|
|
3076
3076
|
*/
|
|
3077
|
-
NameNodes?: HdfsNameNode[];
|
|
3077
|
+
NameNodes?: HdfsNameNode[] | undefined;
|
|
3078
3078
|
/**
|
|
3079
3079
|
* <p>The size of the data blocks to write into the HDFS cluster. </p>
|
|
3080
3080
|
* @public
|
|
3081
3081
|
*/
|
|
3082
|
-
BlockSize?: number;
|
|
3082
|
+
BlockSize?: number | undefined;
|
|
3083
3083
|
/**
|
|
3084
3084
|
* <p>The number of DataNodes to replicate the data to when writing to the HDFS cluster. </p>
|
|
3085
3085
|
* @public
|
|
3086
3086
|
*/
|
|
3087
|
-
ReplicationFactor?: number;
|
|
3087
|
+
ReplicationFactor?: number | undefined;
|
|
3088
3088
|
/**
|
|
3089
3089
|
* <p> The URI of the HDFS cluster's Key Management Server (KMS). </p>
|
|
3090
3090
|
* @public
|
|
3091
3091
|
*/
|
|
3092
|
-
KmsKeyProviderUri?: string;
|
|
3092
|
+
KmsKeyProviderUri?: string | undefined;
|
|
3093
3093
|
/**
|
|
3094
3094
|
* <p>The Quality of Protection (QOP) configuration, which specifies the Remote Procedure Call
|
|
3095
3095
|
* (RPC) and data transfer protection settings configured on the HDFS cluster. </p>
|
|
3096
3096
|
* @public
|
|
3097
3097
|
*/
|
|
3098
|
-
QopConfiguration?: QopConfiguration;
|
|
3098
|
+
QopConfiguration?: QopConfiguration | undefined;
|
|
3099
3099
|
/**
|
|
3100
3100
|
* <p>The type of authentication used to determine the identity of the user. </p>
|
|
3101
3101
|
* @public
|
|
3102
3102
|
*/
|
|
3103
|
-
AuthenticationType?: HdfsAuthenticationType;
|
|
3103
|
+
AuthenticationType?: HdfsAuthenticationType | undefined;
|
|
3104
3104
|
/**
|
|
3105
3105
|
* <p>The user name to identify the client on the host operating system. This parameter is used
|
|
3106
3106
|
* if the <code>AuthenticationType</code> is defined as <code>SIMPLE</code>.</p>
|
|
3107
3107
|
* @public
|
|
3108
3108
|
*/
|
|
3109
|
-
SimpleUser?: string;
|
|
3109
|
+
SimpleUser?: string | undefined;
|
|
3110
3110
|
/**
|
|
3111
3111
|
* <p>The Kerberos principal with access to the files and folders on the HDFS cluster. This
|
|
3112
3112
|
* parameter is used if the <code>AuthenticationType</code> is defined as
|
|
3113
3113
|
* <code>KERBEROS</code>.</p>
|
|
3114
3114
|
* @public
|
|
3115
3115
|
*/
|
|
3116
|
-
KerberosPrincipal?: string;
|
|
3116
|
+
KerberosPrincipal?: string | undefined;
|
|
3117
3117
|
/**
|
|
3118
3118
|
* <p>The ARNs of the DataSync agents that can connect with your HDFS cluster.</p>
|
|
3119
3119
|
* @public
|
|
3120
3120
|
*/
|
|
3121
|
-
AgentArns?: string[];
|
|
3121
|
+
AgentArns?: string[] | undefined;
|
|
3122
3122
|
/**
|
|
3123
3123
|
* <p>The time that the HDFS location was created.</p>
|
|
3124
3124
|
* @public
|
|
3125
3125
|
*/
|
|
3126
|
-
CreationTime?: Date;
|
|
3126
|
+
CreationTime?: Date | undefined;
|
|
3127
3127
|
}
|
|
3128
3128
|
/**
|
|
3129
3129
|
* <p>DescribeLocationNfsRequest</p>
|
|
@@ -3146,28 +3146,28 @@ export interface DescribeLocationNfsResponse {
|
|
|
3146
3146
|
* <p>The ARN of the NFS location.</p>
|
|
3147
3147
|
* @public
|
|
3148
3148
|
*/
|
|
3149
|
-
LocationArn?: string;
|
|
3149
|
+
LocationArn?: string | undefined;
|
|
3150
3150
|
/**
|
|
3151
3151
|
* <p>The URI of the NFS location.</p>
|
|
3152
3152
|
* @public
|
|
3153
3153
|
*/
|
|
3154
|
-
LocationUri?: string;
|
|
3154
|
+
LocationUri?: string | undefined;
|
|
3155
3155
|
/**
|
|
3156
3156
|
* <p>The DataSync agents that can connect to your Network File System (NFS)
|
|
3157
3157
|
* file server.</p>
|
|
3158
3158
|
* @public
|
|
3159
3159
|
*/
|
|
3160
|
-
OnPremConfig?: OnPremConfig;
|
|
3160
|
+
OnPremConfig?: OnPremConfig | undefined;
|
|
3161
3161
|
/**
|
|
3162
3162
|
* <p>The mount options that DataSync uses to mount your NFS file server.</p>
|
|
3163
3163
|
* @public
|
|
3164
3164
|
*/
|
|
3165
|
-
MountOptions?: NfsMountOptions;
|
|
3165
|
+
MountOptions?: NfsMountOptions | undefined;
|
|
3166
3166
|
/**
|
|
3167
3167
|
* <p>The time when the NFS location was created.</p>
|
|
3168
3168
|
* @public
|
|
3169
3169
|
*/
|
|
3170
|
-
CreationTime?: Date;
|
|
3170
|
+
CreationTime?: Date | undefined;
|
|
3171
3171
|
}
|
|
3172
3172
|
/**
|
|
3173
3173
|
* <p>DescribeLocationObjectStorageRequest</p>
|
|
@@ -3189,46 +3189,46 @@ export interface DescribeLocationObjectStorageResponse {
|
|
|
3189
3189
|
* <p>The ARN of the object storage system location.</p>
|
|
3190
3190
|
* @public
|
|
3191
3191
|
*/
|
|
3192
|
-
LocationArn?: string;
|
|
3192
|
+
LocationArn?: string | undefined;
|
|
3193
3193
|
/**
|
|
3194
3194
|
* <p>The URI of the object storage system location.</p>
|
|
3195
3195
|
* @public
|
|
3196
3196
|
*/
|
|
3197
|
-
LocationUri?: string;
|
|
3197
|
+
LocationUri?: string | undefined;
|
|
3198
3198
|
/**
|
|
3199
3199
|
* <p>The access key (for example, a user name) required to authenticate with the object storage
|
|
3200
3200
|
* system.</p>
|
|
3201
3201
|
* @public
|
|
3202
3202
|
*/
|
|
3203
|
-
AccessKey?: string;
|
|
3203
|
+
AccessKey?: string | undefined;
|
|
3204
3204
|
/**
|
|
3205
3205
|
* <p>The port that your object storage server accepts inbound network traffic on (for example,
|
|
3206
3206
|
* port 443).</p>
|
|
3207
3207
|
* @public
|
|
3208
3208
|
*/
|
|
3209
|
-
ServerPort?: number;
|
|
3209
|
+
ServerPort?: number | undefined;
|
|
3210
3210
|
/**
|
|
3211
3211
|
* <p>The protocol that your object storage system uses to communicate.</p>
|
|
3212
3212
|
* @public
|
|
3213
3213
|
*/
|
|
3214
|
-
ServerProtocol?: ObjectStorageServerProtocol;
|
|
3214
|
+
ServerProtocol?: ObjectStorageServerProtocol | undefined;
|
|
3215
3215
|
/**
|
|
3216
3216
|
* <p>The ARNs of the DataSync agents that can connect with your object storage
|
|
3217
3217
|
* system.</p>
|
|
3218
3218
|
* @public
|
|
3219
3219
|
*/
|
|
3220
|
-
AgentArns?: string[];
|
|
3220
|
+
AgentArns?: string[] | undefined;
|
|
3221
3221
|
/**
|
|
3222
3222
|
* <p>The time that the location was created.</p>
|
|
3223
3223
|
* @public
|
|
3224
3224
|
*/
|
|
3225
|
-
CreationTime?: Date;
|
|
3225
|
+
CreationTime?: Date | undefined;
|
|
3226
3226
|
/**
|
|
3227
3227
|
* <p>The certificate chain for DataSync to authenticate with your object storage
|
|
3228
3228
|
* system if the system uses a private or self-signed certificate authority (CA).</p>
|
|
3229
3229
|
* @public
|
|
3230
3230
|
*/
|
|
3231
|
-
ServerCertificate?: Uint8Array;
|
|
3231
|
+
ServerCertificate?: Uint8Array | undefined;
|
|
3232
3232
|
}
|
|
3233
3233
|
/**
|
|
3234
3234
|
* <p>DescribeLocationS3Request</p>
|
|
@@ -3250,12 +3250,12 @@ export interface DescribeLocationS3Response {
|
|
|
3250
3250
|
* <p>The ARN of the Amazon S3 location.</p>
|
|
3251
3251
|
* @public
|
|
3252
3252
|
*/
|
|
3253
|
-
LocationArn?: string;
|
|
3253
|
+
LocationArn?: string | undefined;
|
|
3254
3254
|
/**
|
|
3255
3255
|
* <p>The URL of the Amazon S3 location that was described.</p>
|
|
3256
3256
|
* @public
|
|
3257
3257
|
*/
|
|
3258
|
-
LocationUri?: string;
|
|
3258
|
+
LocationUri?: string | undefined;
|
|
3259
3259
|
/**
|
|
3260
3260
|
* <p>When Amazon S3 is a destination location, this is the storage class that you chose
|
|
3261
3261
|
* for your objects.</p>
|
|
@@ -3264,14 +3264,14 @@ export interface DescribeLocationS3Response {
|
|
|
3264
3264
|
* considerations with Amazon S3 transfers</a>.</p>
|
|
3265
3265
|
* @public
|
|
3266
3266
|
*/
|
|
3267
|
-
S3StorageClass?: S3StorageClass;
|
|
3267
|
+
S3StorageClass?: S3StorageClass | undefined;
|
|
3268
3268
|
/**
|
|
3269
3269
|
* <p>Specifies the Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that DataSync uses to access your S3 bucket.</p>
|
|
3270
3270
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#create-s3-location-access">Accessing
|
|
3271
3271
|
* S3 buckets</a>.</p>
|
|
3272
3272
|
* @public
|
|
3273
3273
|
*/
|
|
3274
|
-
S3Config?: S3Config;
|
|
3274
|
+
S3Config?: S3Config | undefined;
|
|
3275
3275
|
/**
|
|
3276
3276
|
* <p>The ARNs of the DataSync agents deployed on your Outpost when using working with
|
|
3277
3277
|
* Amazon S3 on Outposts.</p>
|
|
@@ -3279,12 +3279,12 @@ export interface DescribeLocationS3Response {
|
|
|
3279
3279
|
* on Outposts</a>.</p>
|
|
3280
3280
|
* @public
|
|
3281
3281
|
*/
|
|
3282
|
-
AgentArns?: string[];
|
|
3282
|
+
AgentArns?: string[] | undefined;
|
|
3283
3283
|
/**
|
|
3284
3284
|
* <p>The time that the Amazon S3 location was created.</p>
|
|
3285
3285
|
* @public
|
|
3286
3286
|
*/
|
|
3287
|
-
CreationTime?: Date;
|
|
3287
|
+
CreationTime?: Date | undefined;
|
|
3288
3288
|
}
|
|
3289
3289
|
/**
|
|
3290
3290
|
* <p>DescribeLocationSmbRequest</p>
|
|
@@ -3307,40 +3307,40 @@ export interface DescribeLocationSmbResponse {
|
|
|
3307
3307
|
* <p>The ARN of the SMB location.</p>
|
|
3308
3308
|
* @public
|
|
3309
3309
|
*/
|
|
3310
|
-
LocationArn?: string;
|
|
3310
|
+
LocationArn?: string | undefined;
|
|
3311
3311
|
/**
|
|
3312
3312
|
* <p>The URI of the SMB location.</p>
|
|
3313
3313
|
* @public
|
|
3314
3314
|
*/
|
|
3315
|
-
LocationUri?: string;
|
|
3315
|
+
LocationUri?: string | undefined;
|
|
3316
3316
|
/**
|
|
3317
3317
|
* <p>The ARNs of the DataSync agents that can connect with your SMB file
|
|
3318
3318
|
* server.</p>
|
|
3319
3319
|
* @public
|
|
3320
3320
|
*/
|
|
3321
|
-
AgentArns?: string[];
|
|
3321
|
+
AgentArns?: string[] | undefined;
|
|
3322
3322
|
/**
|
|
3323
3323
|
* <p>The user that can mount and access the files, folders, and file metadata in your SMB file
|
|
3324
3324
|
* server.</p>
|
|
3325
3325
|
* @public
|
|
3326
3326
|
*/
|
|
3327
|
-
User?: string;
|
|
3327
|
+
User?: string | undefined;
|
|
3328
3328
|
/**
|
|
3329
3329
|
* <p>The name of the Microsoft Active Directory domain that the SMB file server belongs
|
|
3330
3330
|
* to.</p>
|
|
3331
3331
|
* @public
|
|
3332
3332
|
*/
|
|
3333
|
-
Domain?: string;
|
|
3333
|
+
Domain?: string | undefined;
|
|
3334
3334
|
/**
|
|
3335
3335
|
* <p>The protocol that DataSync use to access your SMB file.</p>
|
|
3336
3336
|
* @public
|
|
3337
3337
|
*/
|
|
3338
|
-
MountOptions?: SmbMountOptions;
|
|
3338
|
+
MountOptions?: SmbMountOptions | undefined;
|
|
3339
3339
|
/**
|
|
3340
3340
|
* <p>The time that the SMB location was created.</p>
|
|
3341
3341
|
* @public
|
|
3342
3342
|
*/
|
|
3343
|
-
CreationTime?: Date;
|
|
3343
|
+
CreationTime?: Date | undefined;
|
|
3344
3344
|
}
|
|
3345
3345
|
/**
|
|
3346
3346
|
* @public
|
|
@@ -3374,13 +3374,13 @@ export interface DescribeStorageSystemResponse {
|
|
|
3374
3374
|
* <p>The ARN of the on-premises storage system that the discovery job looked at.</p>
|
|
3375
3375
|
* @public
|
|
3376
3376
|
*/
|
|
3377
|
-
StorageSystemArn?: string;
|
|
3377
|
+
StorageSystemArn?: string | undefined;
|
|
3378
3378
|
/**
|
|
3379
3379
|
* <p>The server name and network port required to connect with your on-premises storage
|
|
3380
3380
|
* system's management interface.</p>
|
|
3381
3381
|
* @public
|
|
3382
3382
|
*/
|
|
3383
|
-
ServerConfiguration?: DiscoveryServerConfiguration;
|
|
3383
|
+
ServerConfiguration?: DiscoveryServerConfiguration | undefined;
|
|
3384
3384
|
/**
|
|
3385
3385
|
* <p>The type of on-premises storage system.</p>
|
|
3386
3386
|
* <note>
|
|
@@ -3391,46 +3391,46 @@ export interface DescribeStorageSystemResponse {
|
|
|
3391
3391
|
* </note>
|
|
3392
3392
|
* @public
|
|
3393
3393
|
*/
|
|
3394
|
-
SystemType?: DiscoverySystemType;
|
|
3394
|
+
SystemType?: DiscoverySystemType | undefined;
|
|
3395
3395
|
/**
|
|
3396
3396
|
* <p>The ARN of the DataSync agent that connects to and reads from your on-premises storage
|
|
3397
3397
|
* system.</p>
|
|
3398
3398
|
* @public
|
|
3399
3399
|
*/
|
|
3400
|
-
AgentArns?: string[];
|
|
3400
|
+
AgentArns?: string[] | undefined;
|
|
3401
3401
|
/**
|
|
3402
3402
|
* <p>The name that you gave your on-premises storage system when adding it to DataSync Discovery.</p>
|
|
3403
3403
|
* @public
|
|
3404
3404
|
*/
|
|
3405
|
-
Name?: string;
|
|
3405
|
+
Name?: string | undefined;
|
|
3406
3406
|
/**
|
|
3407
3407
|
* <p>Describes the connectivity error that the DataSync agent is encountering with your
|
|
3408
3408
|
* on-premises storage system.</p>
|
|
3409
3409
|
* @public
|
|
3410
3410
|
*/
|
|
3411
|
-
ErrorMessage?: string;
|
|
3411
|
+
ErrorMessage?: string | undefined;
|
|
3412
3412
|
/**
|
|
3413
3413
|
* <p>Indicates whether your DataSync agent can connect to your on-premises storage system.</p>
|
|
3414
3414
|
* @public
|
|
3415
3415
|
*/
|
|
3416
|
-
ConnectivityStatus?: StorageSystemConnectivityStatus;
|
|
3416
|
+
ConnectivityStatus?: StorageSystemConnectivityStatus | undefined;
|
|
3417
3417
|
/**
|
|
3418
3418
|
* <p>The ARN of the Amazon CloudWatch log group that's used to monitor and log discovery
|
|
3419
3419
|
* job events.</p>
|
|
3420
3420
|
* @public
|
|
3421
3421
|
*/
|
|
3422
|
-
CloudWatchLogGroupArn?: string;
|
|
3422
|
+
CloudWatchLogGroupArn?: string | undefined;
|
|
3423
3423
|
/**
|
|
3424
3424
|
* <p>The time when you added the on-premises storage system to DataSync Discovery.</p>
|
|
3425
3425
|
* @public
|
|
3426
3426
|
*/
|
|
3427
|
-
CreationTime?: Date;
|
|
3427
|
+
CreationTime?: Date | undefined;
|
|
3428
3428
|
/**
|
|
3429
3429
|
* <p>The ARN of the secret that stores your on-premises storage system's credentials. DataSync Discovery
|
|
3430
3430
|
* stores these credentials in <a href="https://docs.aws.amazon.com/datasync/latest/userguide/discovery-configure-storage.html#discovery-add-storage">Secrets Manager</a>.</p>
|
|
3431
3431
|
* @public
|
|
3432
3432
|
*/
|
|
3433
|
-
SecretsManagerArn?: string;
|
|
3433
|
+
SecretsManagerArn?: string | undefined;
|
|
3434
3434
|
}
|
|
3435
3435
|
/**
|
|
3436
3436
|
* @public
|
|
@@ -3471,24 +3471,24 @@ export interface DescribeStorageSystemResourceMetricsRequest {
|
|
|
3471
3471
|
* gathered during a certain time frame, use this parameter with <code>EndTime</code>.</p>
|
|
3472
3472
|
* @public
|
|
3473
3473
|
*/
|
|
3474
|
-
StartTime?: Date;
|
|
3474
|
+
StartTime?: Date | undefined;
|
|
3475
3475
|
/**
|
|
3476
3476
|
* <p>Specifies a time within the total duration that the discovery job ran. To see information
|
|
3477
3477
|
* gathered during a certain time frame, use this parameter with <code>StartTime</code>.</p>
|
|
3478
3478
|
* @public
|
|
3479
3479
|
*/
|
|
3480
|
-
EndTime?: Date;
|
|
3480
|
+
EndTime?: Date | undefined;
|
|
3481
3481
|
/**
|
|
3482
3482
|
* <p>Specifies how many results that you want in the response.</p>
|
|
3483
3483
|
* @public
|
|
3484
3484
|
*/
|
|
3485
|
-
MaxResults?: number;
|
|
3485
|
+
MaxResults?: number | undefined;
|
|
3486
3486
|
/**
|
|
3487
3487
|
* <p>Specifies an opaque string that indicates the position to begin the next list of results
|
|
3488
3488
|
* in the response.</p>
|
|
3489
3489
|
* @public
|
|
3490
3490
|
*/
|
|
3491
|
-
NextToken?: string;
|
|
3491
|
+
NextToken?: string | undefined;
|
|
3492
3492
|
}
|
|
3493
3493
|
/**
|
|
3494
3494
|
* <p>The IOPS peaks for an on-premises storage system
|
|
@@ -3501,22 +3501,22 @@ export interface IOPS {
|
|
|
3501
3501
|
* <p>Peak IOPS related to read operations.</p>
|
|
3502
3502
|
* @public
|
|
3503
3503
|
*/
|
|
3504
|
-
Read?: number;
|
|
3504
|
+
Read?: number | undefined;
|
|
3505
3505
|
/**
|
|
3506
3506
|
* <p>Peak IOPS related to write operations.</p>
|
|
3507
3507
|
* @public
|
|
3508
3508
|
*/
|
|
3509
|
-
Write?: number;
|
|
3509
|
+
Write?: number | undefined;
|
|
3510
3510
|
/**
|
|
3511
3511
|
* <p>Peak IOPS unrelated to read and write operations.</p>
|
|
3512
3512
|
* @public
|
|
3513
3513
|
*/
|
|
3514
|
-
Other?: number;
|
|
3514
|
+
Other?: number | undefined;
|
|
3515
3515
|
/**
|
|
3516
3516
|
* <p>Peak total IOPS on your on-premises storage system resource.</p>
|
|
3517
3517
|
* @public
|
|
3518
3518
|
*/
|
|
3519
|
-
Total?: number;
|
|
3519
|
+
Total?: number | undefined;
|
|
3520
3520
|
}
|
|
3521
3521
|
/**
|
|
3522
3522
|
* <p>The latency peaks for an on-premises storage system
|
|
@@ -3529,17 +3529,17 @@ export interface Latency {
|
|
|
3529
3529
|
* <p>Peak latency for read operations.</p>
|
|
3530
3530
|
* @public
|
|
3531
3531
|
*/
|
|
3532
|
-
Read?: number;
|
|
3532
|
+
Read?: number | undefined;
|
|
3533
3533
|
/**
|
|
3534
3534
|
* <p>Peak latency for write operations.</p>
|
|
3535
3535
|
* @public
|
|
3536
3536
|
*/
|
|
3537
|
-
Write?: number;
|
|
3537
|
+
Write?: number | undefined;
|
|
3538
3538
|
/**
|
|
3539
3539
|
* <p>Peak latency for operations unrelated to read and write operations.</p>
|
|
3540
3540
|
* @public
|
|
3541
3541
|
*/
|
|
3542
|
-
Other?: number;
|
|
3542
|
+
Other?: number | undefined;
|
|
3543
3543
|
}
|
|
3544
3544
|
/**
|
|
3545
3545
|
* <p>The throughput peaks for an on-premises storage system volume. Each data point represents
|
|
@@ -3551,22 +3551,22 @@ export interface Throughput {
|
|
|
3551
3551
|
* <p>Peak throughput related to read operations.</p>
|
|
3552
3552
|
* @public
|
|
3553
3553
|
*/
|
|
3554
|
-
Read?: number;
|
|
3554
|
+
Read?: number | undefined;
|
|
3555
3555
|
/**
|
|
3556
3556
|
* <p>Peak throughput related to write operations.</p>
|
|
3557
3557
|
* @public
|
|
3558
3558
|
*/
|
|
3559
|
-
Write?: number;
|
|
3559
|
+
Write?: number | undefined;
|
|
3560
3560
|
/**
|
|
3561
3561
|
* <p>Peak throughput unrelated to read and write operations.</p>
|
|
3562
3562
|
* @public
|
|
3563
3563
|
*/
|
|
3564
|
-
Other?: number;
|
|
3564
|
+
Other?: number | undefined;
|
|
3565
3565
|
/**
|
|
3566
3566
|
* <p>Peak total throughput on your on-premises storage system resource.</p>
|
|
3567
3567
|
* @public
|
|
3568
3568
|
*/
|
|
3569
|
-
Total?: number;
|
|
3569
|
+
Total?: number | undefined;
|
|
3570
3570
|
}
|
|
3571
3571
|
/**
|
|
3572
3572
|
* <p>The types of performance data that DataSync Discovery collects about an on-premises storage system
|
|
@@ -3579,19 +3579,19 @@ export interface P95Metrics {
|
|
|
3579
3579
|
* 95th percentile peak value during a 1-hour interval.</p>
|
|
3580
3580
|
* @public
|
|
3581
3581
|
*/
|
|
3582
|
-
IOPS?: IOPS;
|
|
3582
|
+
IOPS?: IOPS | undefined;
|
|
3583
3583
|
/**
|
|
3584
3584
|
* <p>The throughput peaks for an on-premises storage system resource. Each data point
|
|
3585
3585
|
* represents the 95th percentile peak value during a 1-hour interval.</p>
|
|
3586
3586
|
* @public
|
|
3587
3587
|
*/
|
|
3588
|
-
Throughput?: Throughput;
|
|
3588
|
+
Throughput?: Throughput | undefined;
|
|
3589
3589
|
/**
|
|
3590
3590
|
* <p>The latency peaks for an on-premises storage system resource. Each data point represents
|
|
3591
3591
|
* the 95th percentile peak value during a 1-hour interval.</p>
|
|
3592
3592
|
* @public
|
|
3593
3593
|
*/
|
|
3594
|
-
Latency?: Latency;
|
|
3594
|
+
Latency?: Latency | undefined;
|
|
3595
3595
|
}
|
|
3596
3596
|
/**
|
|
3597
3597
|
* <p>Information, including performance data and capacity usage, provided by DataSync Discovery about a
|
|
@@ -3604,29 +3604,29 @@ export interface ResourceMetrics {
|
|
|
3604
3604
|
* resource.</p>
|
|
3605
3605
|
* @public
|
|
3606
3606
|
*/
|
|
3607
|
-
Timestamp?: Date;
|
|
3607
|
+
Timestamp?: Date | undefined;
|
|
3608
3608
|
/**
|
|
3609
3609
|
* <p>The types of performance data that DataSync Discovery collects about the on-premises storage system
|
|
3610
3610
|
* resource.</p>
|
|
3611
3611
|
* @public
|
|
3612
3612
|
*/
|
|
3613
|
-
P95Metrics?: P95Metrics;
|
|
3613
|
+
P95Metrics?: P95Metrics | undefined;
|
|
3614
3614
|
/**
|
|
3615
3615
|
* <p>The storage capacity of the on-premises storage system resource.</p>
|
|
3616
3616
|
* @public
|
|
3617
3617
|
*/
|
|
3618
|
-
Capacity?: Capacity;
|
|
3618
|
+
Capacity?: Capacity | undefined;
|
|
3619
3619
|
/**
|
|
3620
3620
|
* <p>The universally unique identifier (UUID) of the on-premises storage system
|
|
3621
3621
|
* resource.</p>
|
|
3622
3622
|
* @public
|
|
3623
3623
|
*/
|
|
3624
|
-
ResourceId?: string;
|
|
3624
|
+
ResourceId?: string | undefined;
|
|
3625
3625
|
/**
|
|
3626
3626
|
* <p>The type of on-premises storage system resource.</p>
|
|
3627
3627
|
* @public
|
|
3628
3628
|
*/
|
|
3629
|
-
ResourceType?: DiscoveryResourceType;
|
|
3629
|
+
ResourceType?: DiscoveryResourceType | undefined;
|
|
3630
3630
|
}
|
|
3631
3631
|
/**
|
|
3632
3632
|
* @public
|
|
@@ -3636,13 +3636,13 @@ export interface DescribeStorageSystemResourceMetricsResponse {
|
|
|
3636
3636
|
* <p>The details that your discovery job collected about your storage system resource.</p>
|
|
3637
3637
|
* @public
|
|
3638
3638
|
*/
|
|
3639
|
-
Metrics?: ResourceMetrics[];
|
|
3639
|
+
Metrics?: ResourceMetrics[] | undefined;
|
|
3640
3640
|
/**
|
|
3641
3641
|
* <p>The opaque string that indicates the position to begin the next list of results in the
|
|
3642
3642
|
* response.</p>
|
|
3643
3643
|
* @public
|
|
3644
3644
|
*/
|
|
3645
|
-
NextToken?: string;
|
|
3645
|
+
NextToken?: string | undefined;
|
|
3646
3646
|
}
|
|
3647
3647
|
/**
|
|
3648
3648
|
* @public
|
|
@@ -3676,25 +3676,25 @@ export interface DescribeStorageSystemResourcesRequest {
|
|
|
3676
3676
|
* <code>Filter</code> parameter.</p>
|
|
3677
3677
|
* @public
|
|
3678
3678
|
*/
|
|
3679
|
-
ResourceIds?: string[];
|
|
3679
|
+
ResourceIds?: string[] | undefined;
|
|
3680
3680
|
/**
|
|
3681
3681
|
* <p>Filters the storage system resources that you want returned. For example, this might be
|
|
3682
3682
|
* volumes associated with a specific storage virtual machine (SVM).</p>
|
|
3683
3683
|
* @public
|
|
3684
3684
|
*/
|
|
3685
|
-
Filter?: Partial<Record<DiscoveryResourceFilter, string[]
|
|
3685
|
+
Filter?: Partial<Record<DiscoveryResourceFilter, string[]>> | undefined;
|
|
3686
3686
|
/**
|
|
3687
3687
|
* <p>Specifies the maximum number of storage system resources that you want to list in a
|
|
3688
3688
|
* response.</p>
|
|
3689
3689
|
* @public
|
|
3690
3690
|
*/
|
|
3691
|
-
MaxResults?: number;
|
|
3691
|
+
MaxResults?: number | undefined;
|
|
3692
3692
|
/**
|
|
3693
3693
|
* <p>Specifies an opaque string that indicates the position to begin the next list of results
|
|
3694
3694
|
* in the response.</p>
|
|
3695
3695
|
* @public
|
|
3696
3696
|
*/
|
|
3697
|
-
NextToken?: string;
|
|
3697
|
+
NextToken?: string | undefined;
|
|
3698
3698
|
}
|
|
3699
3699
|
/**
|
|
3700
3700
|
* <p>The performance data that DataSync Discovery collects about an on-premises storage system
|
|
@@ -3706,57 +3706,57 @@ export interface MaxP95Performance {
|
|
|
3706
3706
|
* <p>Peak IOPS related to read operations.</p>
|
|
3707
3707
|
* @public
|
|
3708
3708
|
*/
|
|
3709
|
-
IopsRead?: number;
|
|
3709
|
+
IopsRead?: number | undefined;
|
|
3710
3710
|
/**
|
|
3711
3711
|
* <p>Peak IOPS related to write operations.</p>
|
|
3712
3712
|
* @public
|
|
3713
3713
|
*/
|
|
3714
|
-
IopsWrite?: number;
|
|
3714
|
+
IopsWrite?: number | undefined;
|
|
3715
3715
|
/**
|
|
3716
3716
|
* <p>Peak IOPS unrelated to read and write operations.</p>
|
|
3717
3717
|
* @public
|
|
3718
3718
|
*/
|
|
3719
|
-
IopsOther?: number;
|
|
3719
|
+
IopsOther?: number | undefined;
|
|
3720
3720
|
/**
|
|
3721
3721
|
* <p>Peak total IOPS on your on-premises storage system resource.</p>
|
|
3722
3722
|
* @public
|
|
3723
3723
|
*/
|
|
3724
|
-
IopsTotal?: number;
|
|
3724
|
+
IopsTotal?: number | undefined;
|
|
3725
3725
|
/**
|
|
3726
3726
|
* <p>Peak throughput related to read operations.</p>
|
|
3727
3727
|
* @public
|
|
3728
3728
|
*/
|
|
3729
|
-
ThroughputRead?: number;
|
|
3729
|
+
ThroughputRead?: number | undefined;
|
|
3730
3730
|
/**
|
|
3731
3731
|
* <p>Peak throughput related to write operations.</p>
|
|
3732
3732
|
* @public
|
|
3733
3733
|
*/
|
|
3734
|
-
ThroughputWrite?: number;
|
|
3734
|
+
ThroughputWrite?: number | undefined;
|
|
3735
3735
|
/**
|
|
3736
3736
|
* <p>Peak throughput unrelated to read and write operations.</p>
|
|
3737
3737
|
* @public
|
|
3738
3738
|
*/
|
|
3739
|
-
ThroughputOther?: number;
|
|
3739
|
+
ThroughputOther?: number | undefined;
|
|
3740
3740
|
/**
|
|
3741
3741
|
* <p>Peak total throughput on your on-premises storage system resource.</p>
|
|
3742
3742
|
* @public
|
|
3743
3743
|
*/
|
|
3744
|
-
ThroughputTotal?: number;
|
|
3744
|
+
ThroughputTotal?: number | undefined;
|
|
3745
3745
|
/**
|
|
3746
3746
|
* <p>Peak latency for read operations.</p>
|
|
3747
3747
|
* @public
|
|
3748
3748
|
*/
|
|
3749
|
-
LatencyRead?: number;
|
|
3749
|
+
LatencyRead?: number | undefined;
|
|
3750
3750
|
/**
|
|
3751
3751
|
* <p>Peak latency for write operations.</p>
|
|
3752
3752
|
* @public
|
|
3753
3753
|
*/
|
|
3754
|
-
LatencyWrite?: number;
|
|
3754
|
+
LatencyWrite?: number | undefined;
|
|
3755
3755
|
/**
|
|
3756
3756
|
* <p>Peak latency for operations unrelated to read and write operations.</p>
|
|
3757
3757
|
* @public
|
|
3758
3758
|
*/
|
|
3759
|
-
LatencyOther?: number;
|
|
3759
|
+
LatencyOther?: number | undefined;
|
|
3760
3760
|
}
|
|
3761
3761
|
/**
|
|
3762
3762
|
* <p>The details about an Amazon Web Services storage service that DataSync Discovery recommends for a
|
|
@@ -3771,18 +3771,18 @@ export interface Recommendation {
|
|
|
3771
3771
|
* information that DataSync Discovery collects about your on-premises storage system.</p>
|
|
3772
3772
|
* @public
|
|
3773
3773
|
*/
|
|
3774
|
-
StorageType?: string;
|
|
3774
|
+
StorageType?: string | undefined;
|
|
3775
3775
|
/**
|
|
3776
3776
|
* <p>Information about how you can set up a recommended Amazon Web Services storage
|
|
3777
3777
|
* service.</p>
|
|
3778
3778
|
* @public
|
|
3779
3779
|
*/
|
|
3780
|
-
StorageConfiguration?: Record<string, string
|
|
3780
|
+
StorageConfiguration?: Record<string, string> | undefined;
|
|
3781
3781
|
/**
|
|
3782
3782
|
* <p>The estimated monthly cost of the recommended Amazon Web Services storage service.</p>
|
|
3783
3783
|
* @public
|
|
3784
3784
|
*/
|
|
3785
|
-
EstimatedMonthlyStorageCost?: string;
|
|
3785
|
+
EstimatedMonthlyStorageCost?: string | undefined;
|
|
3786
3786
|
}
|
|
3787
3787
|
/**
|
|
3788
3788
|
* @public
|
|
@@ -3808,67 +3808,67 @@ export interface NetAppONTAPCluster {
|
|
|
3808
3808
|
* <p>The number of CIFS shares in the cluster.</p>
|
|
3809
3809
|
* @public
|
|
3810
3810
|
*/
|
|
3811
|
-
CifsShareCount?: number;
|
|
3811
|
+
CifsShareCount?: number | undefined;
|
|
3812
3812
|
/**
|
|
3813
3813
|
* <p>The number of NFS volumes in the cluster.</p>
|
|
3814
3814
|
* @public
|
|
3815
3815
|
*/
|
|
3816
|
-
NfsExportedVolumes?: number;
|
|
3816
|
+
NfsExportedVolumes?: number | undefined;
|
|
3817
3817
|
/**
|
|
3818
3818
|
* <p>The universally unique identifier (UUID) of the cluster.</p>
|
|
3819
3819
|
* @public
|
|
3820
3820
|
*/
|
|
3821
|
-
ResourceId?: string;
|
|
3821
|
+
ResourceId?: string | undefined;
|
|
3822
3822
|
/**
|
|
3823
3823
|
* <p>The name of the cluster.</p>
|
|
3824
3824
|
* @public
|
|
3825
3825
|
*/
|
|
3826
|
-
ClusterName?: string;
|
|
3826
|
+
ClusterName?: string | undefined;
|
|
3827
3827
|
/**
|
|
3828
3828
|
* <p>The performance data that DataSync Discovery collects about the cluster.</p>
|
|
3829
3829
|
* @public
|
|
3830
3830
|
*/
|
|
3831
|
-
MaxP95Performance?: MaxP95Performance;
|
|
3831
|
+
MaxP95Performance?: MaxP95Performance | undefined;
|
|
3832
3832
|
/**
|
|
3833
3833
|
* <p>The total storage space that's available in the cluster.</p>
|
|
3834
3834
|
* @public
|
|
3835
3835
|
*/
|
|
3836
|
-
ClusterBlockStorageSize?: number;
|
|
3836
|
+
ClusterBlockStorageSize?: number | undefined;
|
|
3837
3837
|
/**
|
|
3838
3838
|
* <p>The storage space that's being used in a cluster.</p>
|
|
3839
3839
|
* @public
|
|
3840
3840
|
*/
|
|
3841
|
-
ClusterBlockStorageUsed?: number;
|
|
3841
|
+
ClusterBlockStorageUsed?: number | undefined;
|
|
3842
3842
|
/**
|
|
3843
3843
|
* <p>The storage space that's being used in the cluster without accounting for compression or
|
|
3844
3844
|
* deduplication.</p>
|
|
3845
3845
|
* @public
|
|
3846
3846
|
*/
|
|
3847
|
-
ClusterBlockStorageLogicalUsed?: number;
|
|
3847
|
+
ClusterBlockStorageLogicalUsed?: number | undefined;
|
|
3848
3848
|
/**
|
|
3849
3849
|
* <p>The Amazon Web Services storage services that DataSync Discovery recommends for the cluster. For
|
|
3850
3850
|
* more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/discovery-understand-recommendations.html">Recommendations
|
|
3851
3851
|
* provided by DataSync Discovery</a>.</p>
|
|
3852
3852
|
* @public
|
|
3853
3853
|
*/
|
|
3854
|
-
Recommendations?: Recommendation[];
|
|
3854
|
+
Recommendations?: Recommendation[] | undefined;
|
|
3855
3855
|
/**
|
|
3856
3856
|
* <p>Indicates whether DataSync Discovery recommendations for the cluster are ready to view, incomplete,
|
|
3857
3857
|
* or can't be determined.</p>
|
|
3858
3858
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#recommendation-statuses-table">Recommendation statuses</a>.</p>
|
|
3859
3859
|
* @public
|
|
3860
3860
|
*/
|
|
3861
|
-
RecommendationStatus?: RecommendationStatus;
|
|
3861
|
+
RecommendationStatus?: RecommendationStatus | undefined;
|
|
3862
3862
|
/**
|
|
3863
3863
|
* <p>The number of LUNs (logical unit numbers) in the cluster.</p>
|
|
3864
3864
|
* @public
|
|
3865
3865
|
*/
|
|
3866
|
-
LunCount?: number;
|
|
3866
|
+
LunCount?: number | undefined;
|
|
3867
3867
|
/**
|
|
3868
3868
|
* <p>The amount of space in the cluster that's in cloud storage (for example, if you're using data tiering).</p>
|
|
3869
3869
|
* @public
|
|
3870
3870
|
*/
|
|
3871
|
-
ClusterCloudStorageUsed?: number;
|
|
3871
|
+
ClusterCloudStorageUsed?: number | undefined;
|
|
3872
3872
|
}
|
|
3873
3873
|
/**
|
|
3874
3874
|
* <p>The information that DataSync Discovery collects about a storage virtual machine (SVM) in your
|
|
@@ -3880,77 +3880,77 @@ export interface NetAppONTAPSVM {
|
|
|
3880
3880
|
* <p>The universally unique identifier (UUID) of the cluster associated with the SVM.</p>
|
|
3881
3881
|
* @public
|
|
3882
3882
|
*/
|
|
3883
|
-
ClusterUuid?: string;
|
|
3883
|
+
ClusterUuid?: string | undefined;
|
|
3884
3884
|
/**
|
|
3885
3885
|
* <p>The UUID of the SVM.</p>
|
|
3886
3886
|
* @public
|
|
3887
3887
|
*/
|
|
3888
|
-
ResourceId?: string;
|
|
3888
|
+
ResourceId?: string | undefined;
|
|
3889
3889
|
/**
|
|
3890
3890
|
* <p>The name of the SVM</p>
|
|
3891
3891
|
* @public
|
|
3892
3892
|
*/
|
|
3893
|
-
SvmName?: string;
|
|
3893
|
+
SvmName?: string | undefined;
|
|
3894
3894
|
/**
|
|
3895
3895
|
* <p>The number of CIFS shares in the SVM.</p>
|
|
3896
3896
|
* @public
|
|
3897
3897
|
*/
|
|
3898
|
-
CifsShareCount?: number;
|
|
3898
|
+
CifsShareCount?: number | undefined;
|
|
3899
3899
|
/**
|
|
3900
3900
|
* <p>The data transfer protocols (such as NFS) configured for the SVM.</p>
|
|
3901
3901
|
* @public
|
|
3902
3902
|
*/
|
|
3903
|
-
EnabledProtocols?: string[];
|
|
3903
|
+
EnabledProtocols?: string[] | undefined;
|
|
3904
3904
|
/**
|
|
3905
3905
|
* <p>The storage space that's being used in the SVM.</p>
|
|
3906
3906
|
* @public
|
|
3907
3907
|
*/
|
|
3908
|
-
TotalCapacityUsed?: number;
|
|
3908
|
+
TotalCapacityUsed?: number | undefined;
|
|
3909
3909
|
/**
|
|
3910
3910
|
* <p>The total storage space that's available in the SVM.</p>
|
|
3911
3911
|
* @public
|
|
3912
3912
|
*/
|
|
3913
|
-
TotalCapacityProvisioned?: number;
|
|
3913
|
+
TotalCapacityProvisioned?: number | undefined;
|
|
3914
3914
|
/**
|
|
3915
3915
|
* <p>The storage space that's being used in the SVM without accounting for compression or
|
|
3916
3916
|
* deduplication.</p>
|
|
3917
3917
|
* @public
|
|
3918
3918
|
*/
|
|
3919
|
-
TotalLogicalCapacityUsed?: number;
|
|
3919
|
+
TotalLogicalCapacityUsed?: number | undefined;
|
|
3920
3920
|
/**
|
|
3921
3921
|
* <p>The performance data that DataSync Discovery collects about the SVM.</p>
|
|
3922
3922
|
* @public
|
|
3923
3923
|
*/
|
|
3924
|
-
MaxP95Performance?: MaxP95Performance;
|
|
3924
|
+
MaxP95Performance?: MaxP95Performance | undefined;
|
|
3925
3925
|
/**
|
|
3926
3926
|
* <p>The Amazon Web Services storage services that DataSync Discovery recommends for the SVM. For more
|
|
3927
3927
|
* information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/discovery-understand-recommendations.html">Recommendations
|
|
3928
3928
|
* provided by DataSync Discovery</a>.</p>
|
|
3929
3929
|
* @public
|
|
3930
3930
|
*/
|
|
3931
|
-
Recommendations?: Recommendation[];
|
|
3931
|
+
Recommendations?: Recommendation[] | undefined;
|
|
3932
3932
|
/**
|
|
3933
3933
|
* <p>The number of NFS volumes in the SVM.</p>
|
|
3934
3934
|
* @public
|
|
3935
3935
|
*/
|
|
3936
|
-
NfsExportedVolumes?: number;
|
|
3936
|
+
NfsExportedVolumes?: number | undefined;
|
|
3937
3937
|
/**
|
|
3938
3938
|
* <p>Indicates whether DataSync Discovery recommendations for the SVM are ready to view, incomplete, or
|
|
3939
3939
|
* can't be determined.</p>
|
|
3940
3940
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#recommendation-statuses-table">Recommendation statuses</a>.</p>
|
|
3941
3941
|
* @public
|
|
3942
3942
|
*/
|
|
3943
|
-
RecommendationStatus?: RecommendationStatus;
|
|
3943
|
+
RecommendationStatus?: RecommendationStatus | undefined;
|
|
3944
3944
|
/**
|
|
3945
3945
|
* <p>The amount of storage in the SVM that's being used for snapshots.</p>
|
|
3946
3946
|
* @public
|
|
3947
3947
|
*/
|
|
3948
|
-
TotalSnapshotCapacityUsed?: number;
|
|
3948
|
+
TotalSnapshotCapacityUsed?: number | undefined;
|
|
3949
3949
|
/**
|
|
3950
3950
|
* <p>The number of LUNs (logical unit numbers) in the SVM.</p>
|
|
3951
3951
|
* @public
|
|
3952
3952
|
*/
|
|
3953
|
-
LunCount?: number;
|
|
3953
|
+
LunCount?: number | undefined;
|
|
3954
3954
|
}
|
|
3955
3955
|
/**
|
|
3956
3956
|
* <p>The information that DataSync Discovery collects about a volume in your on-premises storage
|
|
@@ -3962,82 +3962,82 @@ export interface NetAppONTAPVolume {
|
|
|
3962
3962
|
* <p>The name of the volume.</p>
|
|
3963
3963
|
* @public
|
|
3964
3964
|
*/
|
|
3965
|
-
VolumeName?: string;
|
|
3965
|
+
VolumeName?: string | undefined;
|
|
3966
3966
|
/**
|
|
3967
3967
|
* <p>The universally unique identifier (UUID) of the volume.</p>
|
|
3968
3968
|
* @public
|
|
3969
3969
|
*/
|
|
3970
|
-
ResourceId?: string;
|
|
3970
|
+
ResourceId?: string | undefined;
|
|
3971
3971
|
/**
|
|
3972
3972
|
* <p>The number of CIFS shares in the volume.</p>
|
|
3973
3973
|
* @public
|
|
3974
3974
|
*/
|
|
3975
|
-
CifsShareCount?: number;
|
|
3975
|
+
CifsShareCount?: number | undefined;
|
|
3976
3976
|
/**
|
|
3977
3977
|
* <p>The volume's security style (such as Unix or NTFS).</p>
|
|
3978
3978
|
* @public
|
|
3979
3979
|
*/
|
|
3980
|
-
SecurityStyle?: string;
|
|
3980
|
+
SecurityStyle?: string | undefined;
|
|
3981
3981
|
/**
|
|
3982
3982
|
* <p>The UUID of the storage virtual machine (SVM) associated with the volume.</p>
|
|
3983
3983
|
* @public
|
|
3984
3984
|
*/
|
|
3985
|
-
SvmUuid?: string;
|
|
3985
|
+
SvmUuid?: string | undefined;
|
|
3986
3986
|
/**
|
|
3987
3987
|
* <p>The name of the SVM associated with the volume.</p>
|
|
3988
3988
|
* @public
|
|
3989
3989
|
*/
|
|
3990
|
-
SvmName?: string;
|
|
3990
|
+
SvmName?: string | undefined;
|
|
3991
3991
|
/**
|
|
3992
3992
|
* <p>The storage space that's being used in the volume.</p>
|
|
3993
3993
|
* @public
|
|
3994
3994
|
*/
|
|
3995
|
-
CapacityUsed?: number;
|
|
3995
|
+
CapacityUsed?: number | undefined;
|
|
3996
3996
|
/**
|
|
3997
3997
|
* <p>The total storage space that's available in the volume.</p>
|
|
3998
3998
|
* @public
|
|
3999
3999
|
*/
|
|
4000
|
-
CapacityProvisioned?: number;
|
|
4000
|
+
CapacityProvisioned?: number | undefined;
|
|
4001
4001
|
/**
|
|
4002
4002
|
* <p>The storage space that's being used in the volume without accounting for compression or
|
|
4003
4003
|
* deduplication.</p>
|
|
4004
4004
|
* @public
|
|
4005
4005
|
*/
|
|
4006
|
-
LogicalCapacityUsed?: number;
|
|
4006
|
+
LogicalCapacityUsed?: number | undefined;
|
|
4007
4007
|
/**
|
|
4008
4008
|
* <p>The number of NFS volumes in the volume.</p>
|
|
4009
4009
|
* @public
|
|
4010
4010
|
*/
|
|
4011
|
-
NfsExported?: boolean;
|
|
4011
|
+
NfsExported?: boolean | undefined;
|
|
4012
4012
|
/**
|
|
4013
4013
|
* <p>The amount of storage in the volume that's being used for snapshots.</p>
|
|
4014
4014
|
* @public
|
|
4015
4015
|
*/
|
|
4016
|
-
SnapshotCapacityUsed?: number;
|
|
4016
|
+
SnapshotCapacityUsed?: number | undefined;
|
|
4017
4017
|
/**
|
|
4018
4018
|
* <p>The performance data that DataSync Discovery collects about the volume.</p>
|
|
4019
4019
|
* @public
|
|
4020
4020
|
*/
|
|
4021
|
-
MaxP95Performance?: MaxP95Performance;
|
|
4021
|
+
MaxP95Performance?: MaxP95Performance | undefined;
|
|
4022
4022
|
/**
|
|
4023
4023
|
* <p>The Amazon Web Services storage services that DataSync Discovery recommends for the volume. For more
|
|
4024
4024
|
* information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/discovery-understand-recommendations.html">Recommendations
|
|
4025
4025
|
* provided by DataSync Discovery</a>.</p>
|
|
4026
4026
|
* @public
|
|
4027
4027
|
*/
|
|
4028
|
-
Recommendations?: Recommendation[];
|
|
4028
|
+
Recommendations?: Recommendation[] | undefined;
|
|
4029
4029
|
/**
|
|
4030
4030
|
* <p>Indicates whether DataSync Discovery recommendations for the volume are ready to view, incomplete,
|
|
4031
4031
|
* or can't be determined.</p>
|
|
4032
4032
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#recommendation-statuses-table">Recommendation statuses</a>.</p>
|
|
4033
4033
|
* @public
|
|
4034
4034
|
*/
|
|
4035
|
-
RecommendationStatus?: RecommendationStatus;
|
|
4035
|
+
RecommendationStatus?: RecommendationStatus | undefined;
|
|
4036
4036
|
/**
|
|
4037
4037
|
* <p>The number of LUNs (logical unit numbers) in the volume.</p>
|
|
4038
4038
|
* @public
|
|
4039
4039
|
*/
|
|
4040
|
-
LunCount?: number;
|
|
4040
|
+
LunCount?: number | undefined;
|
|
4041
4041
|
}
|
|
4042
4042
|
/**
|
|
4043
4043
|
* <p>Information provided by DataSync Discovery about the resources in your on-premises storage
|
|
@@ -4050,20 +4050,20 @@ export interface ResourceDetails {
|
|
|
4050
4050
|
* on-premises storage system.</p>
|
|
4051
4051
|
* @public
|
|
4052
4052
|
*/
|
|
4053
|
-
NetAppONTAPSVMs?: NetAppONTAPSVM[];
|
|
4053
|
+
NetAppONTAPSVMs?: NetAppONTAPSVM[] | undefined;
|
|
4054
4054
|
/**
|
|
4055
4055
|
* <p>The information that DataSync Discovery collects about volumes in your on-premises storage
|
|
4056
4056
|
* system.</p>
|
|
4057
4057
|
* @public
|
|
4058
4058
|
*/
|
|
4059
|
-
NetAppONTAPVolumes?: NetAppONTAPVolume[];
|
|
4059
|
+
NetAppONTAPVolumes?: NetAppONTAPVolume[] | undefined;
|
|
4060
4060
|
/**
|
|
4061
4061
|
* <p>The information that DataSync Discovery collects about the
|
|
4062
4062
|
* cluster
|
|
4063
4063
|
* in your on-premises storage system.</p>
|
|
4064
4064
|
* @public
|
|
4065
4065
|
*/
|
|
4066
|
-
NetAppONTAPClusters?: NetAppONTAPCluster[];
|
|
4066
|
+
NetAppONTAPClusters?: NetAppONTAPCluster[] | undefined;
|
|
4067
4067
|
}
|
|
4068
4068
|
/**
|
|
4069
4069
|
* @public
|
|
@@ -4076,13 +4076,13 @@ export interface DescribeStorageSystemResourcesResponse {
|
|
|
4076
4076
|
* information</a> collected by and <a href="https://docs.aws.amazon.com/datasync/latest/userguide/discovery-understand-recommendations.html">recommendations</a> provided by DataSync Discovery.</p>
|
|
4077
4077
|
* @public
|
|
4078
4078
|
*/
|
|
4079
|
-
ResourceDetails?: ResourceDetails;
|
|
4079
|
+
ResourceDetails?: ResourceDetails | undefined;
|
|
4080
4080
|
/**
|
|
4081
4081
|
* <p>The opaque string that indicates the position to begin the next list of results in the
|
|
4082
4082
|
* response.</p>
|
|
4083
4083
|
* @public
|
|
4084
4084
|
*/
|
|
4085
|
-
NextToken?: string;
|
|
4085
|
+
NextToken?: string | undefined;
|
|
4086
4086
|
}
|
|
4087
4087
|
/**
|
|
4088
4088
|
* <p>DescribeTaskRequest</p>
|
|
@@ -4119,7 +4119,7 @@ export interface TaskScheduleDetails {
|
|
|
4119
4119
|
* when the schedule was disabled.</p>
|
|
4120
4120
|
* @public
|
|
4121
4121
|
*/
|
|
4122
|
-
StatusUpdateTime?: Date;
|
|
4122
|
+
StatusUpdateTime?: Date | undefined;
|
|
4123
4123
|
/**
|
|
4124
4124
|
* <p>Provides a reason if the task schedule is disabled.</p>
|
|
4125
4125
|
* <p>If your schedule is disabled by <code>USER</code>, you see a <code>Manually disabled by user.</code> message.</p>
|
|
@@ -4128,7 +4128,7 @@ export interface TaskScheduleDetails {
|
|
|
4128
4128
|
* see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/troubleshooting-datasync-locations-tasks.html">Troubleshooting issues with DataSync transfers</a>.</p>
|
|
4129
4129
|
* @public
|
|
4130
4130
|
*/
|
|
4131
|
-
DisabledReason?: string;
|
|
4131
|
+
DisabledReason?: string | undefined;
|
|
4132
4132
|
/**
|
|
4133
4133
|
* <p>Indicates how your task schedule was disabled.</p>
|
|
4134
4134
|
* <ul>
|
|
@@ -4144,7 +4144,7 @@ export interface TaskScheduleDetails {
|
|
|
4144
4144
|
* </ul>
|
|
4145
4145
|
* @public
|
|
4146
4146
|
*/
|
|
4147
|
-
DisabledBy?: ScheduleDisabledBy;
|
|
4147
|
+
DisabledBy?: ScheduleDisabledBy | undefined;
|
|
4148
4148
|
}
|
|
4149
4149
|
/**
|
|
4150
4150
|
* @public
|
|
@@ -4170,32 +4170,32 @@ export interface DescribeTaskResponse {
|
|
|
4170
4170
|
* <p>The ARN of your task.</p>
|
|
4171
4171
|
* @public
|
|
4172
4172
|
*/
|
|
4173
|
-
TaskArn?: string;
|
|
4173
|
+
TaskArn?: string | undefined;
|
|
4174
4174
|
/**
|
|
4175
4175
|
* <p>The status of your task. For information about what each status means, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/understand-task-statuses.html#understand-task-creation-statuses">Task statuses</a>.</p>
|
|
4176
4176
|
* @public
|
|
4177
4177
|
*/
|
|
4178
|
-
Status?: TaskStatus;
|
|
4178
|
+
Status?: TaskStatus | undefined;
|
|
4179
4179
|
/**
|
|
4180
4180
|
* <p>The name of your task.</p>
|
|
4181
4181
|
* @public
|
|
4182
4182
|
*/
|
|
4183
|
-
Name?: string;
|
|
4183
|
+
Name?: string | undefined;
|
|
4184
4184
|
/**
|
|
4185
4185
|
* <p>The ARN of the most recent task execution.</p>
|
|
4186
4186
|
* @public
|
|
4187
4187
|
*/
|
|
4188
|
-
CurrentTaskExecutionArn?: string;
|
|
4188
|
+
CurrentTaskExecutionArn?: string | undefined;
|
|
4189
4189
|
/**
|
|
4190
4190
|
* <p>The ARN of your transfer's source location.</p>
|
|
4191
4191
|
* @public
|
|
4192
4192
|
*/
|
|
4193
|
-
SourceLocationArn?: string;
|
|
4193
|
+
SourceLocationArn?: string | undefined;
|
|
4194
4194
|
/**
|
|
4195
4195
|
* <p>The ARN of your transfer's destination location.</p>
|
|
4196
4196
|
* @public
|
|
4197
4197
|
*/
|
|
4198
|
-
DestinationLocationArn?: string;
|
|
4198
|
+
DestinationLocationArn?: string | undefined;
|
|
4199
4199
|
/**
|
|
4200
4200
|
* <p>The Amazon Resource Name (ARN) of an Amazon CloudWatch log group for monitoring your
|
|
4201
4201
|
* task.</p>
|
|
@@ -4203,82 +4203,82 @@ export interface DescribeTaskResponse {
|
|
|
4203
4203
|
* CloudWatch Logs</a>.</p>
|
|
4204
4204
|
* @public
|
|
4205
4205
|
*/
|
|
4206
|
-
CloudWatchLogGroupArn?: string;
|
|
4206
|
+
CloudWatchLogGroupArn?: string | undefined;
|
|
4207
4207
|
/**
|
|
4208
4208
|
* <p>The ARNs of the <a href="https://docs.aws.amazon.com/datasync/latest/userguide/datasync-network.html#required-network-interfaces">network
|
|
4209
4209
|
* interfaces</a> that DataSync created for your source location.</p>
|
|
4210
4210
|
* @public
|
|
4211
4211
|
*/
|
|
4212
|
-
SourceNetworkInterfaceArns?: string[];
|
|
4212
|
+
SourceNetworkInterfaceArns?: string[] | undefined;
|
|
4213
4213
|
/**
|
|
4214
4214
|
* <p>The ARNs of the <a href="https://docs.aws.amazon.com/datasync/latest/userguide/datasync-network.html#required-network-interfaces">network
|
|
4215
4215
|
* interfaces</a> that DataSync created for your destination location.</p>
|
|
4216
4216
|
* @public
|
|
4217
4217
|
*/
|
|
4218
|
-
DestinationNetworkInterfaceArns?: string[];
|
|
4218
|
+
DestinationNetworkInterfaceArns?: string[] | undefined;
|
|
4219
4219
|
/**
|
|
4220
4220
|
* <p>The task's settings. For example, what file metadata gets preserved, how data integrity
|
|
4221
4221
|
* gets verified at the end of your transfer, bandwidth limits, among other options.</p>
|
|
4222
4222
|
* @public
|
|
4223
4223
|
*/
|
|
4224
|
-
Options?: Options;
|
|
4224
|
+
Options?: Options | undefined;
|
|
4225
4225
|
/**
|
|
4226
4226
|
* <p>The exclude filters that define the files, objects, and folders in your source location that you don't want DataSync to transfer. For more
|
|
4227
4227
|
* information and examples, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/filtering.html">Specifying what DataSync transfers by using filters</a>.</p>
|
|
4228
4228
|
* @public
|
|
4229
4229
|
*/
|
|
4230
|
-
Excludes?: FilterRule[];
|
|
4230
|
+
Excludes?: FilterRule[] | undefined;
|
|
4231
4231
|
/**
|
|
4232
4232
|
* <p>The schedule for when you want your task to run. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/task-scheduling.html">Scheduling your
|
|
4233
4233
|
* task</a>.</p>
|
|
4234
4234
|
* @public
|
|
4235
4235
|
*/
|
|
4236
|
-
Schedule?: TaskSchedule;
|
|
4236
|
+
Schedule?: TaskSchedule | undefined;
|
|
4237
4237
|
/**
|
|
4238
4238
|
* <p>If there's an issue with your task, you can use the error code to help you troubleshoot
|
|
4239
4239
|
* the problem. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/troubleshooting-datasync-locations-tasks.html">Troubleshooting issues with DataSync transfers</a>.</p>
|
|
4240
4240
|
* @public
|
|
4241
4241
|
*/
|
|
4242
|
-
ErrorCode?: string;
|
|
4242
|
+
ErrorCode?: string | undefined;
|
|
4243
4243
|
/**
|
|
4244
4244
|
* <p>If there's an issue with your task, you can use the error details to help you
|
|
4245
4245
|
* troubleshoot the problem. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/troubleshooting-datasync-locations-tasks.html">Troubleshooting issues with DataSync transfers</a>.</p>
|
|
4246
4246
|
* @public
|
|
4247
4247
|
*/
|
|
4248
|
-
ErrorDetail?: string;
|
|
4248
|
+
ErrorDetail?: string | undefined;
|
|
4249
4249
|
/**
|
|
4250
4250
|
* <p>The time that the task was created.</p>
|
|
4251
4251
|
* @public
|
|
4252
4252
|
*/
|
|
4253
|
-
CreationTime?: Date;
|
|
4253
|
+
CreationTime?: Date | undefined;
|
|
4254
4254
|
/**
|
|
4255
4255
|
* <p>The include filters that define the files, objects, and folders in your source location
|
|
4256
4256
|
* that you want DataSync to transfer. For more information and examples, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/filtering.html">Specifying what DataSync transfers by using filters</a>.</p>
|
|
4257
4257
|
* @public
|
|
4258
4258
|
*/
|
|
4259
|
-
Includes?: FilterRule[];
|
|
4259
|
+
Includes?: FilterRule[] | undefined;
|
|
4260
4260
|
/**
|
|
4261
4261
|
* <p>The configuration of the manifest that lists the files or objects that you want DataSync to transfer. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/transferring-with-manifest.html">Specifying what DataSync transfers by using a manifest</a>.</p>
|
|
4262
4262
|
* @public
|
|
4263
4263
|
*/
|
|
4264
|
-
ManifestConfig?: ManifestConfig;
|
|
4264
|
+
ManifestConfig?: ManifestConfig | undefined;
|
|
4265
4265
|
/**
|
|
4266
4266
|
* <p>The configuration of your task report, which provides detailed information about your
|
|
4267
4267
|
* DataSync transfer. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/task-reports.html">Monitoring your DataSync
|
|
4268
4268
|
* transfers with task reports</a>.</p>
|
|
4269
4269
|
* @public
|
|
4270
4270
|
*/
|
|
4271
|
-
TaskReportConfig?: TaskReportConfig;
|
|
4271
|
+
TaskReportConfig?: TaskReportConfig | undefined;
|
|
4272
4272
|
/**
|
|
4273
4273
|
* <p>The details about your <a href="https://docs.aws.amazon.com/datasync/latest/userguide/task-scheduling.html">task schedule</a>.</p>
|
|
4274
4274
|
* @public
|
|
4275
4275
|
*/
|
|
4276
|
-
ScheduleDetails?: TaskScheduleDetails;
|
|
4276
|
+
ScheduleDetails?: TaskScheduleDetails | undefined;
|
|
4277
4277
|
/**
|
|
4278
4278
|
* <p>The task mode that you're using. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/choosing-task-mode.html">Choosing a task mode for your data transfer</a>.</p>
|
|
4279
4279
|
* @public
|
|
4280
4280
|
*/
|
|
4281
|
-
TaskMode?: TaskMode;
|
|
4281
|
+
TaskMode?: TaskMode | undefined;
|
|
4282
4282
|
}
|
|
4283
4283
|
/**
|
|
4284
4284
|
* <p>DescribeTaskExecutionRequest</p>
|
|
@@ -4307,25 +4307,25 @@ export interface TaskExecutionFilesFailedDetail {
|
|
|
4307
4307
|
* execution.</p>
|
|
4308
4308
|
* @public
|
|
4309
4309
|
*/
|
|
4310
|
-
Prepare?: number;
|
|
4310
|
+
Prepare?: number | undefined;
|
|
4311
4311
|
/**
|
|
4312
4312
|
* <p>The number of objects that DataSync fails to transfer during your task
|
|
4313
4313
|
* execution.</p>
|
|
4314
4314
|
* @public
|
|
4315
4315
|
*/
|
|
4316
|
-
Transfer?: number;
|
|
4316
|
+
Transfer?: number | undefined;
|
|
4317
4317
|
/**
|
|
4318
4318
|
* <p>The number of objects that DataSync fails to verify during your task
|
|
4319
4319
|
* execution.</p>
|
|
4320
4320
|
* @public
|
|
4321
4321
|
*/
|
|
4322
|
-
Verify?: number;
|
|
4322
|
+
Verify?: number | undefined;
|
|
4323
4323
|
/**
|
|
4324
4324
|
* <p>The number of objects that DataSync fails to delete during your task
|
|
4325
4325
|
* execution.</p>
|
|
4326
4326
|
* @public
|
|
4327
4327
|
*/
|
|
4328
|
-
Delete?: number;
|
|
4328
|
+
Delete?: number | undefined;
|
|
4329
4329
|
}
|
|
4330
4330
|
/**
|
|
4331
4331
|
* <p>The number of objects that DataSync finds at your locations.</p>
|
|
@@ -4354,12 +4354,12 @@ export interface TaskExecutionFilesListedDetail {
|
|
|
4354
4354
|
* </ul>
|
|
4355
4355
|
* @public
|
|
4356
4356
|
*/
|
|
4357
|
-
AtSource?: number;
|
|
4357
|
+
AtSource?: number | undefined;
|
|
4358
4358
|
/**
|
|
4359
4359
|
* <p>The number of objects that DataSync finds at your destination location. This metric is only applicable if you <a href="https://docs.aws.amazon.com/datasync/latest/userguide/configure-metadata.html#task-option-file-object-handling">configure your task</a> to delete data in the destination that isn't in the source.</p>
|
|
4360
4360
|
* @public
|
|
4361
4361
|
*/
|
|
4362
|
-
AtDestinationForDelete?: number;
|
|
4362
|
+
AtDestinationForDelete?: number | undefined;
|
|
4363
4363
|
}
|
|
4364
4364
|
/**
|
|
4365
4365
|
* @public
|
|
@@ -4385,18 +4385,18 @@ export interface ReportResult {
|
|
|
4385
4385
|
* can't create a complete report.</p>
|
|
4386
4386
|
* @public
|
|
4387
4387
|
*/
|
|
4388
|
-
Status?: PhaseStatus;
|
|
4388
|
+
Status?: PhaseStatus | undefined;
|
|
4389
4389
|
/**
|
|
4390
4390
|
* <p>Indicates the code associated with the error if DataSync can't create a complete
|
|
4391
4391
|
* report.</p>
|
|
4392
4392
|
* @public
|
|
4393
4393
|
*/
|
|
4394
|
-
ErrorCode?: string;
|
|
4394
|
+
ErrorCode?: string | undefined;
|
|
4395
4395
|
/**
|
|
4396
4396
|
* <p>Provides details about issues creating a report.</p>
|
|
4397
4397
|
* @public
|
|
4398
4398
|
*/
|
|
4399
|
-
ErrorDetail?: string;
|
|
4399
|
+
ErrorDetail?: string | undefined;
|
|
4400
4400
|
}
|
|
4401
4401
|
/**
|
|
4402
4402
|
* <p>Provides detailed information about the result of your DataSync task
|
|
@@ -4412,19 +4412,19 @@ export interface TaskExecutionResultDetail {
|
|
|
4412
4412
|
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/how-datasync-transfer-works.html#how-datasync-prepares">How DataSync prepares your data transfer</a>.</p>
|
|
4413
4413
|
* @public
|
|
4414
4414
|
*/
|
|
4415
|
-
PrepareDuration?: number;
|
|
4415
|
+
PrepareDuration?: number | undefined;
|
|
4416
4416
|
/**
|
|
4417
4417
|
* <p>The status of the <code>PREPARING</code> step for your task execution. For more
|
|
4418
4418
|
* information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/run-task.html#understand-task-execution-statuses">Task
|
|
4419
4419
|
* execution statuses</a>.</p>
|
|
4420
4420
|
* @public
|
|
4421
4421
|
*/
|
|
4422
|
-
PrepareStatus?: PhaseStatus;
|
|
4422
|
+
PrepareStatus?: PhaseStatus | undefined;
|
|
4423
4423
|
/**
|
|
4424
4424
|
* <p>The time in milliseconds that your task execution ran.</p>
|
|
4425
4425
|
* @public
|
|
4426
4426
|
*/
|
|
4427
|
-
TotalDuration?: number;
|
|
4427
|
+
TotalDuration?: number | undefined;
|
|
4428
4428
|
/**
|
|
4429
4429
|
* <p>The time in milliseconds that your task execution was in the <code>TRANSFERRING</code>
|
|
4430
4430
|
* step. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/run-task.html#understand-task-execution-statuses">Task
|
|
@@ -4433,14 +4433,14 @@ export interface TaskExecutionResultDetail {
|
|
|
4433
4433
|
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/how-datasync-transfer-works.html#how-datasync-transfers">How DataSync transfers your data</a>.</p>
|
|
4434
4434
|
* @public
|
|
4435
4435
|
*/
|
|
4436
|
-
TransferDuration?: number;
|
|
4436
|
+
TransferDuration?: number | undefined;
|
|
4437
4437
|
/**
|
|
4438
4438
|
* <p>The status of the <code>TRANSFERRING</code> step for your task execution. For more
|
|
4439
4439
|
* information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/run-task.html#understand-task-execution-statuses">Task
|
|
4440
4440
|
* execution statuses</a>.</p>
|
|
4441
4441
|
* @public
|
|
4442
4442
|
*/
|
|
4443
|
-
TransferStatus?: PhaseStatus;
|
|
4443
|
+
TransferStatus?: PhaseStatus | undefined;
|
|
4444
4444
|
/**
|
|
4445
4445
|
* <p>The time in milliseconds that your task execution was in the <code>VERIFYING</code>
|
|
4446
4446
|
* step. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/run-task.html#understand-task-execution-statuses">Task
|
|
@@ -4449,28 +4449,28 @@ export interface TaskExecutionResultDetail {
|
|
|
4449
4449
|
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/how-datasync-transfer-works.html#how-verifying-works">How DataSync verifies your data's integrity</a>.</p>
|
|
4450
4450
|
* @public
|
|
4451
4451
|
*/
|
|
4452
|
-
VerifyDuration?: number;
|
|
4452
|
+
VerifyDuration?: number | undefined;
|
|
4453
4453
|
/**
|
|
4454
4454
|
* <p>The status of the <code>VERIFYING</code> step for your task execution. For more
|
|
4455
4455
|
* information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/run-task.html#understand-task-execution-statuses">Task
|
|
4456
4456
|
* execution statuses</a>.</p>
|
|
4457
4457
|
* @public
|
|
4458
4458
|
*/
|
|
4459
|
-
VerifyStatus?: PhaseStatus;
|
|
4459
|
+
VerifyStatus?: PhaseStatus | undefined;
|
|
4460
4460
|
/**
|
|
4461
4461
|
* <p>An error that DataSync encountered during your task execution. You can use
|
|
4462
4462
|
* this information to help <a href="https://docs.aws.amazon.com/datasync/latest/userguide/troubleshooting-datasync-locations-tasks.html">troubleshoot
|
|
4463
4463
|
* issues</a>.</p>
|
|
4464
4464
|
* @public
|
|
4465
4465
|
*/
|
|
4466
|
-
ErrorCode?: string;
|
|
4466
|
+
ErrorCode?: string | undefined;
|
|
4467
4467
|
/**
|
|
4468
4468
|
* <p>The detailed description of an error that DataSync encountered during your
|
|
4469
4469
|
* task execution. You can use this information to help <a href="https://docs.aws.amazon.com/datasync/latest/userguide/troubleshooting-datasync-locations-tasks.html">troubleshoot
|
|
4470
4470
|
* issues</a>. </p>
|
|
4471
4471
|
* @public
|
|
4472
4472
|
*/
|
|
4473
|
-
ErrorDetail?: string;
|
|
4473
|
+
ErrorDetail?: string | undefined;
|
|
4474
4474
|
}
|
|
4475
4475
|
/**
|
|
4476
4476
|
* @public
|
|
@@ -4505,12 +4505,12 @@ export interface DescribeTaskExecutionResponse {
|
|
|
4505
4505
|
* <code>arn:aws:datasync:us-east-1:111222333444:task/task-0208075f79cedf4a2</code>. </p>
|
|
4506
4506
|
* @public
|
|
4507
4507
|
*/
|
|
4508
|
-
TaskExecutionArn?: string;
|
|
4508
|
+
TaskExecutionArn?: string | undefined;
|
|
4509
4509
|
/**
|
|
4510
4510
|
* <p>The status of the task execution. </p>
|
|
4511
4511
|
* @public
|
|
4512
4512
|
*/
|
|
4513
|
-
Status?: TaskExecutionStatus;
|
|
4513
|
+
Status?: TaskExecutionStatus | undefined;
|
|
4514
4514
|
/**
|
|
4515
4515
|
* <p>Indicates how your transfer task is configured. These options include how DataSync handles files, objects, and their associated metadata during your transfer. You
|
|
4516
4516
|
* also can specify how to verify data integrity, set bandwidth limits for your task, among other
|
|
@@ -4519,30 +4519,30 @@ export interface DescribeTaskExecutionResponse {
|
|
|
4519
4519
|
* <p>You also can override your task options for each task execution. For example, you might want to adjust the <code>LogLevel</code> for an individual execution.</p>
|
|
4520
4520
|
* @public
|
|
4521
4521
|
*/
|
|
4522
|
-
Options?: Options;
|
|
4522
|
+
Options?: Options | undefined;
|
|
4523
4523
|
/**
|
|
4524
4524
|
* <p>A list of filter rules that exclude specific data during your transfer. For more
|
|
4525
4525
|
* information and examples, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/filtering.html">Filtering data transferred by DataSync</a>.</p>
|
|
4526
4526
|
* @public
|
|
4527
4527
|
*/
|
|
4528
|
-
Excludes?: FilterRule[];
|
|
4528
|
+
Excludes?: FilterRule[] | undefined;
|
|
4529
4529
|
/**
|
|
4530
4530
|
* <p>A list of filter rules that include specific data during your transfer. For more
|
|
4531
4531
|
* information and examples, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/filtering.html">Filtering data transferred by DataSync</a>.</p>
|
|
4532
4532
|
* @public
|
|
4533
4533
|
*/
|
|
4534
|
-
Includes?: FilterRule[];
|
|
4534
|
+
Includes?: FilterRule[] | undefined;
|
|
4535
4535
|
/**
|
|
4536
4536
|
* <p>The configuration of the manifest that lists the files or objects to transfer. For more
|
|
4537
4537
|
* information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/transferring-with-manifest.html">Specifying what DataSync transfers by using a manifest</a>.</p>
|
|
4538
4538
|
* @public
|
|
4539
4539
|
*/
|
|
4540
|
-
ManifestConfig?: ManifestConfig;
|
|
4540
|
+
ManifestConfig?: ManifestConfig | undefined;
|
|
4541
4541
|
/**
|
|
4542
4542
|
* <p>The time when the task execution started.</p>
|
|
4543
4543
|
* @public
|
|
4544
4544
|
*/
|
|
4545
|
-
StartTime?: Date;
|
|
4545
|
+
StartTime?: Date | undefined;
|
|
4546
4546
|
/**
|
|
4547
4547
|
* <p>The number of files, objects, and directories that DataSync expects to
|
|
4548
4548
|
* transfer over the network. This value is calculated during the task execution's
|
|
@@ -4578,13 +4578,13 @@ export interface DescribeTaskExecutionResponse {
|
|
|
4578
4578
|
* </ul>
|
|
4579
4579
|
* @public
|
|
4580
4580
|
*/
|
|
4581
|
-
EstimatedFilesToTransfer?: number;
|
|
4581
|
+
EstimatedFilesToTransfer?: number | undefined;
|
|
4582
4582
|
/**
|
|
4583
4583
|
* <p>The number of logical bytes that DataSync expects to write to the destination
|
|
4584
4584
|
* location.</p>
|
|
4585
4585
|
* @public
|
|
4586
4586
|
*/
|
|
4587
|
-
EstimatedBytesToTransfer?: number;
|
|
4587
|
+
EstimatedBytesToTransfer?: number | undefined;
|
|
4588
4588
|
/**
|
|
4589
4589
|
* <p>The number of files, objects, and directories that DataSync actually
|
|
4590
4590
|
* transfers over the network. This value is updated periodically during the task execution's
|
|
@@ -4597,19 +4597,19 @@ export interface DescribeTaskExecutionResponse {
|
|
|
4597
4597
|
* your task execution.</p>
|
|
4598
4598
|
* @public
|
|
4599
4599
|
*/
|
|
4600
|
-
FilesTransferred?: number;
|
|
4600
|
+
FilesTransferred?: number | undefined;
|
|
4601
4601
|
/**
|
|
4602
4602
|
* <p>The number of logical bytes that DataSync actually writes to the destination
|
|
4603
4603
|
* location.</p>
|
|
4604
4604
|
* @public
|
|
4605
4605
|
*/
|
|
4606
|
-
BytesWritten?: number;
|
|
4606
|
+
BytesWritten?: number | undefined;
|
|
4607
4607
|
/**
|
|
4608
4608
|
* <p>The number of bytes that DataSync sends to the network before compression (if
|
|
4609
4609
|
* compression is possible). For the number of bytes transferred over the network, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/API_DescribeTaskExecution.html#DataSync-DescribeTaskExecution-response-BytesCompressed">BytesCompressed</a>. </p>
|
|
4610
4610
|
* @public
|
|
4611
4611
|
*/
|
|
4612
|
-
BytesTransferred?: number;
|
|
4612
|
+
BytesTransferred?: number | undefined;
|
|
4613
4613
|
/**
|
|
4614
4614
|
* <p>The number of physical bytes that DataSync transfers over the network after
|
|
4615
4615
|
* compression (if compression is possible). This number is typically less than <a href="https://docs.aws.amazon.com/datasync/latest/userguide/API_DescribeTaskExecution.html#DataSync-DescribeTaskExecution-response-BytesTransferred">BytesTransferred</a> unless the data isn't compressible.</p>
|
|
@@ -4619,18 +4619,18 @@ export interface DescribeTaskExecutionResponse {
|
|
|
4619
4619
|
* </note>
|
|
4620
4620
|
* @public
|
|
4621
4621
|
*/
|
|
4622
|
-
BytesCompressed?: number;
|
|
4622
|
+
BytesCompressed?: number | undefined;
|
|
4623
4623
|
/**
|
|
4624
4624
|
* <p>The result of the task execution.</p>
|
|
4625
4625
|
* @public
|
|
4626
4626
|
*/
|
|
4627
|
-
Result?: TaskExecutionResultDetail;
|
|
4627
|
+
Result?: TaskExecutionResultDetail | undefined;
|
|
4628
4628
|
/**
|
|
4629
4629
|
* <p>The configuration of your task report, which provides detailed information about for your
|
|
4630
4630
|
* DataSync transfer. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/task-reports.html">Creating a task report</a>.</p>
|
|
4631
4631
|
* @public
|
|
4632
4632
|
*/
|
|
4633
|
-
TaskReportConfig?: TaskReportConfig;
|
|
4633
|
+
TaskReportConfig?: TaskReportConfig | undefined;
|
|
4634
4634
|
/**
|
|
4635
4635
|
* <p>The number of files, objects, and directories that DataSync actually deletes in
|
|
4636
4636
|
* your destination location. If you don't <a href="https://docs.aws.amazon.com/datasync/latest/userguide/configure-metadata.html">configure your task</a> to
|
|
@@ -4638,13 +4638,13 @@ export interface DescribeTaskExecutionResponse {
|
|
|
4638
4638
|
* <code>0</code>.</p>
|
|
4639
4639
|
* @public
|
|
4640
4640
|
*/
|
|
4641
|
-
FilesDeleted?: number;
|
|
4641
|
+
FilesDeleted?: number | undefined;
|
|
4642
4642
|
/**
|
|
4643
4643
|
* <p>The number of files, objects, and directories that DataSync skips during your
|
|
4644
4644
|
* transfer.</p>
|
|
4645
4645
|
* @public
|
|
4646
4646
|
*/
|
|
4647
|
-
FilesSkipped?: number;
|
|
4647
|
+
FilesSkipped?: number | undefined;
|
|
4648
4648
|
/**
|
|
4649
4649
|
* <p>The number of files, objects, and directories that DataSync verifies during your
|
|
4650
4650
|
* transfer.</p>
|
|
@@ -4655,13 +4655,13 @@ export interface DescribeTaskExecutionResponse {
|
|
|
4655
4655
|
* </note>
|
|
4656
4656
|
* @public
|
|
4657
4657
|
*/
|
|
4658
|
-
FilesVerified?: number;
|
|
4658
|
+
FilesVerified?: number | undefined;
|
|
4659
4659
|
/**
|
|
4660
4660
|
* <p>Indicates whether DataSync generated a complete <a href="https://docs.aws.amazon.com/datasync/latest/userguide/task-reports.html">task report</a> for your
|
|
4661
4661
|
* transfer.</p>
|
|
4662
4662
|
* @public
|
|
4663
4663
|
*/
|
|
4664
|
-
ReportResult?: ReportResult;
|
|
4664
|
+
ReportResult?: ReportResult | undefined;
|
|
4665
4665
|
/**
|
|
4666
4666
|
* <p>The number of files, objects, and directories that DataSync expects to delete in
|
|
4667
4667
|
* your destination location. If you don't <a href="https://docs.aws.amazon.com/datasync/latest/userguide/configure-metadata.html">configure your task</a> to
|
|
@@ -4669,12 +4669,12 @@ export interface DescribeTaskExecutionResponse {
|
|
|
4669
4669
|
* <code>0</code>.</p>
|
|
4670
4670
|
* @public
|
|
4671
4671
|
*/
|
|
4672
|
-
EstimatedFilesToDelete?: number;
|
|
4672
|
+
EstimatedFilesToDelete?: number | undefined;
|
|
4673
4673
|
/**
|
|
4674
4674
|
* <p>The task mode that you're using. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/choosing-task-mode.html">Choosing a task mode for your data transfer</a>.</p>
|
|
4675
4675
|
* @public
|
|
4676
4676
|
*/
|
|
4677
|
-
TaskMode?: TaskMode;
|
|
4677
|
+
TaskMode?: TaskMode | undefined;
|
|
4678
4678
|
/**
|
|
4679
4679
|
* <p>The number of objects that DataSync will attempt to transfer after comparing
|
|
4680
4680
|
* your source and destination locations.</p>
|
|
@@ -4685,7 +4685,7 @@ export interface DescribeTaskExecutionResponse {
|
|
|
4685
4685
|
* <p>This metric isn't applicable if you configure your task to <a href="https://docs.aws.amazon.com/datasync/latest/userguide/configure-metadata.html#task-option-transfer-mode">transfer all data</a>. In that scenario, DataSync copies everything from the source to the destination without comparing differences between the locations.</p>
|
|
4686
4686
|
* @public
|
|
4687
4687
|
*/
|
|
4688
|
-
FilesPrepared?: number;
|
|
4688
|
+
FilesPrepared?: number | undefined;
|
|
4689
4689
|
/**
|
|
4690
4690
|
* <p>The number of
|
|
4691
4691
|
* objects
|
|
@@ -4698,7 +4698,7 @@ export interface DescribeTaskExecutionResponse {
|
|
|
4698
4698
|
* </note>
|
|
4699
4699
|
* @public
|
|
4700
4700
|
*/
|
|
4701
|
-
FilesListed?: TaskExecutionFilesListedDetail;
|
|
4701
|
+
FilesListed?: TaskExecutionFilesListedDetail | undefined;
|
|
4702
4702
|
/**
|
|
4703
4703
|
* <p>The number of objects that DataSync fails to prepare, transfer, verify, and
|
|
4704
4704
|
* delete during your task execution.</p>
|
|
@@ -4708,7 +4708,7 @@ export interface DescribeTaskExecutionResponse {
|
|
|
4708
4708
|
* </note>
|
|
4709
4709
|
* @public
|
|
4710
4710
|
*/
|
|
4711
|
-
FilesFailed?: TaskExecutionFilesFailedDetail;
|
|
4711
|
+
FilesFailed?: TaskExecutionFilesFailedDetail | undefined;
|
|
4712
4712
|
}
|
|
4713
4713
|
/**
|
|
4714
4714
|
* <p>The details about a specific DataSync discovery job.</p>
|
|
@@ -4719,12 +4719,12 @@ export interface DiscoveryJobListEntry {
|
|
|
4719
4719
|
* <p>The Amazon Resource Name (ARN) of a discovery job.</p>
|
|
4720
4720
|
* @public
|
|
4721
4721
|
*/
|
|
4722
|
-
DiscoveryJobArn?: string;
|
|
4722
|
+
DiscoveryJobArn?: string | undefined;
|
|
4723
4723
|
/**
|
|
4724
4724
|
* <p>The status of a discovery job. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#discovery-job-statuses-table">Discovery job statuses</a>.</p>
|
|
4725
4725
|
* @public
|
|
4726
4726
|
*/
|
|
4727
|
-
Status?: DiscoveryJobStatus;
|
|
4727
|
+
Status?: DiscoveryJobStatus | undefined;
|
|
4728
4728
|
}
|
|
4729
4729
|
/**
|
|
4730
4730
|
* @public
|
|
@@ -4764,13 +4764,13 @@ export interface ListAgentsRequest {
|
|
|
4764
4764
|
* default, a response shows a maximum of 100 agents.</p>
|
|
4765
4765
|
* @public
|
|
4766
4766
|
*/
|
|
4767
|
-
MaxResults?: number;
|
|
4767
|
+
MaxResults?: number | undefined;
|
|
4768
4768
|
/**
|
|
4769
4769
|
* <p>Specifies an opaque string that indicates the position to begin the next list of
|
|
4770
4770
|
* results in the response.</p>
|
|
4771
4771
|
* @public
|
|
4772
4772
|
*/
|
|
4773
|
-
NextToken?: string;
|
|
4773
|
+
NextToken?: string | undefined;
|
|
4774
4774
|
}
|
|
4775
4775
|
/**
|
|
4776
4776
|
* <p>ListAgentsResponse</p>
|
|
@@ -4782,13 +4782,13 @@ export interface ListAgentsResponse {
|
|
|
4782
4782
|
* Resource Names (ARNs).</p>
|
|
4783
4783
|
* @public
|
|
4784
4784
|
*/
|
|
4785
|
-
Agents?: AgentListEntry[];
|
|
4785
|
+
Agents?: AgentListEntry[] | undefined;
|
|
4786
4786
|
/**
|
|
4787
4787
|
* <p>The opaque string that indicates the position to begin the next list of results in the
|
|
4788
4788
|
* response.</p>
|
|
4789
4789
|
* @public
|
|
4790
4790
|
*/
|
|
4791
|
-
NextToken?: string;
|
|
4791
|
+
NextToken?: string | undefined;
|
|
4792
4792
|
}
|
|
4793
4793
|
/**
|
|
4794
4794
|
* @public
|
|
@@ -4800,18 +4800,18 @@ export interface ListDiscoveryJobsRequest {
|
|
|
4800
4800
|
* storage system.</p>
|
|
4801
4801
|
* @public
|
|
4802
4802
|
*/
|
|
4803
|
-
StorageSystemArn?: string;
|
|
4803
|
+
StorageSystemArn?: string | undefined;
|
|
4804
4804
|
/**
|
|
4805
4805
|
* <p>Specifies how many results you want in the response.</p>
|
|
4806
4806
|
* @public
|
|
4807
4807
|
*/
|
|
4808
|
-
MaxResults?: number;
|
|
4808
|
+
MaxResults?: number | undefined;
|
|
4809
4809
|
/**
|
|
4810
4810
|
* <p>Specifies an opaque string that indicates the position to begin the next list of results
|
|
4811
4811
|
* in the response.</p>
|
|
4812
4812
|
* @public
|
|
4813
4813
|
*/
|
|
4814
|
-
NextToken?: string;
|
|
4814
|
+
NextToken?: string | undefined;
|
|
4815
4815
|
}
|
|
4816
4816
|
/**
|
|
4817
4817
|
* @public
|
|
@@ -4821,13 +4821,13 @@ export interface ListDiscoveryJobsResponse {
|
|
|
4821
4821
|
* <p>The discovery jobs that you've run.</p>
|
|
4822
4822
|
* @public
|
|
4823
4823
|
*/
|
|
4824
|
-
DiscoveryJobs?: DiscoveryJobListEntry[];
|
|
4824
|
+
DiscoveryJobs?: DiscoveryJobListEntry[] | undefined;
|
|
4825
4825
|
/**
|
|
4826
4826
|
* <p>The opaque string that indicates the position to begin the next list of results in the
|
|
4827
4827
|
* response.</p>
|
|
4828
4828
|
* @public
|
|
4829
4829
|
*/
|
|
4830
|
-
NextToken?: string;
|
|
4830
|
+
NextToken?: string | undefined;
|
|
4831
4831
|
}
|
|
4832
4832
|
/**
|
|
4833
4833
|
* @public
|
|
@@ -4900,13 +4900,13 @@ export interface ListLocationsRequest {
|
|
|
4900
4900
|
* <p>The maximum number of locations to return.</p>
|
|
4901
4901
|
* @public
|
|
4902
4902
|
*/
|
|
4903
|
-
MaxResults?: number;
|
|
4903
|
+
MaxResults?: number | undefined;
|
|
4904
4904
|
/**
|
|
4905
4905
|
* <p>An opaque string that indicates the position at which to begin the next list of
|
|
4906
4906
|
* locations.</p>
|
|
4907
4907
|
* @public
|
|
4908
4908
|
*/
|
|
4909
|
-
NextToken?: string;
|
|
4909
|
+
NextToken?: string | undefined;
|
|
4910
4910
|
/**
|
|
4911
4911
|
* <p>You can use API filters to narrow down the list of resources returned by
|
|
4912
4912
|
* <code>ListLocations</code>. For example, to retrieve all tasks on a specific source
|
|
@@ -4914,7 +4914,7 @@ export interface ListLocationsRequest {
|
|
|
4914
4914
|
* and <code>Operator Equals</code>.</p>
|
|
4915
4915
|
* @public
|
|
4916
4916
|
*/
|
|
4917
|
-
Filters?: LocationFilter[];
|
|
4917
|
+
Filters?: LocationFilter[] | undefined;
|
|
4918
4918
|
}
|
|
4919
4919
|
/**
|
|
4920
4920
|
* <p>Represents a single entry in a list of locations. <code>LocationListEntry</code>
|
|
@@ -4929,7 +4929,7 @@ export interface LocationListEntry {
|
|
|
4929
4929
|
* want to mount and use as the root of the location.</p>
|
|
4930
4930
|
* @public
|
|
4931
4931
|
*/
|
|
4932
|
-
LocationArn?: string;
|
|
4932
|
+
LocationArn?: string | undefined;
|
|
4933
4933
|
/**
|
|
4934
4934
|
* <p>Represents a list of URIs of a location. <code>LocationUri</code> returns an array that
|
|
4935
4935
|
* contains a list of locations when the <a href="https://docs.aws.amazon.com/datasync/latest/userguide/API_ListLocations.html">ListLocations</a> operation is
|
|
@@ -4948,7 +4948,7 @@ export interface LocationListEntry {
|
|
|
4948
4948
|
* <p></p>
|
|
4949
4949
|
* @public
|
|
4950
4950
|
*/
|
|
4951
|
-
LocationUri?: string;
|
|
4951
|
+
LocationUri?: string | undefined;
|
|
4952
4952
|
}
|
|
4953
4953
|
/**
|
|
4954
4954
|
* <p>ListLocationsResponse</p>
|
|
@@ -4959,13 +4959,13 @@ export interface ListLocationsResponse {
|
|
|
4959
4959
|
* <p>An array that contains a list of locations.</p>
|
|
4960
4960
|
* @public
|
|
4961
4961
|
*/
|
|
4962
|
-
Locations?: LocationListEntry[];
|
|
4962
|
+
Locations?: LocationListEntry[] | undefined;
|
|
4963
4963
|
/**
|
|
4964
4964
|
* <p>An opaque string that indicates the position at which to begin returning the next list
|
|
4965
4965
|
* of locations.</p>
|
|
4966
4966
|
* @public
|
|
4967
4967
|
*/
|
|
4968
|
-
NextToken?: string;
|
|
4968
|
+
NextToken?: string | undefined;
|
|
4969
4969
|
}
|
|
4970
4970
|
/**
|
|
4971
4971
|
* @public
|
|
@@ -4975,13 +4975,13 @@ export interface ListStorageSystemsRequest {
|
|
|
4975
4975
|
* <p>Specifies how many results you want in the response.</p>
|
|
4976
4976
|
* @public
|
|
4977
4977
|
*/
|
|
4978
|
-
MaxResults?: number;
|
|
4978
|
+
MaxResults?: number | undefined;
|
|
4979
4979
|
/**
|
|
4980
4980
|
* <p>Specifies an opaque string that indicates the position to begin the next list of results
|
|
4981
4981
|
* in the response. </p>
|
|
4982
4982
|
* @public
|
|
4983
4983
|
*/
|
|
4984
|
-
NextToken?: string;
|
|
4984
|
+
NextToken?: string | undefined;
|
|
4985
4985
|
}
|
|
4986
4986
|
/**
|
|
4987
4987
|
* <p>Information that identifies an on-premises storage system that you're using with
|
|
@@ -4994,12 +4994,12 @@ export interface StorageSystemListEntry {
|
|
|
4994
4994
|
* DataSync Discovery.</p>
|
|
4995
4995
|
* @public
|
|
4996
4996
|
*/
|
|
4997
|
-
StorageSystemArn?: string;
|
|
4997
|
+
StorageSystemArn?: string | undefined;
|
|
4998
4998
|
/**
|
|
4999
4999
|
* <p>The name of an on-premises storage system that you added to DataSync Discovery.</p>
|
|
5000
5000
|
* @public
|
|
5001
5001
|
*/
|
|
5002
|
-
Name?: string;
|
|
5002
|
+
Name?: string | undefined;
|
|
5003
5003
|
}
|
|
5004
5004
|
/**
|
|
5005
5005
|
* @public
|
|
@@ -5010,13 +5010,13 @@ export interface ListStorageSystemsResponse {
|
|
|
5010
5010
|
* DataSync Discovery.</p>
|
|
5011
5011
|
* @public
|
|
5012
5012
|
*/
|
|
5013
|
-
StorageSystems?: StorageSystemListEntry[];
|
|
5013
|
+
StorageSystems?: StorageSystemListEntry[] | undefined;
|
|
5014
5014
|
/**
|
|
5015
5015
|
* <p>The opaque string that indicates the position to begin the next list of results in the
|
|
5016
5016
|
* response.</p>
|
|
5017
5017
|
* @public
|
|
5018
5018
|
*/
|
|
5019
|
-
NextToken?: string;
|
|
5019
|
+
NextToken?: string | undefined;
|
|
5020
5020
|
}
|
|
5021
5021
|
/**
|
|
5022
5022
|
* <p>ListTagsForResourceRequest</p>
|
|
@@ -5033,13 +5033,13 @@ export interface ListTagsForResourceRequest {
|
|
|
5033
5033
|
* <p>Specifies how many results that you want in the response.</p>
|
|
5034
5034
|
* @public
|
|
5035
5035
|
*/
|
|
5036
|
-
MaxResults?: number;
|
|
5036
|
+
MaxResults?: number | undefined;
|
|
5037
5037
|
/**
|
|
5038
5038
|
* <p>Specifies an opaque string that indicates the position to begin the next list of
|
|
5039
5039
|
* results in the response.</p>
|
|
5040
5040
|
* @public
|
|
5041
5041
|
*/
|
|
5042
|
-
NextToken?: string;
|
|
5042
|
+
NextToken?: string | undefined;
|
|
5043
5043
|
}
|
|
5044
5044
|
/**
|
|
5045
5045
|
* <p>ListTagsForResourceResponse</p>
|
|
@@ -5050,13 +5050,13 @@ export interface ListTagsForResourceResponse {
|
|
|
5050
5050
|
* <p>An array of tags applied to the specified resource.</p>
|
|
5051
5051
|
* @public
|
|
5052
5052
|
*/
|
|
5053
|
-
Tags?: TagListEntry[];
|
|
5053
|
+
Tags?: TagListEntry[] | undefined;
|
|
5054
5054
|
/**
|
|
5055
5055
|
* <p>The opaque string that indicates the position to begin the next list of results in the
|
|
5056
5056
|
* response.</p>
|
|
5057
5057
|
* @public
|
|
5058
5058
|
*/
|
|
5059
|
-
NextToken?: string;
|
|
5059
|
+
NextToken?: string | undefined;
|
|
5060
5060
|
}
|
|
5061
5061
|
/**
|
|
5062
5062
|
* <p>ListTaskExecutions</p>
|
|
@@ -5068,18 +5068,18 @@ export interface ListTaskExecutionsRequest {
|
|
|
5068
5068
|
* information about.</p>
|
|
5069
5069
|
* @public
|
|
5070
5070
|
*/
|
|
5071
|
-
TaskArn?: string;
|
|
5071
|
+
TaskArn?: string | undefined;
|
|
5072
5072
|
/**
|
|
5073
5073
|
* <p>Specifies how many results you want in the response.</p>
|
|
5074
5074
|
* @public
|
|
5075
5075
|
*/
|
|
5076
|
-
MaxResults?: number;
|
|
5076
|
+
MaxResults?: number | undefined;
|
|
5077
5077
|
/**
|
|
5078
5078
|
* <p>Specifies an opaque string that indicates the position at which to begin the next list
|
|
5079
5079
|
* of results in the response.</p>
|
|
5080
5080
|
* @public
|
|
5081
5081
|
*/
|
|
5082
|
-
NextToken?: string;
|
|
5082
|
+
NextToken?: string | undefined;
|
|
5083
5083
|
}
|
|
5084
5084
|
/**
|
|
5085
5085
|
* <p>Represents a single entry in a list of DataSync task executions that's
|
|
@@ -5092,17 +5092,17 @@ export interface TaskExecutionListEntry {
|
|
|
5092
5092
|
* <p>The Amazon Resource Name (ARN) of a task execution.</p>
|
|
5093
5093
|
* @public
|
|
5094
5094
|
*/
|
|
5095
|
-
TaskExecutionArn?: string;
|
|
5095
|
+
TaskExecutionArn?: string | undefined;
|
|
5096
5096
|
/**
|
|
5097
5097
|
* <p>The status of a task execution. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/understand-task-statuses.html#understand-task-execution-statuses">Task execution statuses</a>.</p>
|
|
5098
5098
|
* @public
|
|
5099
5099
|
*/
|
|
5100
|
-
Status?: TaskExecutionStatus;
|
|
5100
|
+
Status?: TaskExecutionStatus | undefined;
|
|
5101
5101
|
/**
|
|
5102
5102
|
* <p>The task mode that you're using. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/choosing-task-mode.html">Choosing a task mode for your data transfer</a>.</p>
|
|
5103
5103
|
* @public
|
|
5104
5104
|
*/
|
|
5105
|
-
TaskMode?: TaskMode;
|
|
5105
|
+
TaskMode?: TaskMode | undefined;
|
|
5106
5106
|
}
|
|
5107
5107
|
/**
|
|
5108
5108
|
* <p>ListTaskExecutionsResponse</p>
|
|
@@ -5113,13 +5113,13 @@ export interface ListTaskExecutionsResponse {
|
|
|
5113
5113
|
* <p>A list of the task's executions.</p>
|
|
5114
5114
|
* @public
|
|
5115
5115
|
*/
|
|
5116
|
-
TaskExecutions?: TaskExecutionListEntry[];
|
|
5116
|
+
TaskExecutions?: TaskExecutionListEntry[] | undefined;
|
|
5117
5117
|
/**
|
|
5118
5118
|
* <p>The opaque string that indicates the position to begin the next list of results in the
|
|
5119
5119
|
* response.</p>
|
|
5120
5120
|
* @public
|
|
5121
5121
|
*/
|
|
5122
|
-
NextToken?: string;
|
|
5122
|
+
NextToken?: string | undefined;
|
|
5123
5123
|
}
|
|
5124
5124
|
/**
|
|
5125
5125
|
* @public
|
|
@@ -5171,13 +5171,13 @@ export interface ListTasksRequest {
|
|
|
5171
5171
|
* <p>The maximum number of tasks to return.</p>
|
|
5172
5172
|
* @public
|
|
5173
5173
|
*/
|
|
5174
|
-
MaxResults?: number;
|
|
5174
|
+
MaxResults?: number | undefined;
|
|
5175
5175
|
/**
|
|
5176
5176
|
* <p>An opaque string that indicates the position at which to begin the next list of
|
|
5177
5177
|
* tasks.</p>
|
|
5178
5178
|
* @public
|
|
5179
5179
|
*/
|
|
5180
|
-
NextToken?: string;
|
|
5180
|
+
NextToken?: string | undefined;
|
|
5181
5181
|
/**
|
|
5182
5182
|
* <p>You can use API filters to narrow down the list of resources returned by
|
|
5183
5183
|
* <code>ListTasks</code>. For example, to retrieve all tasks on a specific source location,
|
|
@@ -5185,7 +5185,7 @@ export interface ListTasksRequest {
|
|
|
5185
5185
|
* Equals</code> with the ARN for the location.</p>
|
|
5186
5186
|
* @public
|
|
5187
5187
|
*/
|
|
5188
|
-
Filters?: TaskFilter[];
|
|
5188
|
+
Filters?: TaskFilter[] | undefined;
|
|
5189
5189
|
}
|
|
5190
5190
|
/**
|
|
5191
5191
|
* <p>Represents a single entry in a list of tasks. <code>TaskListEntry</code> returns an
|
|
@@ -5199,22 +5199,22 @@ export interface TaskListEntry {
|
|
|
5199
5199
|
* <p>The Amazon Resource Name (ARN) of the task.</p>
|
|
5200
5200
|
* @public
|
|
5201
5201
|
*/
|
|
5202
|
-
TaskArn?: string;
|
|
5202
|
+
TaskArn?: string | undefined;
|
|
5203
5203
|
/**
|
|
5204
5204
|
* <p>The status of the task.</p>
|
|
5205
5205
|
* @public
|
|
5206
5206
|
*/
|
|
5207
|
-
Status?: TaskStatus;
|
|
5207
|
+
Status?: TaskStatus | undefined;
|
|
5208
5208
|
/**
|
|
5209
5209
|
* <p>The name of the task.</p>
|
|
5210
5210
|
* @public
|
|
5211
5211
|
*/
|
|
5212
|
-
Name?: string;
|
|
5212
|
+
Name?: string | undefined;
|
|
5213
5213
|
/**
|
|
5214
5214
|
* <p>The task mode that you're using. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/choosing-task-mode.html">Choosing a task mode for your data transfer</a>.</p>
|
|
5215
5215
|
* @public
|
|
5216
5216
|
*/
|
|
5217
|
-
TaskMode?: TaskMode;
|
|
5217
|
+
TaskMode?: TaskMode | undefined;
|
|
5218
5218
|
}
|
|
5219
5219
|
/**
|
|
5220
5220
|
* <p>ListTasksResponse</p>
|
|
@@ -5225,13 +5225,13 @@ export interface ListTasksResponse {
|
|
|
5225
5225
|
* <p>A list of all the tasks that are returned.</p>
|
|
5226
5226
|
* @public
|
|
5227
5227
|
*/
|
|
5228
|
-
Tasks?: TaskListEntry[];
|
|
5228
|
+
Tasks?: TaskListEntry[] | undefined;
|
|
5229
5229
|
/**
|
|
5230
5230
|
* <p>An opaque string that indicates the position at which to begin returning the next list
|
|
5231
5231
|
* of tasks.</p>
|
|
5232
5232
|
* @public
|
|
5233
5233
|
*/
|
|
5234
|
-
NextToken?: string;
|
|
5234
|
+
NextToken?: string | undefined;
|
|
5235
5235
|
}
|
|
5236
5236
|
/**
|
|
5237
5237
|
* @public
|
|
@@ -5274,13 +5274,13 @@ export interface StartDiscoveryJobRequest {
|
|
|
5274
5274
|
* you don't specify a client token, DataSync generates one for you automatically.</p>
|
|
5275
5275
|
* @public
|
|
5276
5276
|
*/
|
|
5277
|
-
ClientToken?: string;
|
|
5277
|
+
ClientToken?: string | undefined;
|
|
5278
5278
|
/**
|
|
5279
5279
|
* <p>Specifies labels that help you categorize, filter, and search for your Amazon Web Services
|
|
5280
5280
|
* resources.</p>
|
|
5281
5281
|
* @public
|
|
5282
5282
|
*/
|
|
5283
|
-
Tags?: TagListEntry[];
|
|
5283
|
+
Tags?: TagListEntry[] | undefined;
|
|
5284
5284
|
}
|
|
5285
5285
|
/**
|
|
5286
5286
|
* @public
|
|
@@ -5290,7 +5290,7 @@ export interface StartDiscoveryJobResponse {
|
|
|
5290
5290
|
* <p>The ARN of the discovery job that you started.</p>
|
|
5291
5291
|
* @public
|
|
5292
5292
|
*/
|
|
5293
|
-
DiscoveryJobArn?: string;
|
|
5293
|
+
DiscoveryJobArn?: string | undefined;
|
|
5294
5294
|
}
|
|
5295
5295
|
/**
|
|
5296
5296
|
* <p>StartTaskExecutionRequest</p>
|
|
@@ -5310,7 +5310,7 @@ export interface StartTaskExecutionRequest {
|
|
|
5310
5310
|
* <p>You also can override your task options for each task execution. For example, you might want to adjust the <code>LogLevel</code> for an individual execution.</p>
|
|
5311
5311
|
* @public
|
|
5312
5312
|
*/
|
|
5313
|
-
OverrideOptions?: Options;
|
|
5313
|
+
OverrideOptions?: Options | undefined;
|
|
5314
5314
|
/**
|
|
5315
5315
|
* <p>Specifies a list of filter rules that determines which files to include when running a
|
|
5316
5316
|
* task. The pattern should contain a single filter string that consists of the patterns to
|
|
@@ -5318,21 +5318,21 @@ export interface StartTaskExecutionRequest {
|
|
|
5318
5318
|
* <code>"/folder1|/folder2"</code>. </p>
|
|
5319
5319
|
* @public
|
|
5320
5320
|
*/
|
|
5321
|
-
Includes?: FilterRule[];
|
|
5321
|
+
Includes?: FilterRule[] | undefined;
|
|
5322
5322
|
/**
|
|
5323
5323
|
* <p>Specifies a list of filter rules that determines which files to exclude from a task. The
|
|
5324
5324
|
* list contains a single filter string that consists of the patterns to exclude. The patterns
|
|
5325
5325
|
* are delimited by "|" (that is, a pipe), for example, <code>"/folder1|/folder2"</code>. </p>
|
|
5326
5326
|
* @public
|
|
5327
5327
|
*/
|
|
5328
|
-
Excludes?: FilterRule[];
|
|
5328
|
+
Excludes?: FilterRule[] | undefined;
|
|
5329
5329
|
/**
|
|
5330
5330
|
* <p>Configures a manifest, which is a list of files or objects that you want DataSync to transfer. For more information and configuration examples, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/transferring-with-manifest.html">Specifying what DataSync transfers by using a manifest</a>.</p>
|
|
5331
5331
|
* <p>When using this parameter, your caller identity (the role that you're using DataSync with) must have the <code>iam:PassRole</code> permission. The <a href="https://docs.aws.amazon.com/datasync/latest/userguide/security-iam-awsmanpol.html#security-iam-awsmanpol-awsdatasyncfullaccess">AWSDataSyncFullAccess</a> policy includes this permission.</p>
|
|
5332
5332
|
* <p>To remove a manifest configuration, specify this parameter with an empty value.</p>
|
|
5333
5333
|
* @public
|
|
5334
5334
|
*/
|
|
5335
|
-
ManifestConfig?: ManifestConfig;
|
|
5335
|
+
ManifestConfig?: ManifestConfig | undefined;
|
|
5336
5336
|
/**
|
|
5337
5337
|
* <p>Specifies how you want to configure a task report, which provides detailed information
|
|
5338
5338
|
* about your DataSync transfer. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/task-reports.html">Monitoring your DataSync
|
|
@@ -5341,7 +5341,7 @@ export interface StartTaskExecutionRequest {
|
|
|
5341
5341
|
* <p>To remove a task report configuration, specify this parameter as empty.</p>
|
|
5342
5342
|
* @public
|
|
5343
5343
|
*/
|
|
5344
|
-
TaskReportConfig?: TaskReportConfig;
|
|
5344
|
+
TaskReportConfig?: TaskReportConfig | undefined;
|
|
5345
5345
|
/**
|
|
5346
5346
|
* <p>Specifies the tags that you want to apply to the Amazon Resource Name (ARN) representing
|
|
5347
5347
|
* the task execution.</p>
|
|
@@ -5350,7 +5350,7 @@ export interface StartTaskExecutionRequest {
|
|
|
5350
5350
|
* your DataSync resources.</p>
|
|
5351
5351
|
* @public
|
|
5352
5352
|
*/
|
|
5353
|
-
Tags?: TagListEntry[];
|
|
5353
|
+
Tags?: TagListEntry[] | undefined;
|
|
5354
5354
|
}
|
|
5355
5355
|
/**
|
|
5356
5356
|
* <p>StartTaskExecutionResponse</p>
|
|
@@ -5361,7 +5361,7 @@ export interface StartTaskExecutionResponse {
|
|
|
5361
5361
|
* <p>The ARN of the running task execution.</p>
|
|
5362
5362
|
* @public
|
|
5363
5363
|
*/
|
|
5364
|
-
TaskExecutionArn?: string;
|
|
5364
|
+
TaskExecutionArn?: string | undefined;
|
|
5365
5365
|
}
|
|
5366
5366
|
/**
|
|
5367
5367
|
* @public
|
|
@@ -5436,7 +5436,7 @@ export interface UpdateAgentRequest {
|
|
|
5436
5436
|
* <p>The name that you want to use to configure the agent.</p>
|
|
5437
5437
|
* @public
|
|
5438
5438
|
*/
|
|
5439
|
-
Name?: string;
|
|
5439
|
+
Name?: string | undefined;
|
|
5440
5440
|
}
|
|
5441
5441
|
/**
|
|
5442
5442
|
* @public
|
|
@@ -5479,36 +5479,36 @@ export interface UpdateLocationAzureBlobRequest {
|
|
|
5479
5479
|
* container (for example, <code>/my/images</code>).</p>
|
|
5480
5480
|
* @public
|
|
5481
5481
|
*/
|
|
5482
|
-
Subdirectory?: string;
|
|
5482
|
+
Subdirectory?: string | undefined;
|
|
5483
5483
|
/**
|
|
5484
5484
|
* <p>Specifies the authentication method DataSync uses to access your Azure Blob Storage. DataSync can access blob storage using a shared access signature (SAS).</p>
|
|
5485
5485
|
* @public
|
|
5486
5486
|
*/
|
|
5487
|
-
AuthenticationType?: AzureBlobAuthenticationType;
|
|
5487
|
+
AuthenticationType?: AzureBlobAuthenticationType | undefined;
|
|
5488
5488
|
/**
|
|
5489
5489
|
* <p>Specifies the SAS configuration that allows DataSync to access your Azure Blob Storage.</p>
|
|
5490
5490
|
* @public
|
|
5491
5491
|
*/
|
|
5492
|
-
SasConfiguration?: AzureBlobSasConfiguration;
|
|
5492
|
+
SasConfiguration?: AzureBlobSasConfiguration | undefined;
|
|
5493
5493
|
/**
|
|
5494
5494
|
* <p>Specifies the type of blob that you want your objects or files to be when transferring
|
|
5495
5495
|
* them into Azure Blob Storage. Currently, DataSync only supports moving data into
|
|
5496
5496
|
* Azure Blob Storage as block blobs. For more information on blob types, see the <a href="https://learn.microsoft.com/en-us/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs">Azure Blob Storage documentation</a>.</p>
|
|
5497
5497
|
* @public
|
|
5498
5498
|
*/
|
|
5499
|
-
BlobType?: AzureBlobType;
|
|
5499
|
+
BlobType?: AzureBlobType | undefined;
|
|
5500
5500
|
/**
|
|
5501
5501
|
* <p>Specifies the access tier that you want your objects or files transferred into. This only applies when using the location as a transfer destination. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access-tiers">Access tiers</a>.</p>
|
|
5502
5502
|
* @public
|
|
5503
5503
|
*/
|
|
5504
|
-
AccessTier?: AzureAccessTier;
|
|
5504
|
+
AccessTier?: AzureAccessTier | undefined;
|
|
5505
5505
|
/**
|
|
5506
5506
|
* <p>Specifies the Amazon Resource Name (ARN) of the DataSync agent that can connect with your Azure Blob Storage container.</p>
|
|
5507
5507
|
* <p>You can specify more than one agent. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/multiple-agents.html">Using multiple
|
|
5508
5508
|
* agents for your transfer</a>.</p>
|
|
5509
5509
|
* @public
|
|
5510
5510
|
*/
|
|
5511
|
-
AgentArns?: string[];
|
|
5511
|
+
AgentArns?: string[] | undefined;
|
|
5512
5512
|
}
|
|
5513
5513
|
/**
|
|
5514
5514
|
* @public
|
|
@@ -5529,51 +5529,51 @@ export interface UpdateLocationHdfsRequest {
|
|
|
5529
5529
|
* data to the HDFS cluster.</p>
|
|
5530
5530
|
* @public
|
|
5531
5531
|
*/
|
|
5532
|
-
Subdirectory?: string;
|
|
5532
|
+
Subdirectory?: string | undefined;
|
|
5533
5533
|
/**
|
|
5534
5534
|
* <p>The NameNode that manages the HDFS namespace. The NameNode performs operations such as
|
|
5535
5535
|
* opening, closing, and renaming files and directories. The NameNode contains the information to
|
|
5536
5536
|
* map blocks of data to the DataNodes. You can use only one NameNode.</p>
|
|
5537
5537
|
* @public
|
|
5538
5538
|
*/
|
|
5539
|
-
NameNodes?: HdfsNameNode[];
|
|
5539
|
+
NameNodes?: HdfsNameNode[] | undefined;
|
|
5540
5540
|
/**
|
|
5541
5541
|
* <p>The size of the data blocks to write into the HDFS cluster. </p>
|
|
5542
5542
|
* @public
|
|
5543
5543
|
*/
|
|
5544
|
-
BlockSize?: number;
|
|
5544
|
+
BlockSize?: number | undefined;
|
|
5545
5545
|
/**
|
|
5546
5546
|
* <p>The number of DataNodes to replicate the data to when writing to the HDFS cluster. </p>
|
|
5547
5547
|
* @public
|
|
5548
5548
|
*/
|
|
5549
|
-
ReplicationFactor?: number;
|
|
5549
|
+
ReplicationFactor?: number | undefined;
|
|
5550
5550
|
/**
|
|
5551
5551
|
* <p>The URI of the HDFS cluster's Key Management Server (KMS). </p>
|
|
5552
5552
|
* @public
|
|
5553
5553
|
*/
|
|
5554
|
-
KmsKeyProviderUri?: string;
|
|
5554
|
+
KmsKeyProviderUri?: string | undefined;
|
|
5555
5555
|
/**
|
|
5556
5556
|
* <p>The Quality of Protection (QOP) configuration specifies the Remote Procedure Call (RPC)
|
|
5557
5557
|
* and data transfer privacy settings configured on the Hadoop Distributed File System (HDFS)
|
|
5558
5558
|
* cluster. </p>
|
|
5559
5559
|
* @public
|
|
5560
5560
|
*/
|
|
5561
|
-
QopConfiguration?: QopConfiguration;
|
|
5561
|
+
QopConfiguration?: QopConfiguration | undefined;
|
|
5562
5562
|
/**
|
|
5563
5563
|
* <p>The type of authentication used to determine the identity of the user. </p>
|
|
5564
5564
|
* @public
|
|
5565
5565
|
*/
|
|
5566
|
-
AuthenticationType?: HdfsAuthenticationType;
|
|
5566
|
+
AuthenticationType?: HdfsAuthenticationType | undefined;
|
|
5567
5567
|
/**
|
|
5568
5568
|
* <p>The user name used to identify the client on the host operating system.</p>
|
|
5569
5569
|
* @public
|
|
5570
5570
|
*/
|
|
5571
|
-
SimpleUser?: string;
|
|
5571
|
+
SimpleUser?: string | undefined;
|
|
5572
5572
|
/**
|
|
5573
5573
|
* <p>The Kerberos principal with access to the files and folders on the HDFS cluster. </p>
|
|
5574
5574
|
* @public
|
|
5575
5575
|
*/
|
|
5576
|
-
KerberosPrincipal?: string;
|
|
5576
|
+
KerberosPrincipal?: string | undefined;
|
|
5577
5577
|
/**
|
|
5578
5578
|
* <p>The Kerberos key table (keytab) that contains mappings between the defined Kerberos
|
|
5579
5579
|
* principal and the encrypted keys. You can load the keytab from a file by providing the file's
|
|
@@ -5581,7 +5581,7 @@ export interface UpdateLocationHdfsRequest {
|
|
|
5581
5581
|
* provide the base64-encoded text.</p>
|
|
5582
5582
|
* @public
|
|
5583
5583
|
*/
|
|
5584
|
-
KerberosKeytab?: Uint8Array;
|
|
5584
|
+
KerberosKeytab?: Uint8Array | undefined;
|
|
5585
5585
|
/**
|
|
5586
5586
|
* <p>The <code>krb5.conf</code> file that contains the Kerberos configuration information. You
|
|
5587
5587
|
* can load the <code>krb5.conf</code> file by providing the file's address. If you're using the
|
|
@@ -5589,12 +5589,12 @@ export interface UpdateLocationHdfsRequest {
|
|
|
5589
5589
|
* base64-encoded text.</p>
|
|
5590
5590
|
* @public
|
|
5591
5591
|
*/
|
|
5592
|
-
KerberosKrb5Conf?: Uint8Array;
|
|
5592
|
+
KerberosKrb5Conf?: Uint8Array | undefined;
|
|
5593
5593
|
/**
|
|
5594
5594
|
* <p>The Amazon Resource Names (ARNs) of the DataSync agents that can connect to your HDFS cluster.</p>
|
|
5595
5595
|
* @public
|
|
5596
5596
|
*/
|
|
5597
|
-
AgentArns?: string[];
|
|
5597
|
+
AgentArns?: string[] | undefined;
|
|
5598
5598
|
}
|
|
5599
5599
|
/**
|
|
5600
5600
|
* @public
|
|
@@ -5618,18 +5618,18 @@ export interface UpdateLocationNfsRequest {
|
|
|
5618
5618
|
* or from. For information on configuring an export for DataSync, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#accessing-nfs">Accessing NFS file servers</a>.</p>
|
|
5619
5619
|
* @public
|
|
5620
5620
|
*/
|
|
5621
|
-
Subdirectory?: string;
|
|
5621
|
+
Subdirectory?: string | undefined;
|
|
5622
5622
|
/**
|
|
5623
5623
|
* <p>The DataSync agents that can connect to your Network File System (NFS)
|
|
5624
5624
|
* file server.</p>
|
|
5625
5625
|
* @public
|
|
5626
5626
|
*/
|
|
5627
|
-
OnPremConfig?: OnPremConfig;
|
|
5627
|
+
OnPremConfig?: OnPremConfig | undefined;
|
|
5628
5628
|
/**
|
|
5629
5629
|
* <p>Specifies how DataSync can access a location using the NFS protocol.</p>
|
|
5630
5630
|
* @public
|
|
5631
5631
|
*/
|
|
5632
|
-
MountOptions?: NfsMountOptions;
|
|
5632
|
+
MountOptions?: NfsMountOptions | undefined;
|
|
5633
5633
|
}
|
|
5634
5634
|
/**
|
|
5635
5635
|
* @public
|
|
@@ -5650,37 +5650,37 @@ export interface UpdateLocationObjectStorageRequest {
|
|
|
5650
5650
|
* example, port 443).</p>
|
|
5651
5651
|
* @public
|
|
5652
5652
|
*/
|
|
5653
|
-
ServerPort?: number;
|
|
5653
|
+
ServerPort?: number | undefined;
|
|
5654
5654
|
/**
|
|
5655
5655
|
* <p>Specifies the protocol that your object storage server uses to communicate.</p>
|
|
5656
5656
|
* @public
|
|
5657
5657
|
*/
|
|
5658
|
-
ServerProtocol?: ObjectStorageServerProtocol;
|
|
5658
|
+
ServerProtocol?: ObjectStorageServerProtocol | undefined;
|
|
5659
5659
|
/**
|
|
5660
5660
|
* <p>Specifies the object prefix for your object storage server. If this is a source location,
|
|
5661
5661
|
* DataSync only copies objects with this prefix. If this is a destination location, DataSync
|
|
5662
5662
|
* writes all objects with this prefix.</p>
|
|
5663
5663
|
* @public
|
|
5664
5664
|
*/
|
|
5665
|
-
Subdirectory?: string;
|
|
5665
|
+
Subdirectory?: string | undefined;
|
|
5666
5666
|
/**
|
|
5667
5667
|
* <p>Specifies the access key (for example, a user name) if credentials are required to
|
|
5668
5668
|
* authenticate with the object storage server.</p>
|
|
5669
5669
|
* @public
|
|
5670
5670
|
*/
|
|
5671
|
-
AccessKey?: string;
|
|
5671
|
+
AccessKey?: string | undefined;
|
|
5672
5672
|
/**
|
|
5673
5673
|
* <p>Specifies the secret key (for example, a password) if credentials are required to
|
|
5674
5674
|
* authenticate with the object storage server.</p>
|
|
5675
5675
|
* @public
|
|
5676
5676
|
*/
|
|
5677
|
-
SecretKey?: string;
|
|
5677
|
+
SecretKey?: string | undefined;
|
|
5678
5678
|
/**
|
|
5679
5679
|
* <p>Specifies the Amazon Resource Names (ARNs) of the DataSync agents that can
|
|
5680
5680
|
* connect with your object storage system.</p>
|
|
5681
5681
|
* @public
|
|
5682
5682
|
*/
|
|
5683
|
-
AgentArns?: string[];
|
|
5683
|
+
AgentArns?: string[] | undefined;
|
|
5684
5684
|
/**
|
|
5685
5685
|
* <p>Specifies a certificate chain for DataSync to authenticate with your object
|
|
5686
5686
|
* storage system if the system uses a private or self-signed certificate authority (CA). You
|
|
@@ -5709,7 +5709,7 @@ export interface UpdateLocationObjectStorageRequest {
|
|
|
5709
5709
|
* <p>Updating this parameter doesn't interfere with tasks that you have in progress.</p>
|
|
5710
5710
|
* @public
|
|
5711
5711
|
*/
|
|
5712
|
-
ServerCertificate?: Uint8Array;
|
|
5712
|
+
ServerCertificate?: Uint8Array | undefined;
|
|
5713
5713
|
}
|
|
5714
5714
|
/**
|
|
5715
5715
|
* @public
|
|
@@ -5734,7 +5734,7 @@ export interface UpdateLocationSmbRequest {
|
|
|
5734
5734
|
* the SMB share and access all of its data. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html#configuring-smb-permissions">required permissions</a> for SMB locations.</p>
|
|
5735
5735
|
* @public
|
|
5736
5736
|
*/
|
|
5737
|
-
Subdirectory?: string;
|
|
5737
|
+
Subdirectory?: string | undefined;
|
|
5738
5738
|
/**
|
|
5739
5739
|
* <p>Specifies the user name that can mount your SMB file server and has permission to access
|
|
5740
5740
|
* the files and folders involved in your transfer.</p>
|
|
@@ -5742,32 +5742,32 @@ export interface UpdateLocationSmbRequest {
|
|
|
5742
5742
|
* see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html#configuring-smb-permissions">required permissions</a> for SMB locations.</p>
|
|
5743
5743
|
* @public
|
|
5744
5744
|
*/
|
|
5745
|
-
User?: string;
|
|
5745
|
+
User?: string | undefined;
|
|
5746
5746
|
/**
|
|
5747
5747
|
* <p>Specifies the Windows domain name that your SMB file server belongs to. </p>
|
|
5748
5748
|
* <p>If you have multiple domains in your environment, configuring this parameter makes sure that DataSync connects to the right file server.</p>
|
|
5749
5749
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html#configuring-smb-permissions">required permissions</a> for SMB locations.</p>
|
|
5750
5750
|
* @public
|
|
5751
5751
|
*/
|
|
5752
|
-
Domain?: string;
|
|
5752
|
+
Domain?: string | undefined;
|
|
5753
5753
|
/**
|
|
5754
5754
|
* <p>Specifies the password of the user who can mount your SMB file server and has permission
|
|
5755
5755
|
* to access the files and folders involved in your transfer.</p>
|
|
5756
5756
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html#configuring-smb-permissions">required permissions</a> for SMB locations.</p>
|
|
5757
5757
|
* @public
|
|
5758
5758
|
*/
|
|
5759
|
-
Password?: string;
|
|
5759
|
+
Password?: string | undefined;
|
|
5760
5760
|
/**
|
|
5761
5761
|
* <p>Specifies the DataSync agent (or agents) that can connect to your SMB file
|
|
5762
5762
|
* server. You specify an agent by using its Amazon Resource Name (ARN).</p>
|
|
5763
5763
|
* @public
|
|
5764
5764
|
*/
|
|
5765
|
-
AgentArns?: string[];
|
|
5765
|
+
AgentArns?: string[] | undefined;
|
|
5766
5766
|
/**
|
|
5767
5767
|
* <p>Specifies the version of the Server Message Block (SMB) protocol that DataSync uses to access an SMB file server.</p>
|
|
5768
5768
|
* @public
|
|
5769
5769
|
*/
|
|
5770
|
-
MountOptions?: SmbMountOptions;
|
|
5770
|
+
MountOptions?: SmbMountOptions | undefined;
|
|
5771
5771
|
}
|
|
5772
5772
|
/**
|
|
5773
5773
|
* @public
|
|
@@ -5788,30 +5788,30 @@ export interface UpdateStorageSystemRequest {
|
|
|
5788
5788
|
* storage system's management interface.</p>
|
|
5789
5789
|
* @public
|
|
5790
5790
|
*/
|
|
5791
|
-
ServerConfiguration?: DiscoveryServerConfiguration;
|
|
5791
|
+
ServerConfiguration?: DiscoveryServerConfiguration | undefined;
|
|
5792
5792
|
/**
|
|
5793
5793
|
* <p>Specifies the Amazon Resource Name (ARN) of the DataSync agent that connects to and reads
|
|
5794
5794
|
* your on-premises storage system. You can only specify one ARN.</p>
|
|
5795
5795
|
* @public
|
|
5796
5796
|
*/
|
|
5797
|
-
AgentArns?: string[];
|
|
5797
|
+
AgentArns?: string[] | undefined;
|
|
5798
5798
|
/**
|
|
5799
5799
|
* <p>Specifies a familiar name for your on-premises storage system.</p>
|
|
5800
5800
|
* @public
|
|
5801
5801
|
*/
|
|
5802
|
-
Name?: string;
|
|
5802
|
+
Name?: string | undefined;
|
|
5803
5803
|
/**
|
|
5804
5804
|
* <p>Specifies the ARN of the Amazon CloudWatch log group for monitoring and logging
|
|
5805
5805
|
* discovery job events.</p>
|
|
5806
5806
|
* @public
|
|
5807
5807
|
*/
|
|
5808
|
-
CloudWatchLogGroupArn?: string;
|
|
5808
|
+
CloudWatchLogGroupArn?: string | undefined;
|
|
5809
5809
|
/**
|
|
5810
5810
|
* <p>Specifies the user name and password for accessing your on-premises storage system's
|
|
5811
5811
|
* management interface.</p>
|
|
5812
5812
|
* @public
|
|
5813
5813
|
*/
|
|
5814
|
-
Credentials?: Credentials;
|
|
5814
|
+
Credentials?: Credentials | undefined;
|
|
5815
5815
|
}
|
|
5816
5816
|
/**
|
|
5817
5817
|
* @public
|
|
@@ -5836,24 +5836,24 @@ export interface UpdateTaskRequest {
|
|
|
5836
5836
|
* <p>You also can override your task options for each task execution. For example, you might want to adjust the <code>LogLevel</code> for an individual execution.</p>
|
|
5837
5837
|
* @public
|
|
5838
5838
|
*/
|
|
5839
|
-
Options?: Options;
|
|
5839
|
+
Options?: Options | undefined;
|
|
5840
5840
|
/**
|
|
5841
5841
|
* <p>Specifies exclude filters that define the files, objects, and folders in your source location that you don't want DataSync to transfer. For more
|
|
5842
5842
|
* information and examples, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/filtering.html">Specifying what DataSync transfers by using filters</a>.</p>
|
|
5843
5843
|
* @public
|
|
5844
5844
|
*/
|
|
5845
|
-
Excludes?: FilterRule[];
|
|
5845
|
+
Excludes?: FilterRule[] | undefined;
|
|
5846
5846
|
/**
|
|
5847
5847
|
* <p>Specifies a schedule for when you want your task to run. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/task-scheduling.html">Scheduling your
|
|
5848
5848
|
* task</a>.</p>
|
|
5849
5849
|
* @public
|
|
5850
5850
|
*/
|
|
5851
|
-
Schedule?: TaskSchedule;
|
|
5851
|
+
Schedule?: TaskSchedule | undefined;
|
|
5852
5852
|
/**
|
|
5853
5853
|
* <p>Specifies the name of your task.</p>
|
|
5854
5854
|
* @public
|
|
5855
5855
|
*/
|
|
5856
|
-
Name?: string;
|
|
5856
|
+
Name?: string | undefined;
|
|
5857
5857
|
/**
|
|
5858
5858
|
* <p>Specifies the Amazon Resource Name (ARN) of an Amazon CloudWatch log group for
|
|
5859
5859
|
* monitoring your task.</p>
|
|
@@ -5866,20 +5866,20 @@ export interface UpdateTaskRequest {
|
|
|
5866
5866
|
* CloudWatch Logs</a>.</p>
|
|
5867
5867
|
* @public
|
|
5868
5868
|
*/
|
|
5869
|
-
CloudWatchLogGroupArn?: string;
|
|
5869
|
+
CloudWatchLogGroupArn?: string | undefined;
|
|
5870
5870
|
/**
|
|
5871
5871
|
* <p>Specifies include filters define the files, objects, and folders in your source location
|
|
5872
5872
|
* that you want DataSync to transfer. For more information and examples, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/filtering.html">Specifying what DataSync transfers by using filters</a>.</p>
|
|
5873
5873
|
* @public
|
|
5874
5874
|
*/
|
|
5875
|
-
Includes?: FilterRule[];
|
|
5875
|
+
Includes?: FilterRule[] | undefined;
|
|
5876
5876
|
/**
|
|
5877
5877
|
* <p>Configures a manifest, which is a list of files or objects that you want DataSync to transfer. For more information and configuration examples, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/transferring-with-manifest.html">Specifying what DataSync transfers by using a manifest</a>.</p>
|
|
5878
5878
|
* <p>When using this parameter, your caller identity (the IAM role that you're using DataSync with) must have the <code>iam:PassRole</code> permission. The <a href="https://docs.aws.amazon.com/datasync/latest/userguide/security-iam-awsmanpol.html#security-iam-awsmanpol-awsdatasyncfullaccess">AWSDataSyncFullAccess</a> policy includes this permission.</p>
|
|
5879
5879
|
* <p>To remove a manifest configuration, specify this parameter as empty.</p>
|
|
5880
5880
|
* @public
|
|
5881
5881
|
*/
|
|
5882
|
-
ManifestConfig?: ManifestConfig;
|
|
5882
|
+
ManifestConfig?: ManifestConfig | undefined;
|
|
5883
5883
|
/**
|
|
5884
5884
|
* <p>Specifies how you want to configure a task report, which provides detailed information
|
|
5885
5885
|
* about your DataSync transfer. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/task-reports.html">Monitoring your DataSync
|
|
@@ -5888,7 +5888,7 @@ export interface UpdateTaskRequest {
|
|
|
5888
5888
|
* <p>To remove a task report configuration, specify this parameter as empty.</p>
|
|
5889
5889
|
* @public
|
|
5890
5890
|
*/
|
|
5891
|
-
TaskReportConfig?: TaskReportConfig;
|
|
5891
|
+
TaskReportConfig?: TaskReportConfig | undefined;
|
|
5892
5892
|
}
|
|
5893
5893
|
/**
|
|
5894
5894
|
* @public
|