aws-sdk 2.916.0 → 2.920.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.
Files changed (45) hide show
  1. package/CHANGELOG.md +26 -1
  2. package/README.md +1 -1
  3. package/apis/autoscaling-2011-01-01.min.json +63 -60
  4. package/apis/datasync-2018-11-09.min.json +16 -15
  5. package/apis/devicefarm-2015-06-23.min.json +144 -92
  6. package/apis/docdb-2014-10-31.min.json +233 -65
  7. package/apis/docdb-2014-10-31.paginators.json +6 -0
  8. package/apis/ec2-2016-11-15.min.json +6 -0
  9. package/apis/fsx-2018-03-01.min.json +27 -24
  10. package/apis/iotevents-2018-07-27.min.json +715 -188
  11. package/apis/iotevents-data-2018-10-23.min.json +380 -1
  12. package/apis/iotsitewise-2019-12-02.min.json +65 -43
  13. package/apis/iotwireless-2020-11-22.min.json +210 -6
  14. package/apis/kendra-2019-02-03.min.json +351 -77
  15. package/apis/location-2020-11-19.min.json +677 -84
  16. package/apis/location-2020-11-19.paginators.json +12 -0
  17. package/apis/sns-2010-03-31.min.json +150 -13
  18. package/apis/sns-2010-03-31.paginators.json +12 -0
  19. package/clients/autoscaling.d.ts +55 -50
  20. package/clients/braket.d.ts +2 -2
  21. package/clients/datasync.d.ts +39 -34
  22. package/clients/devicefarm.d.ts +41 -10
  23. package/clients/docdb.d.ts +217 -4
  24. package/clients/ec2.d.ts +8 -0
  25. package/clients/ecs.d.ts +4 -4
  26. package/clients/fsx.d.ts +15 -2
  27. package/clients/iam.d.ts +1 -1
  28. package/clients/iotevents.d.ts +595 -11
  29. package/clients/ioteventsdata.d.ts +474 -9
  30. package/clients/iotsitewise.d.ts +34 -0
  31. package/clients/iotwireless.d.ts +126 -0
  32. package/clients/kendra.d.ts +410 -6
  33. package/clients/lightsail.d.ts +3 -3
  34. package/clients/location.d.ts +651 -77
  35. package/clients/polly.d.ts +1 -1
  36. package/clients/resourcegroups.d.ts +4 -4
  37. package/clients/servicediscovery.d.ts +41 -41
  38. package/clients/sns.d.ts +181 -4
  39. package/clients/sqs.d.ts +5 -5
  40. package/dist/aws-sdk-core-react-native.js +1 -1
  41. package/dist/aws-sdk-react-native.js +17 -17
  42. package/dist/aws-sdk.js +378 -168
  43. package/dist/aws-sdk.min.js +68 -68
  44. package/lib/core.js +1 -1
  45. package/package.json +1 -1
@@ -52,11 +52,11 @@ declare class DataSync extends Service {
52
52
  */
53
53
  createLocationNfs(callback?: (err: AWSError, data: DataSync.Types.CreateLocationNfsResponse) => void): Request<DataSync.Types.CreateLocationNfsResponse, AWSError>;
54
54
  /**
55
- * Creates an endpoint for a self-managed object storage bucket. For more information about self-managed object storage locations, see create-object-location.
55
+ * Creates an endpoint for a self-managed object storage bucket. For more information about self-managed object storage locations, see Creating a location for object storage.
56
56
  */
57
57
  createLocationObjectStorage(params: DataSync.Types.CreateLocationObjectStorageRequest, callback?: (err: AWSError, data: DataSync.Types.CreateLocationObjectStorageResponse) => void): Request<DataSync.Types.CreateLocationObjectStorageResponse, AWSError>;
58
58
  /**
59
- * Creates an endpoint for a self-managed object storage bucket. For more information about self-managed object storage locations, see create-object-location.
59
+ * Creates an endpoint for a self-managed object storage bucket. For more information about self-managed object storage locations, see Creating a location for object storage.
60
60
  */
61
61
  createLocationObjectStorage(callback?: (err: AWSError, data: DataSync.Types.CreateLocationObjectStorageResponse) => void): Request<DataSync.Types.CreateLocationObjectStorageResponse, AWSError>;
62
62
  /**
@@ -140,11 +140,11 @@ declare class DataSync extends Service {
140
140
  */
141
141
  describeLocationNfs(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationNfsResponse) => void): Request<DataSync.Types.DescribeLocationNfsResponse, AWSError>;
142
142
  /**
143
- * Returns metadata about a self-managed object storage server location. For more information about self-managed object storage locations, see create-object-location.
143
+ * Returns metadata about a self-managed object storage server location. For more information about self-managed object storage locations, see Creating a location for object storage.
144
144
  */
145
145
  describeLocationObjectStorage(params: DataSync.Types.DescribeLocationObjectStorageRequest, callback?: (err: AWSError, data: DataSync.Types.DescribeLocationObjectStorageResponse) => void): Request<DataSync.Types.DescribeLocationObjectStorageResponse, AWSError>;
