@aws-sdk/client-datasync 3.504.0 → 3.509.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +99 -1385
- package/dist-es/models/models_0.js +6 -0
- package/dist-es/protocols/Aws_json1_1.js +67 -1363
- package/dist-types/commands/CreateLocationAzureBlobCommand.d.ts +3 -1
- package/dist-types/commands/CreateLocationEfsCommand.d.ts +6 -2
- package/dist-types/commands/CreateLocationFsxLustreCommand.d.ts +5 -1
- package/dist-types/commands/CreateLocationFsxOntapCommand.d.ts +4 -2
- package/dist-types/commands/CreateLocationFsxOpenZfsCommand.d.ts +5 -1
- package/dist-types/commands/CreateLocationFsxWindowsCommand.d.ts +6 -2
- package/dist-types/commands/CreateLocationHdfsCommand.d.ts +6 -1
- package/dist-types/commands/CreateLocationNfsCommand.d.ts +6 -3
- package/dist-types/commands/CreateLocationObjectStorageCommand.d.ts +4 -3
- package/dist-types/commands/CreateLocationS3Command.d.ts +4 -3
- package/dist-types/commands/CreateLocationSmbCommand.d.ts +5 -2
- package/dist-types/commands/CreateTaskCommand.d.ts +12 -0
- package/dist-types/commands/DeleteLocationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTaskCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLocationEfsCommand.d.ts +1 -2
- package/dist-types/commands/DescribeLocationFsxLustreCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLocationFsxOntapCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLocationFsxOpenZfsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLocationFsxWindowsCommand.d.ts +1 -2
- package/dist-types/commands/DescribeLocationHdfsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeLocationObjectStorageCommand.d.ts +2 -2
- package/dist-types/commands/DescribeLocationS3Command.d.ts +2 -1
- package/dist-types/commands/DescribeLocationSmbCommand.d.ts +2 -1
- package/dist-types/commands/DescribeTaskCommand.d.ts +12 -0
- package/dist-types/commands/DescribeTaskExecutionCommand.d.ts +13 -1
- package/dist-types/commands/ListTaskExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/StartTaskExecutionCommand.d.ts +17 -5
- package/dist-types/commands/UpdateTaskCommand.d.ts +13 -1
- package/dist-types/models/models_0.d.ts +484 -276
- package/dist-types/ts3.4/models/models_0.d.ts +31 -2
- package/package.json +3 -3
|
@@ -26,7 +26,9 @@ declare const CreateLocationAzureBlobCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>Creates
|
|
29
|
+
* <p>Creates a transfer <i>location</i> for a Microsoft Azure Blob Storage
|
|
30
|
+
* container. DataSync can use this location as a transfer source or
|
|
31
|
+
* destination.</p>
|
|
30
32
|
* <p>Before you begin, make sure you know <a href="https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access">how DataSync accesses Azure Blob Storage</a> and works with <a href="https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access-tiers">access tiers</a> and <a href="https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#blob-types">blob types</a>. You also need a <a href="https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-creating-agent">DataSync agent</a> that can connect to your
|
|
31
33
|
* container.</p>
|
|
32
34
|
* @example
|
|
@@ -26,8 +26,12 @@ declare const CreateLocationEfsCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>Creates
|
|
30
|
-
*
|
|
29
|
+
* <p>Creates a transfer <i>location</i> for an Amazon EFS file system.
|
|
30
|
+
* DataSync can use this location as a source or destination for transferring
|
|
31
|
+
* data.</p>
|
|
32
|
+
* <p>Before you begin, make sure that you understand how DataSync
|
|
33
|
+
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-efs-location.html#create-efs-location-access">accesses
|
|
34
|
+
* Amazon EFS file systems</a>.</p>
|
|
31
35
|
* @example
|
|
32
36
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
37
|
* ```javascript
|
|
@@ -26,7 +26,11 @@ declare const CreateLocationFsxLustreCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>Creates
|
|
29
|
+
* <p>Creates a transfer <i>location</i> for an Amazon FSx for Lustre file system.
|
|
30
|
+
* DataSync can use this location as a source or destination for transferring
|
|
31
|
+
* data.</p>
|
|
32
|
+
* <p>Before you begin, make sure that you understand how DataSync
|
|
33
|
+
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-lustre-location.html#create-lustre-location-access">accesses FSx for Lustre file systems</a>.</p>
|
|
30
34
|
* @example
|
|
31
35
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
36
|
* ```javascript
|
|
@@ -26,9 +26,11 @@ declare const CreateLocationFsxOntapCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>Creates
|
|
29
|
+
* <p>Creates a transfer <i>location</i> for an Amazon FSx for NetApp ONTAP file
|
|
30
|
+
* system. DataSync can use this location as a source or destination for
|
|
31
|
+
* transferring data.</p>
|
|
30
32
|
* <p>Before you begin, make sure that you understand how DataSync
|
|
31
|
-
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-ontap-location.html#create-ontap-location-access">accesses
|
|
33
|
+
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-ontap-location.html#create-ontap-location-access">accesses FSx for ONTAP file systems</a>.</p>
|
|
32
34
|
* @example
|
|
33
35
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
36
|
* ```javascript
|
|
@@ -26,7 +26,11 @@ declare const CreateLocationFsxOpenZfsCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>Creates
|
|
29
|
+
* <p>Creates a transfer <i>location</i> for an Amazon FSx for OpenZFS file system.
|
|
30
|
+
* DataSync can use this location as a source or destination for transferring
|
|
31
|
+
* data.</p>
|
|
32
|
+
* <p>Before you begin, make sure that you understand how DataSync
|
|
33
|
+
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-openzfs-location.html#create-openzfs-access">accesses FSx for OpenZFS file systems</a>.</p>
|
|
30
34
|
* <note>
|
|
31
35
|
* <p>Request parameters related to <code>SMB</code> aren't supported with the
|
|
32
36
|
* <code>CreateLocationFsxOpenZfs</code> operation.</p>
|
|
@@ -26,8 +26,12 @@ declare const CreateLocationFsxWindowsCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>Creates
|
|
30
|
-
*
|
|
29
|
+
* <p>Creates a transfer <i>location</i> for an Amazon FSx for Windows File Server file
|
|
30
|
+
* system. DataSync can use this location as a source or destination for
|
|
31
|
+
* transferring data.</p>
|
|
32
|
+
* <p>Before you begin, make sure that you understand how DataSync
|
|
33
|
+
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-fsx-location.html#create-fsx-location-access">accesses
|
|
34
|
+
* FSx for Windows File Server file systems</a>.</p>
|
|
31
35
|
* @example
|
|
32
36
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
37
|
* ```javascript
|
|
@@ -26,7 +26,12 @@ declare const CreateLocationHdfsCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>Creates
|
|
29
|
+
* <p>Creates a transfer <i>location</i> for a Hadoop Distributed File System
|
|
30
|
+
* (HDFS). DataSync can use this location as a source or destination for
|
|
31
|
+
* transferring data.</p>
|
|
32
|
+
* <p>Before you begin, make sure that you understand how DataSync
|
|
33
|
+
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-hdfs-location.html#accessing-hdfs">accesses
|
|
34
|
+
* HDFS clusters</a>.</p>
|
|
30
35
|
* @example
|
|
31
36
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
37
|
* ```javascript
|
|
@@ -26,9 +26,12 @@ declare const CreateLocationNfsCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>Creates
|
|
30
|
-
*
|
|
31
|
-
*
|
|
29
|
+
* <p>Creates a transfer <i>location</i> for a Network File System (NFS) file
|
|
30
|
+
* server. DataSync can use this location as a source or destination for
|
|
31
|
+
* transferring data.</p>
|
|
32
|
+
* <p>Before you begin, make sure that you understand how DataSync
|
|
33
|
+
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#accessing-nfs">accesses
|
|
34
|
+
* NFS file servers</a>.</p>
|
|
32
35
|
* <note>
|
|
33
36
|
* <p>If you're copying data to or from an Snowcone device, you can also use
|
|
34
37
|
* <code>CreateLocationNfs</code> to create your transfer location. For more information, see
|
|
@@ -26,9 +26,10 @@ declare const CreateLocationObjectStorageCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>Creates
|
|
30
|
-
*
|
|
31
|
-
*
|
|
29
|
+
* <p>Creates a transfer <i>location</i> for an object storage system. DataSync can use this location as a source or destination for transferring
|
|
30
|
+
* data.</p>
|
|
31
|
+
* <p>Before you begin, make sure that you understand the <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-object-location.html#create-object-location-prerequisites">prerequisites</a>
|
|
32
|
+
* for DataSync to work with object storage systems.</p>
|
|
32
33
|
* @example
|
|
33
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
35
|
* ```javascript
|
|
@@ -26,9 +26,10 @@ declare const CreateLocationS3Command_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>
|
|
29
|
+
* <p>Creates a transfer <i>location</i> for an Amazon S3 bucket. DataSync can use this location as a source or destination for transferring
|
|
30
|
+
* data.</p>
|
|
30
31
|
* <important>
|
|
31
|
-
* <p>Before you
|
|
32
|
+
* <p>Before you begin, make sure that you read the following topics:</p>
|
|
32
33
|
* <ul>
|
|
33
34
|
* <li>
|
|
34
35
|
* <p>
|
|
@@ -43,7 +44,7 @@ declare const CreateLocationS3Command_base: {
|
|
|
43
44
|
* </li>
|
|
44
45
|
* </ul>
|
|
45
46
|
* </important>
|
|
46
|
-
* <p> For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-
|
|
47
|
+
* <p> For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html">Configuring transfers with Amazon S3</a>.</p>
|
|
47
48
|
* @example
|
|
48
49
|
* Use a bare-bones client and the command you need to make an API call.
|
|
49
50
|
* ```javascript
|
|
@@ -26,9 +26,12 @@ declare const CreateLocationSmbCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>Creates
|
|
29
|
+
* <p>Creates a transfer <i>location</i> for a Server Message Block (SMB) file
|
|
30
|
+
* server. DataSync can use this location as a source or destination for
|
|
31
|
+
* transferring data.</p>
|
|
30
32
|
* <p>Before you begin, make sure that you understand how DataSync
|
|
31
|
-
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html">accesses
|
|
33
|
+
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html#configuring-smb">accesses
|
|
34
|
+
* SMB file servers</a>.</p>
|
|
32
35
|
* @example
|
|
33
36
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
37
|
* ```javascript
|
|
@@ -86,6 +86,18 @@ declare const CreateTaskCommand_base: {
|
|
|
86
86
|
* Value: "STRING_VALUE",
|
|
87
87
|
* },
|
|
88
88
|
* ],
|
|
89
|
+
* ManifestConfig: { // ManifestConfig
|
|
90
|
+
* Action: "TRANSFER",
|
|
91
|
+
* Format: "CSV",
|
|
92
|
+
* Source: { // SourceManifestConfig
|
|
93
|
+
* S3: { // S3ManifestConfig
|
|
94
|
+
* ManifestObjectPath: "STRING_VALUE", // required
|
|
95
|
+
* BucketAccessRoleArn: "STRING_VALUE", // required
|
|
96
|
+
* S3BucketArn: "STRING_VALUE", // required
|
|
97
|
+
* ManifestObjectVersionId: "STRING_VALUE",
|
|
98
|
+
* },
|
|
99
|
+
* },
|
|
100
|
+
* },
|
|
89
101
|
* TaskReportConfig: { // TaskReportConfig
|
|
90
102
|
* Destination: { // ReportDestination
|
|
91
103
|
* S3: { // ReportDestinationS3
|
|
@@ -26,7 +26,7 @@ declare const DeleteLocationCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>Deletes
|
|
29
|
+
* <p>Deletes a transfer location resource from DataSync. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
32
|
* ```javascript
|
|
@@ -26,7 +26,7 @@ declare const DeleteTaskCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>Deletes
|
|
29
|
+
* <p>Deletes a transfer task resource from DataSync.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
32
|
* ```javascript
|
|
@@ -26,8 +26,7 @@ declare const DescribeLocationEfsCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>
|
|
30
|
-
* file system.</p>
|
|
29
|
+
* <p>Provides details about how an DataSync transfer location for an Amazon EFS file system is configured.</p>
|
|
31
30
|
* @example
|
|
32
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
32
|
* ```javascript
|
|
@@ -26,7 +26,7 @@ declare const DescribeLocationFsxLustreCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>Provides details about how an DataSync location for an Amazon FSx for Lustre file system is configured.</p>
|
|
29
|
+
* <p>Provides details about how an DataSync transfer location for an Amazon FSx for Lustre file system is configured.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
32
|
* ```javascript
|
|
@@ -26,7 +26,7 @@ declare const DescribeLocationFsxOntapCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>Provides details about how an DataSync location for an Amazon FSx for NetApp ONTAP file system is configured.</p>
|
|
29
|
+
* <p>Provides details about how an DataSync transfer location for an Amazon FSx for NetApp ONTAP file system is configured.</p>
|
|
30
30
|
* <note>
|
|
31
31
|
* <p>If your location uses SMB, the <code>DescribeLocationFsxOntap</code> operation doesn't
|
|
32
32
|
* actually return a <code>Password</code>.</p>
|
|
@@ -26,7 +26,7 @@ declare const DescribeLocationFsxOpenZfsCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>Provides details about how an DataSync location for an Amazon FSx for OpenZFS file system is configured.</p>
|
|
29
|
+
* <p>Provides details about how an DataSync transfer location for an Amazon FSx for OpenZFS file system is configured.</p>
|
|
30
30
|
* <note>
|
|
31
31
|
* <p>Response elements related to <code>SMB</code> aren't supported with the
|
|
32
32
|
* <code>DescribeLocationFsxOpenZfs</code> operation.</p>
|
|
@@ -26,8 +26,7 @@ declare const DescribeLocationFsxWindowsCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>
|
|
30
|
-
* about its path.</p>
|
|
29
|
+
* <p>Provides details about how an DataSync transfer location for an Amazon FSx for Windows File Server file system is configured.</p>
|
|
31
30
|
* @example
|
|
32
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
32
|
* ```javascript
|
|
@@ -26,8 +26,8 @@ declare const DescribeLocationHdfsCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>
|
|
30
|
-
* System (HDFS)
|
|
29
|
+
* <p>Provides details about how an DataSync transfer location for a Hadoop
|
|
30
|
+
* Distributed File System (HDFS) is configured.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -26,8 +26,8 @@ declare const DescribeLocationObjectStorageCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>
|
|
30
|
-
* system.</p>
|
|
29
|
+
* <p>Provides details about how an DataSync transfer location for an object
|
|
30
|
+
* storage system is configured.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -26,7 +26,8 @@ declare const DescribeLocationS3Command_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>
|
|
29
|
+
* <p>Provides details about how an DataSync transfer location for an S3 bucket
|
|
30
|
+
* is configured.</p>
|
|
30
31
|
* @example
|
|
31
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
33
|
* ```javascript
|
|
@@ -26,7 +26,8 @@ declare const DescribeLocationSmbCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>
|
|
29
|
+
* <p>Provides details about how an DataSync transfer location for a Server
|
|
30
|
+
* Message Block (SMB) file server is configured.</p>
|
|
30
31
|
* @example
|
|
31
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
33
|
* ```javascript
|
|
@@ -87,6 +87,18 @@ declare const DescribeTaskCommand_base: {
|
|
|
87
87
|
* // Value: "STRING_VALUE",
|
|
88
88
|
* // },
|
|
89
89
|
* // ],
|
|
90
|
+
* // ManifestConfig: { // ManifestConfig
|
|
91
|
+
* // Action: "TRANSFER",
|
|
92
|
+
* // Format: "CSV",
|
|
93
|
+
* // Source: { // SourceManifestConfig
|
|
94
|
+
* // S3: { // S3ManifestConfig
|
|
95
|
+
* // ManifestObjectPath: "STRING_VALUE", // required
|
|
96
|
+
* // BucketAccessRoleArn: "STRING_VALUE", // required
|
|
97
|
+
* // S3BucketArn: "STRING_VALUE", // required
|
|
98
|
+
* // ManifestObjectVersionId: "STRING_VALUE",
|
|
99
|
+
* // },
|
|
100
|
+
* // },
|
|
101
|
+
* // },
|
|
90
102
|
* // TaskReportConfig: { // TaskReportConfig
|
|
91
103
|
* // Destination: { // ReportDestination
|
|
92
104
|
* // S3: { // ReportDestinationS3
|
|
@@ -72,12 +72,25 @@ declare const DescribeTaskExecutionCommand_base: {
|
|
|
72
72
|
* // Value: "STRING_VALUE",
|
|
73
73
|
* // },
|
|
74
74
|
* // ],
|
|
75
|
+
* // ManifestConfig: { // ManifestConfig
|
|
76
|
+
* // Action: "TRANSFER",
|
|
77
|
+
* // Format: "CSV",
|
|
78
|
+
* // Source: { // SourceManifestConfig
|
|
79
|
+
* // S3: { // S3ManifestConfig
|
|
80
|
+
* // ManifestObjectPath: "STRING_VALUE", // required
|
|
81
|
+
* // BucketAccessRoleArn: "STRING_VALUE", // required
|
|
82
|
+
* // S3BucketArn: "STRING_VALUE", // required
|
|
83
|
+
* // ManifestObjectVersionId: "STRING_VALUE",
|
|
84
|
+
* // },
|
|
85
|
+
* // },
|
|
86
|
+
* // },
|
|
75
87
|
* // StartTime: new Date("TIMESTAMP"),
|
|
76
88
|
* // EstimatedFilesToTransfer: Number("long"),
|
|
77
89
|
* // EstimatedBytesToTransfer: Number("long"),
|
|
78
90
|
* // FilesTransferred: Number("long"),
|
|
79
91
|
* // BytesWritten: Number("long"),
|
|
80
92
|
* // BytesTransferred: Number("long"),
|
|
93
|
+
* // BytesCompressed: Number("long"),
|
|
81
94
|
* // Result: { // TaskExecutionResultDetail
|
|
82
95
|
* // PrepareDuration: Number("long"),
|
|
83
96
|
* // PrepareStatus: "PENDING" || "SUCCESS" || "ERROR",
|
|
@@ -89,7 +102,6 @@ declare const DescribeTaskExecutionCommand_base: {
|
|
|
89
102
|
* // ErrorCode: "STRING_VALUE",
|
|
90
103
|
* // ErrorDetail: "STRING_VALUE",
|
|
91
104
|
* // },
|
|
92
|
-
* // BytesCompressed: Number("long"),
|
|
93
105
|
* // TaskReportConfig: { // TaskReportConfig
|
|
94
106
|
* // Destination: { // ReportDestination
|
|
95
107
|
* // S3: { // ReportDestinationS3
|
|
@@ -26,7 +26,7 @@ declare const ListTaskExecutionsCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>Returns a list of
|
|
29
|
+
* <p>Returns a list of executions for an DataSync transfer task.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
32
|
* ```javascript
|
|
@@ -72,12 +72,18 @@ declare const StartTaskExecutionCommand_base: {
|
|
|
72
72
|
* Value: "STRING_VALUE",
|
|
73
73
|
* },
|
|
74
74
|
* ],
|
|
75
|
-
*
|
|
76
|
-
*
|
|
77
|
-
*
|
|
78
|
-
*
|
|
75
|
+
* ManifestConfig: { // ManifestConfig
|
|
76
|
+
* Action: "TRANSFER",
|
|
77
|
+
* Format: "CSV",
|
|
78
|
+
* Source: { // SourceManifestConfig
|
|
79
|
+
* S3: { // S3ManifestConfig
|
|
80
|
+
* ManifestObjectPath: "STRING_VALUE", // required
|
|
81
|
+
* BucketAccessRoleArn: "STRING_VALUE", // required
|
|
82
|
+
* S3BucketArn: "STRING_VALUE", // required
|
|
83
|
+
* ManifestObjectVersionId: "STRING_VALUE",
|
|
84
|
+
* },
|
|
79
85
|
* },
|
|
80
|
-
*
|
|
86
|
+
* },
|
|
81
87
|
* TaskReportConfig: { // TaskReportConfig
|
|
82
88
|
* Destination: { // ReportDestination
|
|
83
89
|
* S3: { // ReportDestinationS3
|
|
@@ -104,6 +110,12 @@ declare const StartTaskExecutionCommand_base: {
|
|
|
104
110
|
* },
|
|
105
111
|
* },
|
|
106
112
|
* },
|
|
113
|
+
* Tags: [ // InputTagList
|
|
114
|
+
* { // TagListEntry
|
|
115
|
+
* Key: "STRING_VALUE", // required
|
|
116
|
+
* Value: "STRING_VALUE",
|
|
117
|
+
* },
|
|
118
|
+
* ],
|
|
107
119
|
* };
|
|
108
120
|
* const command = new StartTaskExecutionCommand(input);
|
|
109
121
|
* const response = await client.send(command);
|
|
@@ -26,7 +26,7 @@ declare const UpdateTaskCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <p>Updates the configuration of
|
|
29
|
+
* <p>Updates the configuration of an DataSync transfer task.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
32
|
* ```javascript
|
|
@@ -69,6 +69,18 @@ declare const UpdateTaskCommand_base: {
|
|
|
69
69
|
* Value: "STRING_VALUE",
|
|
70
70
|
* },
|
|
71
71
|
* ],
|
|
72
|
+
* ManifestConfig: { // ManifestConfig
|
|
73
|
+
* Action: "TRANSFER",
|
|
74
|
+
* Format: "CSV",
|
|
75
|
+
* Source: { // SourceManifestConfig
|
|
76
|
+
* S3: { // S3ManifestConfig
|
|
77
|
+
* ManifestObjectPath: "STRING_VALUE", // required
|
|
78
|
+
* BucketAccessRoleArn: "STRING_VALUE", // required
|
|
79
|
+
* S3BucketArn: "STRING_VALUE", // required
|
|
80
|
+
* ManifestObjectVersionId: "STRING_VALUE",
|
|
81
|
+
* },
|
|
82
|
+
* },
|
|
83
|
+
* },
|
|
72
84
|
* TaskReportConfig: { // TaskReportConfig
|
|
73
85
|
* Destination: { // ReportDestination
|
|
74
86
|
* S3: { // ReportDestinationS3
|