aws-sdk 2.702.0 → 2.706.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/CHANGELOG.md +24 -1
- package/README.md +1 -1
- package/apis/amplify-2017-07-25.min.json +135 -73
- package/apis/backup-2018-11-15.min.json +64 -31
- package/apis/cloudformation-2010-05-15.min.json +40 -18
- package/apis/codecommit-2015-04-13.min.json +96 -24
- package/apis/codecommit-2015-04-13.paginators.json +5 -0
- package/apis/cognito-idp-2016-04-18.min.json +4 -2
- package/apis/ec2-2016-11-15.min.json +5 -1
- package/apis/elasticmapreduce-2009-03-31.min.json +103 -96
- package/apis/fsx-2018-03-01.min.json +59 -15
- package/apis/glue-2017-03-31.min.json +449 -60
- package/apis/honeycode-2020-03-01.examples.json +5 -0
- package/apis/honeycode-2020-03-01.min.json +182 -0
- package/apis/honeycode-2020-03-01.paginators.json +4 -0
- package/apis/mediatailor-2018-04-23.min.json +42 -23
- package/apis/metadata.json +3 -0
- package/apis/quicksight-2018-04-01.min.json +66 -53
- package/apis/sagemaker-2017-07-24.min.json +146 -129
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/amplify.d.ts +413 -373
- package/clients/autoscaling.d.ts +35 -35
- package/clients/backup.d.ts +68 -15
- package/clients/cloudformation.d.ts +35 -3
- package/clients/codecommit.d.ts +105 -6
- package/clients/dms.d.ts +48 -48
- package/clients/ec2.d.ts +53 -49
- package/clients/emr.d.ts +18 -2
- package/clients/fsx.d.ts +63 -26
- package/clients/glue.d.ts +415 -0
- package/clients/honeycode.d.ts +190 -0
- package/clients/honeycode.js +18 -0
- package/clients/iam.d.ts +15 -15
- package/clients/mediatailor.d.ts +26 -0
- package/clients/organizations.d.ts +21 -21
- package/clients/quicksight.d.ts +33 -19
- package/clients/sagemaker.d.ts +23 -3
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +54 -17
- package/dist/aws-sdk.js +259 -144
- package/dist/aws-sdk.min.js +74 -73
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/fsx.d.ts
CHANGED
|
@@ -20,11 +20,11 @@ declare class FSx extends Service {
|
|
|
20
20
|
*/
|
|
21
21
|
cancelDataRepositoryTask(callback?: (err: AWSError, data: FSx.Types.CancelDataRepositoryTaskResponse) => void): Request<FSx.Types.CancelDataRepositoryTaskResponse, AWSError>;
|
|
22
22
|
/**
|
|
23
|
-
* Creates a backup of an existing Amazon FSx
|
|
23
|
+
* Creates a backup of an existing Amazon FSx file system. Creating regular backups for your file system is a best practice, enabling you to restore a file system from a backup if an issue arises with the original file system. For Amazon FSx for Lustre file systems, you can create a backup only for file systems with the following configuration: a Persistent deployment type is not linked to an Amazon S3 data respository. For more information, see https://docs.aws.amazon.com/fsx/latest/LustreGuide/lustre-backups.html. If a backup with the specified client request token exists, and the parameters match, this operation returns the description of the existing backup. If a backup specified client request token exists, and the parameters don't match, this operation returns IncompatibleParameterError. If a backup with the specified client request token doesn't exist, CreateBackup does the following: Creates a new Amazon FSx backup with an assigned ID, and an initial lifecycle state of CREATING. Returns the description of the backup. By using the idempotent operation, you can retry a CreateBackup operation without the risk of creating an extra backup. This approach can be useful when an initial call fails in a way that makes it unclear whether a backup was created. If you use the same client request token and the initial call created a backup, the operation returns a successful result because all the parameters are the same. The CreateBackup operation returns while the backup's lifecycle state is still CREATING. You can check the backup creation status by calling the DescribeBackups operation, which returns the backup state along with other information.
|
|
24
24
|
*/
|
|
25
25
|
createBackup(params: FSx.Types.CreateBackupRequest, callback?: (err: AWSError, data: FSx.Types.CreateBackupResponse) => void): Request<FSx.Types.CreateBackupResponse, AWSError>;
|
|
26
26
|
/**
|
|
27
|
-
* Creates a backup of an existing Amazon FSx
|
|
27
|
+
* Creates a backup of an existing Amazon FSx file system. Creating regular backups for your file system is a best practice, enabling you to restore a file system from a backup if an issue arises with the original file system. For Amazon FSx for Lustre file systems, you can create a backup only for file systems with the following configuration: a Persistent deployment type is not linked to an Amazon S3 data respository. For more information, see https://docs.aws.amazon.com/fsx/latest/LustreGuide/lustre-backups.html. If a backup with the specified client request token exists, and the parameters match, this operation returns the description of the existing backup. If a backup specified client request token exists, and the parameters don't match, this operation returns IncompatibleParameterError. If a backup with the specified client request token doesn't exist, CreateBackup does the following: Creates a new Amazon FSx backup with an assigned ID, and an initial lifecycle state of CREATING. Returns the description of the backup. By using the idempotent operation, you can retry a CreateBackup operation without the risk of creating an extra backup. This approach can be useful when an initial call fails in a way that makes it unclear whether a backup was created. If you use the same client request token and the initial call created a backup, the operation returns a successful result because all the parameters are the same. The CreateBackup operation returns while the backup's lifecycle state is still CREATING. You can check the backup creation status by calling the DescribeBackups operation, which returns the backup state along with other information.
|
|
28
28
|
*/
|
|
29
29
|
createBackup(callback?: (err: AWSError, data: FSx.Types.CreateBackupResponse) => void): Request<FSx.Types.CreateBackupResponse, AWSError>;
|
|
30
30
|
/**
|
|
@@ -44,19 +44,19 @@ declare class FSx extends Service {
|
|
|
44
44
|
*/
|
|
45
45
|
createFileSystem(callback?: (err: AWSError, data: FSx.Types.CreateFileSystemResponse) => void): Request<FSx.Types.CreateFileSystemResponse, AWSError>;
|
|
46
46
|
/**
|
|
47
|
-
* Creates a new Amazon FSx file system from an existing Amazon FSx
|
|
47
|
+
* Creates a new Amazon FSx file system from an existing Amazon FSx backup. If a file system with the specified client request token exists and the parameters match, this operation returns the description of the file system. If a client request token specified by the file system exists and the parameters don't match, this call returns IncompatibleParameterError. If a file system with the specified client request token doesn't exist, this operation does the following: Creates a new Amazon FSx file system from backup with an assigned ID, and an initial lifecycle state of CREATING. Returns the description of the file system. Parameters like Active Directory, default share name, automatic backup, and backup settings default to the parameters of the file system that was backed up, unless overridden. You can explicitly supply other settings. By using the idempotent operation, you can retry a CreateFileSystemFromBackup call without the risk of creating an extra file system. This approach can be useful when an initial call fails in a way that makes it unclear whether a file system was created. Examples are if a transport level timeout occurred, or your connection was reset. If you use the same client request token and the initial call created a file system, the client receives success as long as the parameters are the same. The CreateFileSystemFromBackup call returns while the file system's lifecycle state is still CREATING. You can check the file-system creation status by calling the DescribeFileSystems operation, which returns the file system state along with other information.
|
|
48
48
|
*/
|
|
49
49
|
createFileSystemFromBackup(params: FSx.Types.CreateFileSystemFromBackupRequest, callback?: (err: AWSError, data: FSx.Types.CreateFileSystemFromBackupResponse) => void): Request<FSx.Types.CreateFileSystemFromBackupResponse, AWSError>;
|
|
50
50
|
/**
|
|
51
|
-
* Creates a new Amazon FSx file system from an existing Amazon FSx
|
|
51
|
+
* Creates a new Amazon FSx file system from an existing Amazon FSx backup. If a file system with the specified client request token exists and the parameters match, this operation returns the description of the file system. If a client request token specified by the file system exists and the parameters don't match, this call returns IncompatibleParameterError. If a file system with the specified client request token doesn't exist, this operation does the following: Creates a new Amazon FSx file system from backup with an assigned ID, and an initial lifecycle state of CREATING. Returns the description of the file system. Parameters like Active Directory, default share name, automatic backup, and backup settings default to the parameters of the file system that was backed up, unless overridden. You can explicitly supply other settings. By using the idempotent operation, you can retry a CreateFileSystemFromBackup call without the risk of creating an extra file system. This approach can be useful when an initial call fails in a way that makes it unclear whether a file system was created. Examples are if a transport level timeout occurred, or your connection was reset. If you use the same client request token and the initial call created a file system, the client receives success as long as the parameters are the same. The CreateFileSystemFromBackup call returns while the file system's lifecycle state is still CREATING. You can check the file-system creation status by calling the DescribeFileSystems operation, which returns the file system state along with other information.
|
|
52
52
|
*/
|
|
53
53
|
createFileSystemFromBackup(callback?: (err: AWSError, data: FSx.Types.CreateFileSystemFromBackupResponse) => void): Request<FSx.Types.CreateFileSystemFromBackupResponse, AWSError>;
|
|
54
54
|
/**
|
|
55
|
-
* Deletes an Amazon FSx
|
|
55
|
+
* Deletes an Amazon FSx backup, deleting its contents. After deletion, the backup no longer exists, and its data is gone. The DeleteBackup call returns instantly. The backup will not show up in later DescribeBackups calls. The data in a deleted backup is also deleted and can't be recovered by any means.
|
|
56
56
|
*/
|
|
57
57
|
deleteBackup(params: FSx.Types.DeleteBackupRequest, callback?: (err: AWSError, data: FSx.Types.DeleteBackupResponse) => void): Request<FSx.Types.DeleteBackupResponse, AWSError>;
|
|
58
58
|
/**
|
|
59
|
-
* Deletes an Amazon FSx
|
|
59
|
+
* Deletes an Amazon FSx backup, deleting its contents. After deletion, the backup no longer exists, and its data is gone. The DeleteBackup call returns instantly. The backup will not show up in later DescribeBackups calls. The data in a deleted backup is also deleted and can't be recovered by any means.
|
|
60
60
|
*/
|
|
61
61
|
deleteBackup(callback?: (err: AWSError, data: FSx.Types.DeleteBackupResponse) => void): Request<FSx.Types.DeleteBackupResponse, AWSError>;
|
|
62
62
|
/**
|
|
@@ -68,11 +68,11 @@ declare class FSx extends Service {
|
|
|
68
68
|
*/
|
|
69
69
|
deleteFileSystem(callback?: (err: AWSError, data: FSx.Types.DeleteFileSystemResponse) => void): Request<FSx.Types.DeleteFileSystemResponse, AWSError>;
|
|
70
70
|
/**
|
|
71
|
-
* Returns the description of specific Amazon FSx
|
|
71
|
+
* Returns the description of specific Amazon FSx backups, if a BackupIds value is provided for that backup. Otherwise, it returns all backups owned by your AWS account in the AWS Region of the endpoint that you're calling. When retrieving all backups, you can optionally specify the MaxResults parameter to limit the number of backups in a response. If more backups remain, Amazon FSx returns a NextToken value in the response. In this case, send a later request with the NextToken request parameter set to the value of NextToken from the last response. This action is used in an iterative process to retrieve a list of your backups. DescribeBackups is called first without a NextTokenvalue. Then the action continues to be called with the NextToken parameter set to the value of the last NextToken value until a response has no NextToken. When using this action, keep the following in mind: The implementation might return fewer than MaxResults file system descriptions while still including a NextToken value. The order of backups returned in the response of one DescribeBackups call and the order of backups returned across the responses of a multi-call iteration is unspecified.
|
|
72
72
|
*/
|
|
73
73
|
describeBackups(params: FSx.Types.DescribeBackupsRequest, callback?: (err: AWSError, data: FSx.Types.DescribeBackupsResponse) => void): Request<FSx.Types.DescribeBackupsResponse, AWSError>;
|
|
74
74
|
/**
|
|
75
|
-
* Returns the description of specific Amazon FSx
|
|
75
|
+
* Returns the description of specific Amazon FSx backups, if a BackupIds value is provided for that backup. Otherwise, it returns all backups owned by your AWS account in the AWS Region of the endpoint that you're calling. When retrieving all backups, you can optionally specify the MaxResults parameter to limit the number of backups in a response. If more backups remain, Amazon FSx returns a NextToken value in the response. In this case, send a later request with the NextToken request parameter set to the value of NextToken from the last response. This action is used in an iterative process to retrieve a list of your backups. DescribeBackups is called first without a NextTokenvalue. Then the action continues to be called with the NextToken parameter set to the value of the last NextToken value until a response has no NextToken. When using this action, keep the following in mind: The implementation might return fewer than MaxResults file system descriptions while still including a NextToken value. The order of backups returned in the response of one DescribeBackups call and the order of backups returned across the responses of a multi-call iteration is unspecified.
|
|
76
76
|
*/
|
|
77
77
|
describeBackups(callback?: (err: AWSError, data: FSx.Types.DescribeBackupsResponse) => void): Request<FSx.Types.DescribeBackupsResponse, AWSError>;
|
|
78
78
|
/**
|
|
@@ -262,11 +262,11 @@ declare namespace FSx {
|
|
|
262
262
|
*/
|
|
263
263
|
FileSystemId: FileSystemId;
|
|
264
264
|
/**
|
|
265
|
-
*
|
|
265
|
+
* A string of up to 64 ASCII characters that Amazon FSx uses to ensure idempotent creation. This string is automatically filled on your behalf when you use the AWS Command Line Interface (AWS CLI) or an AWS SDK.
|
|
266
266
|
*/
|
|
267
267
|
ClientRequestToken?: ClientRequestToken;
|
|
268
268
|
/**
|
|
269
|
-
* The tags to apply to the backup at backup creation. The key value of the Name tag appears in the console as the backup name.
|
|
269
|
+
* The tags to apply to the backup at backup creation. The key value of the Name tag appears in the console as the backup name. If you have set CopyTagsToBackups to true, and you specify one or more tags using the CreateBackup action, no existing tags on the file system are copied from the file system to the backup.
|
|
270
270
|
*/
|
|
271
271
|
Tags?: Tags;
|
|
272
272
|
}
|
|
@@ -302,7 +302,7 @@ declare namespace FSx {
|
|
|
302
302
|
export interface CreateFileSystemFromBackupRequest {
|
|
303
303
|
BackupId: BackupId;
|
|
304
304
|
/**
|
|
305
|
-
*
|
|
305
|
+
* A string of up to 64 ASCII characters that Amazon FSx uses to ensure idempotent creation. This string is automatically filled on your behalf when you use the AWS Command Line Interface (AWS CLI) or an AWS SDK.
|
|
306
306
|
*/
|
|
307
307
|
ClientRequestToken?: ClientRequestToken;
|
|
308
308
|
/**
|
|
@@ -321,6 +321,7 @@ declare namespace FSx {
|
|
|
321
321
|
* The configuration for this Microsoft Windows file system.
|
|
322
322
|
*/
|
|
323
323
|
WindowsConfiguration?: CreateFileSystemWindowsConfiguration;
|
|
324
|
+
LustreConfiguration?: CreateFileSystemLustreConfiguration;
|
|
324
325
|
/**
|
|
325
326
|
* Sets the storage type for the Windows file system you're creating from a backup. Valid values are SSD and HDD. Set to SSD to use solid state drive storage. Supported on all Windows deployment types. Set to HDD to use hard disk drive storage. Supported on SINGLE_AZ_2 and MULTI_AZ_1 Windows file system deployment types. Default value is SSD. HDD and SSD storage types have different minimum storage capacity requirements. A restored file system's storage capacity is tied to the file system that was backed up. You can create a file system that uses HDD storage from a backup of a file system that used SSD storage only if the original SSD file system had a storage capacity of at least 2000 GiB.
|
|
326
327
|
*/
|
|
@@ -350,17 +351,23 @@ declare namespace FSx {
|
|
|
350
351
|
*/
|
|
351
352
|
ImportedFileChunkSize?: Megabytes;
|
|
352
353
|
/**
|
|
353
|
-
*
|
|
354
|
+
* Choose SCRATCH_1 and SCRATCH_2 deployment types when you need temporary storage and shorter-term processing of data. The SCRATCH_2 deployment type provides in-transit encryption of data and higher burst throughput capacity than SCRATCH_1. This option can only be set for for PERSISTENT_1 deployments types. Choose PERSISTENT_1 deployment type for longer-term storage and workloads and encryption of data in transit. To learn more about deployment types, see FSx for Lustre Deployment Options. Encryption of data in-transit is automatically enabled when you access a SCRATCH_2 or PERSISTENT_1 file system from Amazon EC2 instances that support this feature. (Default = SCRATCH_1) Encryption of data in-transit for SCRATCH_2 and PERSISTENT_1 deployment types is supported when accessed from supported instance types in supported AWS Regions. To learn more, Encrypting Data in Transit.
|
|
354
355
|
*/
|
|
355
356
|
DeploymentType?: LustreDeploymentType;
|
|
356
357
|
/**
|
|
357
358
|
* Required for the PERSISTENT_1 deployment type, describes the amount of read and write throughput for each 1 tebibyte of storage, in MB/s/TiB. File system throughput capacity is calculated by multiplying file system storage capacity (TiB) by the PerUnitStorageThroughput (MB/s/TiB). For a 2.4 TiB file system, provisioning 50 MB/s/TiB of PerUnitStorageThroughput yields 117 MB/s of file system throughput. You pay for the amount of throughput that you provision. Valid values are 50, 100, 200.
|
|
358
359
|
*/
|
|
359
360
|
PerUnitStorageThroughput?: PerUnitStorageThroughput;
|
|
361
|
+
DailyAutomaticBackupStartTime?: DailyTime;
|
|
362
|
+
AutomaticBackupRetentionDays?: AutomaticBackupRetentionDays;
|
|
363
|
+
/**
|
|
364
|
+
* A boolean flag indicating whether tags for the file system should be copied to backups. This value defaults to false. If it's set to true, all tags for the file system are copied to all automatic and user-initiated backups where the user doesn't specify tags. If this value is true, and you specify one or more tags, only the specified tags are copied to backups. If you specify one or more tags when creating a user-initiated backup, no tags are copied from the file system, regardless of this value.
|
|
365
|
+
*/
|
|
366
|
+
CopyTagsToBackups?: Flag;
|
|
360
367
|
}
|
|
361
368
|
export interface CreateFileSystemRequest {
|
|
362
369
|
/**
|
|
363
|
-
*
|
|
370
|
+
* A string of up to 64 ASCII characters that Amazon FSx uses to ensure idempotent creation. This string is automatically filled on your behalf when you use the AWS Command Line Interface (AWS CLI) or an AWS SDK.
|
|
364
371
|
*/
|
|
365
372
|
ClientRequestToken?: ClientRequestToken;
|
|
366
373
|
/**
|
|
@@ -537,7 +544,7 @@ declare namespace FSx {
|
|
|
537
544
|
*/
|
|
538
545
|
BackupId: BackupId;
|
|
539
546
|
/**
|
|
540
|
-
*
|
|
547
|
+
* A string of up to 64 ASCII characters that Amazon FSx uses to ensure idempotent deletion. This is automatically filled on your behalf when using the AWS CLI or SDK.
|
|
541
548
|
*/
|
|
542
549
|
ClientRequestToken?: ClientRequestToken;
|
|
543
550
|
}
|
|
@@ -551,16 +558,37 @@ declare namespace FSx {
|
|
|
551
558
|
*/
|
|
552
559
|
Lifecycle?: BackupLifecycle;
|
|
553
560
|
}
|
|
561
|
+
export interface DeleteFileSystemLustreConfiguration {
|
|
562
|
+
/**
|
|
563
|
+
* Set SkipFinalBackup to false if you want to take a final backup of the file system you are deleting. By default, Amazon FSx will not take a final backup on your behalf when the DeleteFileSystem operation is invoked. (Default = true)
|
|
564
|
+
*/
|
|
565
|
+
SkipFinalBackup?: Flag;
|
|
566
|
+
/**
|
|
567
|
+
* Use if SkipFinalBackup is set to false, and you want to apply an array of tags to the final backup. If you have set the file system property CopyTagsToBackups to true, and you specify one or more FinalBackupTags when deleting a file system, Amazon FSx will not copy any existing file system tags to the backup.
|
|
568
|
+
*/
|
|
569
|
+
FinalBackupTags?: Tags;
|
|
570
|
+
}
|
|
571
|
+
export interface DeleteFileSystemLustreResponse {
|
|
572
|
+
/**
|
|
573
|
+
* The ID of the final backup for this file system.
|
|
574
|
+
*/
|
|
575
|
+
FinalBackupId?: BackupId;
|
|
576
|
+
/**
|
|
577
|
+
* The set of tags applied to the final backup.
|
|
578
|
+
*/
|
|
579
|
+
FinalBackupTags?: Tags;
|
|
580
|
+
}
|
|
554
581
|
export interface DeleteFileSystemRequest {
|
|
555
582
|
/**
|
|
556
583
|
* The ID of the file system you want to delete.
|
|
557
584
|
*/
|
|
558
585
|
FileSystemId: FileSystemId;
|
|
559
586
|
/**
|
|
560
|
-
*
|
|
587
|
+
* A string of up to 64 ASCII characters that Amazon FSx uses to ensure idempotent deletion. This is automatically filled on your behalf when using the AWS CLI or SDK.
|
|
561
588
|
*/
|
|
562
589
|
ClientRequestToken?: ClientRequestToken;
|
|
563
590
|
WindowsConfiguration?: DeleteFileSystemWindowsConfiguration;
|
|
591
|
+
LustreConfiguration?: DeleteFileSystemLustreConfiguration;
|
|
564
592
|
}
|
|
565
593
|
export interface DeleteFileSystemResponse {
|
|
566
594
|
/**
|
|
@@ -572,6 +600,7 @@ declare namespace FSx {
|
|
|
572
600
|
*/
|
|
573
601
|
Lifecycle?: FileSystemLifecycle;
|
|
574
602
|
WindowsResponse?: DeleteFileSystemWindowsResponse;
|
|
603
|
+
LustreResponse?: DeleteFileSystemLustreResponse;
|
|
575
604
|
}
|
|
576
605
|
export interface DeleteFileSystemWindowsConfiguration {
|
|
577
606
|
/**
|
|
@@ -595,19 +624,19 @@ declare namespace FSx {
|
|
|
595
624
|
}
|
|
596
625
|
export interface DescribeBackupsRequest {
|
|
597
626
|
/**
|
|
598
|
-
*
|
|
627
|
+
* IDs of the backups you want to retrieve (String). This overrides any filters. If any IDs are not found, BackupNotFound will be thrown.
|
|
599
628
|
*/
|
|
600
629
|
BackupIds?: BackupIds;
|
|
601
630
|
/**
|
|
602
|
-
*
|
|
631
|
+
* Filters structure. Supported names are file-system-id and backup-type.
|
|
603
632
|
*/
|
|
604
633
|
Filters?: Filters;
|
|
605
634
|
/**
|
|
606
|
-
*
|
|
635
|
+
* Maximum number of backups to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon FSx returns is the minimum of the MaxResults parameter specified in the request and the service's internal maximum number of items per page.
|
|
607
636
|
*/
|
|
608
637
|
MaxResults?: MaxResults;
|
|
609
638
|
/**
|
|
610
|
-
*
|
|
639
|
+
* Opaque pagination token returned from a previous DescribeBackups operation (String). If a token present, the action continues the list from where the returning call left off.
|
|
611
640
|
*/
|
|
612
641
|
NextToken?: NextToken;
|
|
613
642
|
}
|
|
@@ -642,15 +671,15 @@ declare namespace FSx {
|
|
|
642
671
|
}
|
|
643
672
|
export interface DescribeFileSystemsRequest {
|
|
644
673
|
/**
|
|
645
|
-
*
|
|
674
|
+
* IDs of the file systems whose descriptions you want to retrieve (String).
|
|
646
675
|
*/
|
|
647
676
|
FileSystemIds?: FileSystemIds;
|
|
648
677
|
/**
|
|
649
|
-
*
|
|
678
|
+
* Maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon FSx returns is the minimum of the MaxResults parameter specified in the request and the service's internal maximum number of items per page.
|
|
650
679
|
*/
|
|
651
680
|
MaxResults?: MaxResults;
|
|
652
681
|
/**
|
|
653
|
-
*
|
|
682
|
+
* Opaque pagination token returned from a previous DescribeFileSystems operation (String). If a token present, the action continues the list from where the returning call left off.
|
|
654
683
|
*/
|
|
655
684
|
NextToken?: NextToken;
|
|
656
685
|
}
|
|
@@ -763,7 +792,7 @@ declare namespace FSx {
|
|
|
763
792
|
*/
|
|
764
793
|
Values?: FilterValues;
|
|
765
794
|
}
|
|
766
|
-
export type FilterName = "file-system-id"|"backup-type"|string;
|
|
795
|
+
export type FilterName = "file-system-id"|"backup-type"|"file-system-type"|string;
|
|
767
796
|
export type FilterValue = string;
|
|
768
797
|
export type FilterValues = FilterValue[];
|
|
769
798
|
export type Filters = Filter[];
|
|
@@ -777,11 +806,11 @@ declare namespace FSx {
|
|
|
777
806
|
*/
|
|
778
807
|
ResourceARN: ResourceARN;
|
|
779
808
|
/**
|
|
780
|
-
*
|
|
809
|
+
* Maximum number of tags to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon FSx returns is the minimum of the MaxResults parameter specified in the request and the service's internal maximum number of items per page.
|
|
781
810
|
*/
|
|
782
811
|
MaxResults?: MaxResults;
|
|
783
812
|
/**
|
|
784
|
-
*
|
|
813
|
+
* Opaque pagination token returned from a previous ListTagsForResource operation (String). If a token present, the action continues the list from where the returning call left off.
|
|
785
814
|
*/
|
|
786
815
|
NextToken?: NextToken;
|
|
787
816
|
}
|
|
@@ -803,7 +832,7 @@ declare namespace FSx {
|
|
|
803
832
|
WeeklyMaintenanceStartTime?: WeeklyTime;
|
|
804
833
|
DataRepositoryConfiguration?: DataRepositoryConfiguration;
|
|
805
834
|
/**
|
|
806
|
-
* The deployment type of the FSX for Lustre file system.
|
|
835
|
+
* The deployment type of the FSX for Lustre file system. Scratch deployment type is designed for temporary storage and shorter-term processing of data. SCRATCH_1 and SCRATCH_2 deployment types are best suited for when you need temporary storage and shorter-term processing of data. The SCRATCH_2 deployment type provides in-transit encryption of data and higher burst throughput capacity than SCRATCH_1. The PERSISTENT_1 deployment type is used for longer-term storage and workloads and encryption of data in transit. To learn more about deployment types, see FSx for Lustre Deployment Options. (Default = SCRATCH_1)
|
|
807
836
|
*/
|
|
808
837
|
DeploymentType?: LustreDeploymentType;
|
|
809
838
|
/**
|
|
@@ -814,6 +843,12 @@ declare namespace FSx {
|
|
|
814
843
|
* You use the MountName value when mounting the file system. For the SCRATCH_1 deployment type, this value is always "fsx". For SCRATCH_2 and PERSISTENT_1 deployment types, this value is a string that is unique within an AWS Region.
|
|
815
844
|
*/
|
|
816
845
|
MountName?: LustreFileSystemMountName;
|
|
846
|
+
DailyAutomaticBackupStartTime?: DailyTime;
|
|
847
|
+
AutomaticBackupRetentionDays?: AutomaticBackupRetentionDays;
|
|
848
|
+
/**
|
|
849
|
+
* A boolean flag indicating whether tags on the file system should be copied to backups. If it's set to true, all tags on the file system are copied to all automatic backups and any user-initiated backups where the user doesn't specify any tags. If this value is true, and you specify one or more tags, only the specified tags are copied to backups. If you specify one or more tags when creating a user-initiated backup, no tags are copied from the file system, regardless of this value. (Default = false)
|
|
850
|
+
*/
|
|
851
|
+
CopyTagsToBackups?: Flag;
|
|
817
852
|
}
|
|
818
853
|
export type LustreFileSystemMountName = string;
|
|
819
854
|
export type MaxResults = number;
|
|
@@ -946,6 +981,8 @@ declare namespace FSx {
|
|
|
946
981
|
* The preferred start time to perform weekly maintenance, formatted d:HH:MM in the UTC time zone. d is the weekday number, from 1 through 7, beginning with Monday and ending with Sunday.
|
|
947
982
|
*/
|
|
948
983
|
WeeklyMaintenanceStartTime?: WeeklyTime;
|
|
984
|
+
DailyAutomaticBackupStartTime?: DailyTime;
|
|
985
|
+
AutomaticBackupRetentionDays?: AutomaticBackupRetentionDays;
|
|
949
986
|
}
|
|
950
987
|
export interface UpdateFileSystemRequest {
|
|
951
988
|
/**
|