146
146
  /**
147
- * Returns metadata about a self-managed object storage server location. For more information about self-managed object storage locations, see create-object-location.
147
+ * Returns metadata about a self-managed object storage server location. For more information about self-managed object storage locations, see Creating a location for object storage.
148
148
  */
149
149
  describeLocationObjectStorage(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationObjectStorageResponse) => void): Request<DataSync.Types.DescribeLocationObjectStorageResponse, AWSError>;
150
150
  /**
@@ -252,27 +252,27 @@ declare class DataSync extends Service {
252
252
  */
253
253
  updateAgent(callback?: (err: AWSError, data: DataSync.Types.UpdateAgentResponse) => void): Request<DataSync.Types.UpdateAgentResponse, AWSError>;
254
254
  /**
255
- * Updates some of the parameters of a previously created location for Network File System (NFS) access. For information about creating an NFS location, see create-nfs-location.
255
+ * Updates some of the parameters of a previously created location for Network File System (NFS) access. For information about creating an NFS location, see Creating a location for NFS.
256
256
  */
257
257
  updateLocationNfs(params: DataSync.Types.UpdateLocationNfsRequest, callback?: (err: AWSError, data: DataSync.Types.UpdateLocationNfsResponse) => void): Request<DataSync.Types.UpdateLocationNfsResponse, AWSError>;
258
258
  /**
259
- * Updates some of the parameters of a previously created location for Network File System (NFS) access. For information about creating an NFS location, see create-nfs-location.
259
+ * Updates some of the parameters of a previously created location for Network File System (NFS) access. For information about creating an NFS location, see Creating a location for NFS.
260
260
  */
261
261
  updateLocationNfs(callback?: (err: AWSError, data: DataSync.Types.UpdateLocationNfsResponse) => void): Request<DataSync.Types.UpdateLocationNfsResponse, AWSError>;
262
262
  /**
263
- * Updates some of the parameters of a previously created location for self-managed object storage server access. For information about creating a self-managed object storage location, see create-object-location.
263
+ * Updates some of the parameters of a previously created location for self-managed object storage server access. For information about creating a self-managed object storage location, see Creating a location for object storage.
264
264
  */
265
265
  updateLocationObjectStorage(params: DataSync.Types.UpdateLocationObjectStorageRequest, callback?: (err: AWSError, data: DataSync.Types.UpdateLocationObjectStorageResponse) => void): Request<DataSync.Types.UpdateLocationObjectStorageResponse, AWSError>;
266
266
  /**
267
- * Updates some of the parameters of a previously created location for self-managed object storage server access. For information about creating a self-managed object storage location, see create-object-location.
267
+ * Updates some of the parameters of a previously created location for self-managed object storage server access. For information about creating a self-managed object storage location, see Creating a location for object storage.
268
268
  */
269
269
  updateLocationObjectStorage(callback?: (err: AWSError, data: DataSync.Types.UpdateLocationObjectStorageResponse) => void): Request<DataSync.Types.UpdateLocationObjectStorageResponse, AWSError>;
270
270
  /**
271
- * Updates some of the parameters of a previously created location for Server Message Block (SMB) file system access. For information about creating an SMB location, see create-smb-location.
271
+ * Updates some of the parameters of a previously created location for Server Message Block (SMB) file system access. For information about creating an SMB location, see Creating a location for SMB.
272
272
  */
273
273
  updateLocationSmb(params: DataSync.Types.UpdateLocationSmbRequest, callback?: (err: AWSError, data: DataSync.Types.UpdateLocationSmbResponse) => void): Request<DataSync.Types.UpdateLocationSmbResponse, AWSError>;
274
274
  /**
275
- * Updates some of the parameters of a previously created location for Server Message Block (SMB) file system access. For information about creating an SMB location, see create-smb-location.
275
+ * Updates some of the parameters of a previously created location for Server Message Block (SMB) file system access. For information about creating an SMB location, see Creating a location for SMB.
276
276
  */
277
277
  updateLocationSmb(callback?: (err: AWSError, data: DataSync.Types.UpdateLocationSmbResponse) => void): Request<DataSync.Types.UpdateLocationSmbResponse, AWSError>;
278
278
  /**
@@ -344,7 +344,7 @@ declare namespace DataSync {
344
344
  */
345
345
  SubnetArns?: PLSubnetArnList;
346
346
  /**
347
- * The ARNs of the security groups used to protect your data transfer task subnets. See CreateAgentRequest$SubnetArns.
347
+ * The ARNs of the security groups used to protect your data transfer task subnets. See SecurityGroupArns.
348
348
  */
349
349
  SecurityGroupArns?: PLSecurityGroupArnList;
350
350
  }
@@ -396,7 +396,7 @@ declare namespace DataSync {
396
396
  */
397
397
  Tags?: InputTagList;
398
398
  /**
399
- * The user who has the permissions to access files and folders in the FSx for Windows File Server file system.
399
+ * The user who has the permissions to access files and folders in the FSx for Windows File Server file system. For information about choosing a user name that ensures sufficient permissions to files, folders, and metadata, see user.
400
400
  */
401
401
  User: SmbUser;
402
402
  /**
@@ -496,12 +496,12 @@ declare namespace DataSync {
496
496
  */
497
497
  S3BucketArn: S3BucketArn;
498
498
  /**
499
- * The Amazon S3 storage class that you want to store your files in when this location is used as a task destination. For buckets in AWS Regions, the storage class defaults to Standard. For buckets on AWS Outposts, the storage class defaults to AWS S3 Outposts. For more information about S3 storage classes, see Amazon S3 Storage Classes. Some storage classes have behaviors that can affect your S3 storage cost. For detailed information, see using-storage-classes.
499
+ * The Amazon S3 storage class that you want to store your files in when this location is used as a task destination. For buckets in AWS Regions, the storage class defaults to Standard. For buckets on AWS Outposts, the storage class defaults to AWS S3 Outposts. For more information about S3 storage classes, see Amazon S3 Storage Classes. Some storage classes have behaviors that can affect your S3 storage cost. For detailed information, see Considerations when working with S3 storage classes in DataSync.
500
500
  */
501
501
  S3StorageClass?: S3StorageClass;
502
502
  S3Config: S3Config;
503
503
  /**
504
- * If you are using DataSync on an AWS Outpost, specify the Amazon Resource Names (ARNs) of the DataSync agents deployed on your Outpost. For more information about launching a DataSync agent on an AWS Outpost, see outposts-agent.
504
+ * If you are using DataSync on an AWS Outpost, specify the Amazon Resource Names (ARNs) of the DataSync agents deployed on your Outpost. For more information about launching a DataSync agent on an AWS Outpost, see Deploy your DataSync agent on AWS Outposts.
505
505
  */
506
506
  AgentArns?: AgentArnList;
507
507
  /**
@@ -525,7 +525,7 @@ declare namespace DataSync {
525
525
  */
526
526
  ServerHostname: ServerHostname;
527
527
  /**
528
- * The user who can mount the share, has the permissions to access files and folders in the SMB share.
528
+ * The user who can mount the share, has the permissions to access files and folders in the SMB share. For information about choosing a user name that ensures sufficient permissions to files, folders, and metadata, see user.
529
529
  */
530
530
  User: SmbUser;
531
531
  /**
@@ -573,7 +573,7 @@ declare namespace DataSync {
573
573
  */
574
574
  Name?: TagValue;
575
575
  /**
576
- * The set of configuration options that control the behavior of a single execution of the task that occurs when you call StartTaskExecution. You can configure these options to preserve metadata such as user ID (UID) and group ID (GID), file permissions, data integrity verification, and so on. For each individual task execution, you can override these options by specifying the OverrideOptions before starting the task execution. For more information, see the operation.
576
+ * The set of configuration options that control the behavior of a single execution of the task that occurs when you call StartTaskExecution. You can configure these options to preserve metadata such as user ID (UID) and group ID (GID), file permissions, data integrity verification, and so on. For each individual task execution, you can override these options by specifying the OverrideOptions before starting the task execution. For more information, see the StartTaskExecution operation.
577
577
  */
578
578
  Options?: Options;
579
579
  /**
@@ -581,7 +581,7 @@ declare namespace DataSync {
581
581
  */
582
582
  Excludes?: FilterList;
583
583
  /**
584
- * Specifies a schedule used to periodically transfer files from a source to a destination location. The schedule should be specified in UTC time. For more information, see task-scheduling.
584
+ * Specifies a schedule used to periodically transfer files from a source to a destination location. The schedule should be specified in UTC time. For more information, see Scheduling your task.
585
585
  */
586
586
  Schedule?: TaskSchedule;
587
587
  /**
@@ -639,7 +639,7 @@ declare namespace DataSync {
639
639
  */
640
640
  Status?: AgentStatus;
641
641
  /**
642
- * The time that the agent last connected to DataSyc.
642
+ * The time that the agent last connected to DataSync.
643
643
  */
644
644
  LastConnectionTime?: Time;
645
645
  /**
@@ -785,12 +785,12 @@ declare namespace DataSync {
785
785
  */
786
786
  LocationUri?: LocationUri;
787
787
  /**
788
- * The Amazon S3 storage class that you chose to store your files in when this location is used as a task destination. For more information about S3 storage classes, see Amazon S3 Storage Classes. Some storage classes have behaviors that can affect your S3 storage cost. For detailed information, see using-storage-classes.
788
+ * The Amazon S3 storage class that you chose to store your files in when this location is used as a task destination. For more information about S3 storage classes, see Amazon S3 Storage Classes. Some storage classes have behaviors that can affect your S3 storage cost. For detailed information, see Considerations when working with S3 storage classes in DataSync.
789
789
  */
790
790
  S3StorageClass?: S3StorageClass;
791
791
  S3Config?: S3Config;
792
792
  /**
793
- * If you are using DataSync on an AWS Outpost, the Amazon Resource Name (ARNs) of the EC2 agents deployed on your Outpost. For more information about launching a DataSync agent on an AWS Outpost, see outposts-agent.
793
+ * If you are using DataSync on an AWS Outpost, the Amazon Resource Name (ARNs) of the EC2 agents deployed on your Outpost. For more information about launching a DataSync agent on an AWS Outpost, see Deploy your DataSync agent on AWS Outposts.
794
794
  */
795
795
  AgentArns?: AgentArnList;
796
796
  /**
@@ -810,7 +810,7 @@ declare namespace DataSync {
810
810
  */
811
811
  LocationArn?: LocationArn;
812
812
  /**
813
- * The URL of the source SBM location that was described.
813
+ * The URL of the source SMB location that was described.
814
814
  */
815
815
  LocationUri?: LocationUri;
816
816
  /**
@@ -931,7 +931,7 @@ declare namespace DataSync {
931
931
  */
932
932
  DestinationNetworkInterfaceArns?: DestinationNetworkInterfaceArns;
933
933
  /**
934
- * The set of configuration options that control the behavior of a single execution of the task that occurs when you call StartTaskExecution. You can configure these options to preserve metadata such as user ID (UID) and group (GID), file permissions, data integrity verification, and so on. For each individual task execution, you can override these options by specifying the overriding OverrideOptions value to operation.
934
+ * The set of configuration options that control the behavior of a single execution of the task that occurs when you call StartTaskExecution. You can configure these options to preserve metadata such as user ID (UID) and group (GID), file permissions, data integrity verification, and so on. For each individual task execution, you can override these options by specifying the overriding OverrideOptions value to StartTaskExecution operation.
935
935
  */
936
936
  Options?: Options;
937
937
  /**
@@ -1121,7 +1121,7 @@ declare namespace DataSync {
1121
1121
  */
1122
1122
  Values: FilterValues;
1123
1123
  /**
1124
- * The operator that is used to compare filter values (for example, Equals or Contains). For more about API filtering operators, see query-resources.
1124
+ * The operator that is used to compare filter values (for example, Equals or Contains). For more about API filtering operators, see API filters for ListTasks and ListLocations.
1125
1125
  */
1126
1126
  Operator: Operator;
1127
1127
  }
@@ -1167,11 +1167,11 @@ declare namespace DataSync {
1167
1167
  export type Operator = "Equals"|"NotEquals"|"In"|"LessThanOrEqual"|"LessThan"|"GreaterThanOrEqual"|"GreaterThan"|"Contains"|"NotContains"|"BeginsWith"|string;
1168
1168
  export interface Options {
1169
1169
  /**
1170
- * A value that determines whether a data integrity verification should be performed at the end of a task execution after all data and metadata have been transferred. For more information, see create-task Default value: POINT_IN_TIME_CONSISTENT. ONLY_FILES_TRANSFERRED (recommended): Perform verification only on files that were transferred. POINT_IN_TIME_CONSISTENT: Scan the entire source and entire destination at the end of the transfer to verify that source and destination are fully synchronized. This option isn't supported when transferring to S3 Glacier or S3 Glacier Deep Archive storage classes. NONE: No additional verification is done at the end of the transfer, but all data transmissions are integrity-checked with checksum verification during the transfer.
1170
+ * A value that determines whether a data integrity verification should be performed at the end of a task execution after all data and metadata have been transferred. For more information, see Configure task settings. Default value: POINT_IN_TIME_CONSISTENT. ONLY_FILES_TRANSFERRED (recommended): Perform verification only on files that were transferred. POINT_IN_TIME_CONSISTENT: Scan the entire source and entire destination at the end of the transfer to verify that source and destination are fully synchronized. This option isn't supported when transferring to S3 Glacier or S3 Glacier Deep Archive storage classes. NONE: No additional verification is done at the end of the transfer, but all data transmissions are integrity-checked with checksum verification during the transfer.
1171
1171
  */
1172
1172
  VerifyMode?: VerifyMode;
1173
1173
  /**
1174
- * A value that determines whether files at the destination should be overwritten or preserved when copying files. If set to NEVER a destination file will not be replaced by a source file, even if the destination file differs from the source file. If you modify files in the destination and you sync the files, you can use this value to protect against overwriting those changes. Some storage classes have specific behaviors that can affect your S3 storage cost. For detailed information, see using-storage-classes in the AWS DataSync User Guide.
1174
+ * A value that determines whether files at the destination should be overwritten or preserved when copying files. If set to NEVER a destination file will not be replaced by a source file, even if the destination file differs from the source file. If you modify files in the destination and you sync the files, you can use this value to protect against overwriting those changes. Some storage classes have specific behaviors that can affect your S3 storage cost. For detailed information, see Considerations when working with Amazon S3 storage classes in DataSync in the AWS DataSync User Guide.
1175
1175
  */
1176
1176
  OverwriteMode?: OverwriteMode;
1177
1177
  /**
@@ -1179,27 +1179,27 @@ declare namespace DataSync {
1179
1179
  */
1180
1180
  Atime?: Atime;
1181
1181
  /**
1182
- * A value that indicates the last time that a file was modified (that is, a file was written to) before the PREPARING phase. Default value: PRESERVE. PRESERVE: Preserve original Mtime (recommended) NONE: Ignore Mtime. If Mtime is set to PRESERVE, Atime must be set to BEST_EFFORT. If Mtime is set to NONE, Atime must also be set to NONE.
1182
+ * A value that indicates the last time that a file was modified (that is, a file was written to) before the PREPARING phase. This option is required for cases when you need to run the same task more than one time. Default value: PRESERVE. PRESERVE: Preserve original Mtime (recommended) NONE: Ignore Mtime. If Mtime is set to PRESERVE, Atime must be set to BEST_EFFORT. If Mtime is set to NONE, Atime must also be set to NONE.
1183
1183
  */
1184
1184
  Mtime?: Mtime;
1185
1185
  /**
1186
- * The user ID (UID) of the file's owner. Default value: INT_VALUE. This preserves the integer value of the ID. INT_VALUE: Preserve the integer value of UID and group ID (GID) (recommended). NONE: Ignore UID and GID.
1186
+ * The POSIX user ID (UID) of the file's owner. This option should only be set for NFS, EFS, and S3 locations. To learn more about what metadata is copied by DataSync, see Metadata Copied by DataSync. Default value: INT_VALUE. This preserves the integer value of the ID. INT_VALUE: Preserve the integer value of UID and group ID (GID) (recommended). NONE: Ignore UID and GID.
1187
1187
  */
1188
1188
  Uid?: Uid;
1189
1189
  /**
1190
- * The group ID (GID) of the file's owners. Default value: INT_VALUE. This preserves the integer value of the ID. INT_VALUE: Preserve the integer value of user ID (UID) and GID (recommended). NONE: Ignore UID and GID.
1190
+ * The POSIX group ID (GID) of the file's owners. This option should only be set for NFS, EFS, and S3 locations. For more information about what metadata is copied by DataSync, see Metadata Copied by DataSync. Default value: INT_VALUE. This preserves the integer value of the ID. INT_VALUE: Preserve the integer value of user ID (UID) and GID (recommended). NONE: Ignore UID and GID.
1191
1191
  */
1192
1192
  Gid?: Gid;
1193
1193
  /**
1194
- * A value that specifies whether files in the destination that don't exist in the source file system should be preserved. This option can affect your storage cost. If your task deletes objects, you might incur minimum storage duration charges for certain storage classes. For detailed information, see using-storage-classes in the AWS DataSync User Guide. Default value: PRESERVE. PRESERVE: Ignore such destination files (recommended). REMOVE: Delete destination files that aren’t present in the source.
1194
+ * A value that specifies whether files in the destination that don't exist in the source file system should be preserved. This option can affect your storage cost. If your task deletes objects, you might incur minimum storage duration charges for certain storage classes. For detailed information, see Considerations when working with Amazon S3 storage classes in DataSync in the AWS DataSync User Guide. Default value: PRESERVE. PRESERVE: Ignore such destination files (recommended). REMOVE: Delete destination files that aren’t present in the source.
1195
1195
  */
1196
1196
  PreserveDeletedFiles?: PreserveDeletedFiles;
1197
1197
  /**
1198
- * A value that determines whether AWS DataSync should preserve the metadata of block and character devices in the source file system, and recreate the files with that device name and metadata on the destination. AWS DataSync can't sync the actual contents of such devices, because they are nonterminal and don't return an end-of-file (EOF) marker. Default value: NONE. NONE: Ignore special devices (recommended). PRESERVE: Preserve character and block device metadata. This option isn't currently supported for Amazon EFS.
1198
+ * A value that determines whether AWS DataSync should preserve the metadata of block and character devices in the source file system, and re-create the files with that device name and metadata on the destination. DataSync does not copy the contents of such devices, only the name and metadata. AWS DataSync can't sync the actual contents of such devices, because they are nonterminal and don't return an end-of-file (EOF) marker. Default value: NONE. NONE: Ignore special devices (recommended). PRESERVE: Preserve character and block device metadata. This option isn't currently supported for Amazon EFS.
1199
1199
  */
1200
1200
  PreserveDevices?: PreserveDevices;
1201
1201
  /**
1202
- * A value that determines which users or groups can access a file for a specific purpose such as reading, writing, or execution of the file. Default value: PRESERVE. PRESERVE: Preserve POSIX-style permissions (recommended). NONE: Ignore permissions. AWS DataSync can preserve extant permissions of a source location.
1202
+ * A value that determines which users or groups can access a file for a specific purpose such as reading, writing, or execution of the file. This option should only be set for NFS, EFS, and S3 locations. For more information about what metadata is copied by DataSync, see Metadata Copied by DataSync. Default value: PRESERVE. PRESERVE: Preserve POSIX-style permissions (recommended). NONE: Ignore permissions. AWS DataSync can preserve extant permissions of a source location.
1203
1203
  */
1204
1204
  PosixPermissions?: PosixPermissions;
1205
1205
  /**
@@ -1207,7 +1207,7 @@ declare namespace DataSync {
1207
1207
  */
1208
1208
  BytesPerSecond?: BytesPerSecond;
1209
1209
  /**
1210
- * A value that determines whether tasks should be queued before executing the tasks. If set to ENABLED, the tasks will be queued. The default is ENABLED. If you use the same agent to run multiple tasks, you can enable the tasks to run in series. For more information, see queue-task-execution.
1210
+ * A value that determines whether tasks should be queued before executing the tasks. If set to ENABLED, the tasks will be queued. The default is ENABLED. If you use the same agent to run multiple tasks, you can enable the tasks to run in series. For more information, see Queueing task executions.
1211
1211
  */
1212
1212
  TaskQueueing?: TaskQueueing;
1213
1213
  /**
@@ -1218,6 +1218,10 @@ declare namespace DataSync {
1218
1218
  * A value that determines whether DataSync transfers only the data and metadata that differ between the source and the destination location, or whether DataSync transfers all the content from the source, without comparing to the destination location. CHANGED: DataSync copies only data or metadata that is new or different content from the source location to the destination location. ALL: DataSync copies all source location content to the destination, without comparing to existing content on the destination.
1219
1219
  */
1220
1220
  TransferMode?: TransferMode;
1221
+ /**
1222
+ * A value that determines which components of the SMB security descriptor are copied from source to destination objects. This value is only used for transfers between SMB and Amazon FSx for Windows File Server locations, or between two Amazon FSx for Windows File Server locations. For more information about how DataSync handles metadata, see How DataSync Handles Metadata and Special Files. Default value: OWNER_DACL. OWNER_DACL: For each copied object, DataSync copies the following metadata: Object owner. NTFS discretionary access control lists (DACLs), which determine whether to grant access to an object. When choosing this option, DataSync does NOT copy the NTFS system access control lists (SACLs), which are used by administrators to log attempts to access a secured object. OWNER_DACL_SACL: For each copied object, DataSync copies the following metadata: Object owner. NTFS discretionary access control lists (DACLs), which determine whether to grant access to an object. NTFS system access control lists (SACLs), which are used by administrators to log attempts to access a secured object. Copying SACLs requires granting additional permissions to the Windows user that DataSync uses to access your SMB location. For information about choosing a user that ensures sufficient permissions to files, folders, and metadata, see user. NONE: None of the SMB security descriptor components are copied. Destination objects are owned by the user that was provided for accessing the destination location. DACLs and SACLs are set based on the destination server’s configuration.
1223
+ */
1224
+ SecurityDescriptorCopyFlags?: SmbSecurityDescriptorCopyFlags;
1221
1225
  }
1222
1226
  export type OutputTagList = TagListEntry[];
1223
1227
  export type OverwriteMode = "ALWAYS"|"NEVER"|string;
@@ -1264,6 +1268,7 @@ declare namespace DataSync {
1264
1268
  Version?: SmbVersion;
1265
1269
  }
1266
1270
  export type SmbPassword = string;
1271
+ export type SmbSecurityDescriptorCopyFlags = "NONE"|"OWNER_DACL"|"OWNER_DACL_SACL"|string;
1267
1272
  export type SmbSubdirectory = string;
1268
1273
  export type SmbUser = string;
1269
1274
  export type SmbVersion = "AUTOMATIC"|"SMB2"|"SMB3"|string;
@@ -1373,7 +1378,7 @@ declare namespace DataSync {
1373
1378
  */
1374
1379
  Values: FilterValues;
1375
1380
  /**
1376
- * The operator that is used to compare filter values (for example, Equals or Contains). For more about API filtering operators, see query-resources.
1381
+ * The operator that is used to compare filter values (for example, Equals or Contains). For more about API filtering operators, see API filters for ListTasks and ListLocations.
1377
1382
  */
1378
1383
  Operator: Operator;
1379
1384
  }
@@ -1524,7 +1529,7 @@ declare namespace DataSync {
1524
1529
  */
1525
1530
  Excludes?: FilterList;
1526
1531
  /**
1527
- * Specifies a schedule used to periodically transfer files from a source to a destination location. You can configure your task to execute hourly, daily, weekly or on specific days of the week. You control when in the day or hour you want the task to execute. The time you specify is UTC time. For more information, see task-scheduling.
1532
+ * Specifies a schedule used to periodically transfer files from a source to a destination location. You can configure your task to execute hourly, daily, weekly or on specific days of the week. You control when in the day or hour you want the task to execute. The time you specify is UTC time. For more information, see Scheduling your task.
1528
1533
  */
1529
1534
  Schedule?: TaskSchedule;
1530
1535
  /**
@@ -945,6 +945,10 @@ declare namespace DeviceFarm {
945
945
  * Human-readable description of the project.
946
946
  */
947
947
  description?: ResourceDescription;
948
+ /**
949
+ * The VPC security groups and subnets that are attached to a project.
950
+ */
951
+ vpcConfig?: TestGridVpcConfig;
948
952
  }
949
953
  export interface CreateTestGridProjectResult {
950
954
  /**
@@ -966,7 +970,7 @@ declare namespace DeviceFarm {
966
970
  /**
967
971
  * A signed URL, expiring in CreateTestGridUrlRequest$expiresInSeconds seconds, to be passed to a RemoteWebDriver.
968
972
  */
969
- url?: String;
973
+ url?: SensitiveString;
970
974
  /**
971
975
  * The number of seconds the URL from CreateTestGridUrlResult$url stays active.
972
976
  */
@@ -1201,15 +1205,15 @@ declare namespace DeviceFarm {
1201
1205
  /**
1202
1206
  * The aspect of a device such as platform or model used as the selection criteria in a device filter. The supported operators for each attribute are provided in the following list. ARN The Amazon Resource Name (ARN) of the device (for example, arn:aws:devicefarm:us-west-2::device:12345Example). Supported operators: EQUALS, IN, NOT_IN PLATFORM The device platform. Valid values are ANDROID or IOS. Supported operators: EQUALS OS_VERSION The operating system version (for example, 10.3.2). Supported operators: EQUALS, GREATER_THAN, GREATER_THAN_OR_EQUALS, IN, LESS_THAN, LESS_THAN_OR_EQUALS, NOT_IN MODEL The device model (for example, iPad 5th Gen). Supported operators: CONTAINS, EQUALS, IN, NOT_IN AVAILABILITY The current availability of the device. Valid values are AVAILABLE, HIGHLY_AVAILABLE, BUSY, or TEMPORARY_NOT_AVAILABLE. Supported operators: EQUALS FORM_FACTOR The device form factor. Valid values are PHONE or TABLET. Supported operators: EQUALS MANUFACTURER The device manufacturer (for example, Apple). Supported operators: EQUALS, IN, NOT_IN REMOTE_ACCESS_ENABLED Whether the device is enabled for remote access. Valid values are TRUE or FALSE. Supported operators: EQUALS REMOTE_DEBUG_ENABLED Whether the device is enabled for remote debugging. Valid values are TRUE or FALSE. Supported operators: EQUALS Because remote debugging is no longer supported, this filter is ignored. INSTANCE_ARN The Amazon Resource Name (ARN) of the device instance. Supported operators: EQUALS, IN, NOT_IN INSTANCE_LABELS The label of the device instance. Supported operators: CONTAINS FLEET_TYPE The fleet type. Valid values are PUBLIC or PRIVATE. Supported operators: EQUALS
1203
1207
  */
1204
- attribute?: DeviceFilterAttribute;
1208
+ attribute: DeviceFilterAttribute;
1205
1209
  /**
1206
1210
  * Specifies how Device Farm compares the filter's attribute to the value. See the attribute descriptions.
1207
1211
  */
1208
- operator?: RuleOperator;
1212
+ operator: RuleOperator;
1209
1213
  /**
1210
1214
  * An array of one or more filter values used in a device filter. Operator Values The IN and NOT_IN operators can take a values array that has more than one element. The other operators require an array with a single element. Attribute Values The PLATFORM attribute can be set to ANDROID or IOS. The AVAILABILITY attribute can be set to AVAILABLE, HIGHLY_AVAILABLE, BUSY, or TEMPORARY_NOT_AVAILABLE. The FORM_FACTOR attribute can be set to PHONE or TABLET. The FLEET_TYPE attribute can be set to PUBLIC or PRIVATE.
1211
1215
  */
1212
- values?: DeviceFilterValues;
1216
+ values: DeviceFilterValues;
1213
1217
  }
1214
1218
  export type DeviceFilterAttribute = "ARN"|"PLATFORM"|"OS_VERSION"|"MODEL"|"AVAILABILITY"|"FORM_FACTOR"|"MANUFACTURER"|"REMOTE_ACCESS_ENABLED"|"REMOTE_DEBUG_ENABLED"|"INSTANCE_ARN"|"INSTANCE_LABELS"|"FLEET_TYPE"|string;
1215
1219
  export type DeviceFilterValues = String[];
@@ -2319,6 +2323,7 @@ declare namespace DeviceFarm {
2319
2323
  }
2320
2324
  export type NetworkProfileType = "CURATED"|"PRIVATE"|string;
2321
2325
  export type NetworkProfiles = NetworkProfile[];
2326
+ export type NonEmptyString = string;
2322
2327
  export interface Offering {
2323
2328
  /**
2324
2329
  * The ID that corresponds to a device offering.
@@ -2466,11 +2471,11 @@ declare namespace DeviceFarm {
2466
2471
  /**
2467
2472
  * The ID of the offering.
2468
2473
  */
2469
- offeringId?: OfferingIdentifier;
2474
+ offeringId: OfferingIdentifier;
2470
2475
  /**
2471
2476
  * The number of device slots to purchase in an offering request.
2472
2477
  */
2473
- quantity?: Integer;
2478
+ quantity: Integer;
2474
2479
  /**
2475
2480
  * The ID of the offering promotion to be applied to the purchase.
2476
2481
  */
@@ -2604,11 +2609,11 @@ declare namespace DeviceFarm {
2604
2609
  /**
2605
2610
  * The ID of a request to renew an offering.
2606
2611
  */
2607
- offeringId?: OfferingIdentifier;
2612
+ offeringId: OfferingIdentifier;
2608
2613
  /**
2609
2614
  * The quantity requested in an offering renewal.
2610
2615
  */
2611
- quantity?: Integer;
2616
+ quantity: Integer;
2612
2617
  }
2613
2618
  export interface RenewOfferingResult {
2614
2619
  /**
@@ -2888,6 +2893,9 @@ declare namespace DeviceFarm {
2888
2893
  */
2889
2894
  parameters?: TestParameters;
2890
2895
  }
2896
+ export type SecurityGroupIds = NonEmptyString[];
2897
+ export type SensitiveString = string;
2898
+ export type SensitiveURL = string;
2891
2899
  export type ServiceDnsName = string;
2892
2900
  export type SkipAppResign = boolean;
2893
2901
  export type SshPublicKey = string;
@@ -2928,6 +2936,7 @@ declare namespace DeviceFarm {
2928
2936
  run?: Run;
2929
2937
  }
2930
2938
  export type String = string;
2939
+ export type SubnetIds = NonEmptyString[];
2931
2940
  export interface Suite {
2932
2941
  /**
2933
2942
  * The suite's ARN.
@@ -3060,6 +3069,10 @@ declare namespace DeviceFarm {
3060
3069
  * A human-readable description for the project.
3061
3070
  */
3062
3071
  description?: String;
3072
+ /**
3073
+ * The VPC security groups and subnets that are attached to a project.
3074
+ */
3075
+ vpcConfig?: TestGridVpcConfig;
3063
3076
  /**
3064
3077
  * When the project was created.
3065
3078
  */
@@ -3127,7 +3140,7 @@ declare namespace DeviceFarm {
3127
3140
  /**
3128
3141
  * A semi-stable URL to the content of the object.
3129
3142
  */
3130
- url?: String;
3143
+ url?: SensitiveString;
3131
3144
  }
3132
3145
  export type TestGridSessionArtifactCategory = "VIDEO"|"LOG"|string;
3133
3146
  export type TestGridSessionArtifactType = "UNKNOWN"|"VIDEO"|"SELENIUM_LOG"|string;
@@ -3135,6 +3148,20 @@ declare namespace DeviceFarm {
3135
3148
  export type TestGridSessionStatus = "ACTIVE"|"CLOSED"|"ERRORED"|string;
3136
3149
  export type TestGridSessions = TestGridSession[];
3137
3150
  export type TestGridUrlExpiresInSecondsInput = number;
3151
+ export interface TestGridVpcConfig {
3152
+ /**
3153
+ * A list of VPC security group IDs in your Amazon VPC.
3154
+ */
3155
+ securityGroupIds: SecurityGroupIds;
3156
+ /**
3157
+ * A list of VPC subnet IDs in your Amazon VPC.
3158
+ */
3159
+ subnetIds: SubnetIds;
3160
+ /**
3161
+ * The ID of the Amazon VPC.
3162
+ */
3163
+ vpcId: NonEmptyString;
3164
+ }
3138
3165
  export type TestParameters = {[key: string]: String};
3139
3166
  export type TestType = "BUILTIN_FUZZ"|"BUILTIN_EXPLORER"|"WEB_PERFORMANCE_PROFILE"|"APPIUM_JAVA_JUNIT"|"APPIUM_JAVA_TESTNG"|"APPIUM_PYTHON"|"APPIUM_NODE"|"APPIUM_RUBY"|"APPIUM_WEB_JAVA_JUNIT"|"APPIUM_WEB_JAVA_TESTNG"|"APPIUM_WEB_PYTHON"|"APPIUM_WEB_NODE"|"APPIUM_WEB_RUBY"|"CALABASH"|"INSTRUMENTATION"|"UIAUTOMATION"|"UIAUTOMATOR"|"XCTEST"|"XCTEST_UI"|"REMOTE_ACCESS_RECORD"|"REMOTE_ACCESS_REPLAY"|string;
3140
3167
  export type Tests = Test[];
@@ -3347,6 +3374,10 @@ declare namespace DeviceFarm {
3347
3374
  * Human-readable description for the project.
3348
3375
  */
3349
3376
  description?: ResourceDescription;
3377
+ /**
3378
+ * The VPC security groups and subnets that are attached to a project.
3379
+ */
3380
+ vpcConfig?: TestGridVpcConfig;
3350
3381
  }
3351
3382
  export interface UpdateTestGridProjectResult {
3352
3383
  /**
@@ -3430,7 +3461,7 @@ declare namespace DeviceFarm {
3430
3461
  /**
3431
3462
  * The presigned Amazon S3 URL that was used to store a file using a PUT request.
3432
3463
  */
3433
- url?: URL;
3464
+ url?: SensitiveURL;
3434
3465
  /**
3435
3466
  * The upload's metadata. For example, for Android, this contains information that is parsed from the manifest and is displayed in the AWS Device Farm console after the associated app is uploaded.
3436
3467
  */