cdk-lambda-subminute 2.0.486 → 2.0.487
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/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/backup-2018-11-15.min.json +10 -1
- package/node_modules/aws-sdk/apis/datazone-2018-05-10.min.json +1272 -482
- package/node_modules/aws-sdk/apis/datazone-2018-05-10.paginators.json +18 -0
- package/node_modules/aws-sdk/apis/logs-2014-03-28.min.json +28 -4
- package/node_modules/aws-sdk/apis/redshift-data-2019-12-20.min.json +32 -9
- package/node_modules/aws-sdk/clients/backup.d.ts +280 -268
- package/node_modules/aws-sdk/clients/cloudwatchlogs.d.ts +41 -10
- package/node_modules/aws-sdk/clients/datazone.d.ts +806 -1
- package/node_modules/aws-sdk/clients/redshiftdata.d.ts +62 -20
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +8 -6
- package/node_modules/aws-sdk/dist/aws-sdk.js +32 -7
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +41 -41
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/region_config.js +1 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -12,11 +12,11 @@ declare class Backup extends Service {
|
|
12
12
|
constructor(options?: Backup.Types.ClientConfiguration)
|
13
13
|
config: Config & Backup.Types.ClientConfiguration;
|
14
14
|
/**
|
15
|
-
*
|
15
|
+
* Removes the specified legal hold on a recovery point. This action can only be performed by a user with sufficient permissions.
|
16
16
|
*/
|
17
17
|
cancelLegalHold(params: Backup.Types.CancelLegalHoldInput, callback?: (err: AWSError, data: Backup.Types.CancelLegalHoldOutput) => void): Request<Backup.Types.CancelLegalHoldOutput, AWSError>;
|
18
18
|
/**
|
19
|
-
*
|
19
|
+
* Removes the specified legal hold on a recovery point. This action can only be performed by a user with sufficient permissions.
|
20
20
|
*/
|
21
21
|
cancelLegalHold(callback?: (err: AWSError, data: Backup.Types.CancelLegalHoldOutput) => void): Request<Backup.Types.CancelLegalHoldOutput, AWSError>;
|
22
22
|
/**
|
@@ -52,19 +52,19 @@ declare class Backup extends Service {
|
|
52
52
|
*/
|
53
53
|
createFramework(callback?: (err: AWSError, data: Backup.Types.CreateFrameworkOutput) => void): Request<Backup.Types.CreateFrameworkOutput, AWSError>;
|
54
54
|
/**
|
55
|
-
*
|
55
|
+
* Creates a legal hold on a recovery point (backup). A legal hold is a restraint on altering or deleting a backup until an authorized user cancels the legal hold. Any actions to delete or disassociate a recovery point will fail with an error if one or more active legal holds are on the recovery point.
|
56
56
|
*/
|
57
57
|
createLegalHold(params: Backup.Types.CreateLegalHoldInput, callback?: (err: AWSError, data: Backup.Types.CreateLegalHoldOutput) => void): Request<Backup.Types.CreateLegalHoldOutput, AWSError>;
|
58
58
|
/**
|
59
|
-
*
|
59
|
+
* Creates a legal hold on a recovery point (backup). A legal hold is a restraint on altering or deleting a backup until an authorized user cancels the legal hold. Any actions to delete or disassociate a recovery point will fail with an error if one or more active legal holds are on the recovery point.
|
60
60
|
*/
|
61
61
|
createLegalHold(callback?: (err: AWSError, data: Backup.Types.CreateLegalHoldOutput) => void): Request<Backup.Types.CreateLegalHoldOutput, AWSError>;
|
62
62
|
/**
|
63
|
-
*
|
63
|
+
* Creates a logical container to where backups may be copied. This request includes a name, the Region, the maximum number of retention days, the minimum number of retention days, and optionally can include tags and a creator request ID. Do not include sensitive data, such as passport numbers, in the name of a backup vault.
|
64
64
|
*/
|
65
65
|
createLogicallyAirGappedBackupVault(params: Backup.Types.CreateLogicallyAirGappedBackupVaultInput, callback?: (err: AWSError, data: Backup.Types.CreateLogicallyAirGappedBackupVaultOutput) => void): Request<Backup.Types.CreateLogicallyAirGappedBackupVaultOutput, AWSError>;
|
66
66
|
/**
|
67
|
-
*
|
67
|
+
* Creates a logical container to where backups may be copied. This request includes a name, the Region, the maximum number of retention days, the minimum number of retention days, and optionally can include tags and a creator request ID. Do not include sensitive data, such as passport numbers, in the name of a backup vault.
|
68
68
|
*/
|
69
69
|
createLogicallyAirGappedBackupVault(callback?: (err: AWSError, data: Backup.Types.CreateLogicallyAirGappedBackupVaultOutput) => void): Request<Backup.Types.CreateLogicallyAirGappedBackupVaultOutput, AWSError>;
|
70
70
|
/**
|
@@ -76,11 +76,11 @@ declare class Backup extends Service {
|
|
76
76
|
*/
|
77
77
|
createReportPlan(callback?: (err: AWSError, data: Backup.Types.CreateReportPlanOutput) => void): Request<Backup.Types.CreateReportPlanOutput, AWSError>;
|
78
78
|
/**
|
79
|
-
*
|
79
|
+
* Creates a restore testing plan. The first of two steps to create a restore testing plan. After this request is successful, finish the procedure using CreateRestoreTestingSelection.
|
80
80
|
*/
|
81
81
|
createRestoreTestingPlan(params: Backup.Types.CreateRestoreTestingPlanInput, callback?: (err: AWSError, data: Backup.Types.CreateRestoreTestingPlanOutput) => void): Request<Backup.Types.CreateRestoreTestingPlanOutput, AWSError>;
|
82
82
|
/**
|
83
|
-
*
|
83
|
+
* Creates a restore testing plan. The first of two steps to create a restore testing plan. After this request is successful, finish the procedure using CreateRestoreTestingSelection.
|
84
84
|
*/
|
85
85
|
createRestoreTestingPlan(callback?: (err: AWSError, data: Backup.Types.CreateRestoreTestingPlanOutput) => void): Request<Backup.Types.CreateRestoreTestingPlanOutput, AWSError>;
|
86
86
|
/**
|
@@ -408,11 +408,11 @@ declare class Backup extends Service {
|
|
408
408
|
*/
|
409
409
|
listBackupJobs(callback?: (err: AWSError, data: Backup.Types.ListBackupJobsOutput) => void): Request<Backup.Types.ListBackupJobsOutput, AWSError>;
|
410
410
|
/**
|
411
|
-
*
|
411
|
+
* Lists the backup plan templates.
|
412
412
|
*/
|
413
413
|
listBackupPlanTemplates(params: Backup.Types.ListBackupPlanTemplatesInput, callback?: (err: AWSError, data: Backup.Types.ListBackupPlanTemplatesOutput) => void): Request<Backup.Types.ListBackupPlanTemplatesOutput, AWSError>;
|
414
414
|
/**
|
415
|
-
*
|
415
|
+
* Lists the backup plan templates.
|
416
416
|
*/
|
417
417
|
listBackupPlanTemplates(callback?: (err: AWSError, data: Backup.Types.ListBackupPlanTemplatesOutput) => void): Request<Backup.Types.ListBackupPlanTemplatesOutput, AWSError>;
|
418
418
|
/**
|
@@ -424,11 +424,11 @@ declare class Backup extends Service {
|
|
424
424
|
*/
|
425
425
|
listBackupPlanVersions(callback?: (err: AWSError, data: Backup.Types.ListBackupPlanVersionsOutput) => void): Request<Backup.Types.ListBackupPlanVersionsOutput, AWSError>;
|
426
426
|
/**
|
427
|
-
*
|
427
|
+
* Lists the active backup plans for the account.
|
428
428
|
*/
|
429
429
|
listBackupPlans(params: Backup.Types.ListBackupPlansInput, callback?: (err: AWSError, data: Backup.Types.ListBackupPlansOutput) => void): Request<Backup.Types.ListBackupPlansOutput, AWSError>;
|
430
430
|
/**
|
431
|
-
*
|
431
|
+
* Lists the active backup plans for the account.
|
432
432
|
*/
|
433
433
|
listBackupPlans(callback?: (err: AWSError, data: Backup.Types.ListBackupPlansOutput) => void): Request<Backup.Types.ListBackupPlansOutput, AWSError>;
|
434
434
|
/**
|
@@ -512,11 +512,11 @@ declare class Backup extends Service {
|
|
512
512
|
*/
|
513
513
|
listRecoveryPointsByLegalHold(callback?: (err: AWSError, data: Backup.Types.ListRecoveryPointsByLegalHoldOutput) => void): Request<Backup.Types.ListRecoveryPointsByLegalHoldOutput, AWSError>;
|
514
514
|
/**
|
515
|
-
*
|
515
|
+
* The information about the recovery points of the type specified by a resource Amazon Resource Name (ARN). For Amazon EFS and Amazon EC2, this action only lists recovery points created by Backup.
|
516
516
|
*/
|
517
517
|
listRecoveryPointsByResource(params: Backup.Types.ListRecoveryPointsByResourceInput, callback?: (err: AWSError, data: Backup.Types.ListRecoveryPointsByResourceOutput) => void): Request<Backup.Types.ListRecoveryPointsByResourceOutput, AWSError>;
|
518
518
|
/**
|
519
|
-
*
|
519
|
+
* The information about the recovery points of the type specified by a resource Amazon Resource Name (ARN). For Amazon EFS and Amazon EC2, this action only lists recovery points created by Backup.
|
520
520
|
*/
|
521
521
|
listRecoveryPointsByResource(callback?: (err: AWSError, data: Backup.Types.ListRecoveryPointsByResourceOutput) => void): Request<Backup.Types.ListRecoveryPointsByResourceOutput, AWSError>;
|
522
522
|
/**
|
@@ -576,11 +576,11 @@ declare class Backup extends Service {
|
|
576
576
|
*/
|
577
577
|
listRestoreTestingSelections(callback?: (err: AWSError, data: Backup.Types.ListRestoreTestingSelectionsOutput) => void): Request<Backup.Types.ListRestoreTestingSelectionsOutput, AWSError>;
|
578
578
|
/**
|
579
|
-
* Returns
|
579
|
+
* Returns the tags assigned to the resource, such as a target recovery point, backup plan, or backup vault.
|
580
580
|
*/
|
581
581
|
listTags(params: Backup.Types.ListTagsInput, callback?: (err: AWSError, data: Backup.Types.ListTagsOutput) => void): Request<Backup.Types.ListTagsOutput, AWSError>;
|
582
582
|
/**
|
583
|
-
* Returns
|
583
|
+
* Returns the tags assigned to the resource, such as a target recovery point, backup plan, or backup vault.
|
584
584
|
*/
|
585
585
|
listTags(callback?: (err: AWSError, data: Backup.Types.ListTagsOutput) => void): Request<Backup.Types.ListTagsOutput, AWSError>;
|
586
586
|
/**
|
@@ -592,11 +592,11 @@ declare class Backup extends Service {
|
|
592
592
|
*/
|
593
593
|
putBackupVaultAccessPolicy(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
594
594
|
/**
|
595
|
-
* Applies Backup Vault Lock to a backup vault, preventing attempts to delete any recovery point stored in or created in a backup vault. Vault Lock also prevents attempts to update the lifecycle policy that controls the retention period of any recovery point currently stored in a backup vault. If specified, Vault Lock enforces a minimum and maximum retention period for future backup and copy jobs that target a backup vault. Backup Vault Lock has been assessed by Cohasset Associates for use in environments that are subject to SEC 17a-4, CFTC, and FINRA regulations. For more information about how Backup Vault Lock relates to these regulations, see the Cohasset Associates Compliance Assessment.
|
595
|
+
* Applies Backup Vault Lock to a backup vault, preventing attempts to delete any recovery point stored in or created in a backup vault. Vault Lock also prevents attempts to update the lifecycle policy that controls the retention period of any recovery point currently stored in a backup vault. If specified, Vault Lock enforces a minimum and maximum retention period for future backup and copy jobs that target a backup vault. Backup Vault Lock has been assessed by Cohasset Associates for use in environments that are subject to SEC 17a-4, CFTC, and FINRA regulations. For more information about how Backup Vault Lock relates to these regulations, see the Cohasset Associates Compliance Assessment. For more information, see Backup Vault Lock.
|
596
596
|
*/
|
597
597
|
putBackupVaultLockConfiguration(params: Backup.Types.PutBackupVaultLockConfigurationInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
598
598
|
/**
|
599
|
-
* Applies Backup Vault Lock to a backup vault, preventing attempts to delete any recovery point stored in or created in a backup vault. Vault Lock also prevents attempts to update the lifecycle policy that controls the retention period of any recovery point currently stored in a backup vault. If specified, Vault Lock enforces a minimum and maximum retention period for future backup and copy jobs that target a backup vault. Backup Vault Lock has been assessed by Cohasset Associates for use in environments that are subject to SEC 17a-4, CFTC, and FINRA regulations. For more information about how Backup Vault Lock relates to these regulations, see the Cohasset Associates Compliance Assessment.
|
599
|
+
* Applies Backup Vault Lock to a backup vault, preventing attempts to delete any recovery point stored in or created in a backup vault. Vault Lock also prevents attempts to update the lifecycle policy that controls the retention period of any recovery point currently stored in a backup vault. If specified, Vault Lock enforces a minimum and maximum retention period for future backup and copy jobs that target a backup vault. Backup Vault Lock has been assessed by Cohasset Associates for use in environments that are subject to SEC 17a-4, CFTC, and FINRA regulations. For more information about how Backup Vault Lock relates to these regulations, see the Cohasset Associates Compliance Assessment. For more information, see Backup Vault Lock.
|
600
600
|
*/
|
601
601
|
putBackupVaultLockConfiguration(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
602
602
|
/**
|
@@ -648,43 +648,43 @@ declare class Backup extends Service {
|
|
648
648
|
*/
|
649
649
|
startRestoreJob(callback?: (err: AWSError, data: Backup.Types.StartRestoreJobOutput) => void): Request<Backup.Types.StartRestoreJobOutput, AWSError>;
|
650
650
|
/**
|
651
|
-
* Attempts to cancel a job to create a one-time backup of a resource. This action is not supported for the following services: Amazon FSx for Windows File Server, Amazon FSx for Lustre, Amazon FSx for NetApp ONTAP
|
651
|
+
* Attempts to cancel a job to create a one-time backup of a resource. This action is not supported for the following services: Amazon FSx for Windows File Server, Amazon FSx for Lustre, Amazon FSx for NetApp ONTAP, Amazon FSx for OpenZFS, Amazon DocumentDB (with MongoDB compatibility), Amazon RDS, Amazon Aurora, and Amazon Neptune.
|
652
652
|
*/
|
653
653
|
stopBackupJob(params: Backup.Types.StopBackupJobInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
654
654
|
/**
|
655
|
-
* Attempts to cancel a job to create a one-time backup of a resource. This action is not supported for the following services: Amazon FSx for Windows File Server, Amazon FSx for Lustre, Amazon FSx for NetApp ONTAP
|
655
|
+
* Attempts to cancel a job to create a one-time backup of a resource. This action is not supported for the following services: Amazon FSx for Windows File Server, Amazon FSx for Lustre, Amazon FSx for NetApp ONTAP, Amazon FSx for OpenZFS, Amazon DocumentDB (with MongoDB compatibility), Amazon RDS, Amazon Aurora, and Amazon Neptune.
|
656
656
|
*/
|
657
657
|
stopBackupJob(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
658
658
|
/**
|
659
|
-
* Assigns a set of key-value pairs to a recovery point, backup plan, or backup vault identified by an Amazon Resource Name (ARN).
|
659
|
+
* Assigns a set of key-value pairs to a recovery point, backup plan, or backup vault identified by an Amazon Resource Name (ARN). This API is supported for recovery points for resource types including Aurora, Amazon DocumentDB. Amazon EBS, Amazon FSx, Neptune, and Amazon RDS.
|
660
660
|
*/
|
661
661
|
tagResource(params: Backup.Types.TagResourceInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
662
662
|
/**
|
663
|
-
* Assigns a set of key-value pairs to a recovery point, backup plan, or backup vault identified by an Amazon Resource Name (ARN).
|
663
|
+
* Assigns a set of key-value pairs to a recovery point, backup plan, or backup vault identified by an Amazon Resource Name (ARN). This API is supported for recovery points for resource types including Aurora, Amazon DocumentDB. Amazon EBS, Amazon FSx, Neptune, and Amazon RDS.
|
664
664
|
*/
|
665
665
|
tagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
666
666
|
/**
|
667
|
-
* Removes a set of key-value pairs from a recovery point, backup plan, or backup vault identified by an Amazon Resource Name (ARN)
|
667
|
+
* Removes a set of key-value pairs from a recovery point, backup plan, or backup vault identified by an Amazon Resource Name (ARN) This API is not supported for recovery points for resource types including Aurora, Amazon DocumentDB. Amazon EBS, Amazon FSx, Neptune, and Amazon RDS.
|
668
668
|
*/
|
669
669
|
untagResource(params: Backup.Types.UntagResourceInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
670
670
|
/**
|
671
|
-
* Removes a set of key-value pairs from a recovery point, backup plan, or backup vault identified by an Amazon Resource Name (ARN)
|
671
|
+
* Removes a set of key-value pairs from a recovery point, backup plan, or backup vault identified by an Amazon Resource Name (ARN) This API is not supported for recovery points for resource types including Aurora, Amazon DocumentDB. Amazon EBS, Amazon FSx, Neptune, and Amazon RDS.
|
672
672
|
*/
|
673
673
|
untagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
674
674
|
/**
|
675
|
-
* Updates
|
675
|
+
* Updates the specified backup plan. The new version is uniquely identified by its ID.
|
676
676
|
*/
|
677
677
|
updateBackupPlan(params: Backup.Types.UpdateBackupPlanInput, callback?: (err: AWSError, data: Backup.Types.UpdateBackupPlanOutput) => void): Request<Backup.Types.UpdateBackupPlanOutput, AWSError>;
|
678
678
|
/**
|
679
|
-
* Updates
|
679
|
+
* Updates the specified backup plan. The new version is uniquely identified by its ID.
|
680
680
|
*/
|
681
681
|
updateBackupPlan(callback?: (err: AWSError, data: Backup.Types.UpdateBackupPlanOutput) => void): Request<Backup.Types.UpdateBackupPlanOutput, AWSError>;
|
682
682
|
/**
|
683
|
-
* Updates
|
683
|
+
* Updates the specified framework.
|
684
684
|
*/
|
685
685
|
updateFramework(params: Backup.Types.UpdateFrameworkInput, callback?: (err: AWSError, data: Backup.Types.UpdateFrameworkOutput) => void): Request<Backup.Types.UpdateFrameworkOutput, AWSError>;
|
686
686
|
/**
|
687
|
-
* Updates
|
687
|
+
* Updates the specified framework.
|
688
688
|
*/
|
689
689
|
updateFramework(callback?: (err: AWSError, data: Backup.Types.UpdateFrameworkOutput) => void): Request<Backup.Types.UpdateFrameworkOutput, AWSError>;
|
690
690
|
/**
|
@@ -696,11 +696,11 @@ declare class Backup extends Service {
|
|
696
696
|
*/
|
697
697
|
updateGlobalSettings(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
698
698
|
/**
|
699
|
-
* Sets the transition lifecycle of a recovery point. The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup transitions and expires backups automatically according to the lifecycle that you define. Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, the “retention” setting must be 90 days greater than the “transition to cold after days” setting. The “transition to cold after days” setting cannot be changed after a backup has been transitioned to cold.
|
699
|
+
* Sets the transition lifecycle of a recovery point. The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup transitions and expires backups automatically according to the lifecycle that you define. Resource types that can transition to cold storage are listed in the Feature availability by resource table. Backup ignores this expression for other resource types. Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, the “retention” setting must be 90 days greater than the “transition to cold after days” setting. The “transition to cold after days” setting cannot be changed after a backup has been transitioned to cold. If your lifecycle currently uses the parameters DeleteAfterDays and MoveToColdStorageAfterDays, include these parameters and their values when you call this operation. Not including them may result in your plan updating with null values. This operation does not support continuous backups.
|
700
700
|
*/
|
701
701
|
updateRecoveryPointLifecycle(params: Backup.Types.UpdateRecoveryPointLifecycleInput, callback?: (err: AWSError, data: Backup.Types.UpdateRecoveryPointLifecycleOutput) => void): Request<Backup.Types.UpdateRecoveryPointLifecycleOutput, AWSError>;
|
702
702
|
/**
|
703
|
-
* Sets the transition lifecycle of a recovery point. The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup transitions and expires backups automatically according to the lifecycle that you define. Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, the “retention” setting must be 90 days greater than the “transition to cold after days” setting. The “transition to cold after days” setting cannot be changed after a backup has been transitioned to cold.
|
703
|
+
* Sets the transition lifecycle of a recovery point. The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup transitions and expires backups automatically according to the lifecycle that you define. Resource types that can transition to cold storage are listed in the Feature availability by resource table. Backup ignores this expression for other resource types. Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, the “retention” setting must be 90 days greater than the “transition to cold after days” setting. The “transition to cold after days” setting cannot be changed after a backup has been transitioned to cold. If your lifecycle currently uses the parameters DeleteAfterDays and MoveToColdStorageAfterDays, include these parameters and their values when you call this operation. Not including them may result in your plan updating with null values. This operation does not support continuous backups.
|
704
704
|
*/
|
705
705
|
updateRecoveryPointLifecycle(callback?: (err: AWSError, data: Backup.Types.UpdateRecoveryPointLifecycleOutput) => void): Request<Backup.Types.UpdateRecoveryPointLifecycleOutput, AWSError>;
|
706
706
|
/**
|
@@ -712,11 +712,11 @@ declare class Backup extends Service {
|
|
712
712
|
*/
|
713
713
|
updateRegionSettings(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
714
714
|
/**
|
715
|
-
* Updates
|
715
|
+
* Updates the specified report plan.
|
716
716
|
*/
|
717
717
|
updateReportPlan(params: Backup.Types.UpdateReportPlanInput, callback?: (err: AWSError, data: Backup.Types.UpdateReportPlanOutput) => void): Request<Backup.Types.UpdateReportPlanOutput, AWSError>;
|
718
718
|
/**
|
719
|
-
* Updates
|
719
|
+
* Updates the specified report plan.
|
720
720
|
*/
|
721
721
|
updateReportPlan(callback?: (err: AWSError, data: Backup.Types.UpdateReportPlanOutput) => void): Request<Backup.Types.UpdateReportPlanOutput, AWSError>;
|
722
722
|
/**
|
@@ -728,11 +728,11 @@ declare class Backup extends Service {
|
|
728
728
|
*/
|
729
729
|
updateRestoreTestingPlan(callback?: (err: AWSError, data: Backup.Types.UpdateRestoreTestingPlanOutput) => void): Request<Backup.Types.UpdateRestoreTestingPlanOutput, AWSError>;
|
730
730
|
/**
|
731
|
-
* Most elements except the RestoreTestingSelectionName can be updated with this request.
|
731
|
+
* Updates the specified restore testing selection. Most elements except the RestoreTestingSelectionName can be updated with this request. You can use either protected resource ARNs or conditions, but not both.
|
732
732
|
*/
|
733
733
|
updateRestoreTestingSelection(params: Backup.Types.UpdateRestoreTestingSelectionInput, callback?: (err: AWSError, data: Backup.Types.UpdateRestoreTestingSelectionOutput) => void): Request<Backup.Types.UpdateRestoreTestingSelectionOutput, AWSError>;
|
734
734
|
/**
|
735
|
-
* Most elements except the RestoreTestingSelectionName can be updated with this request.
|
735
|
+
* Updates the specified restore testing selection. Most elements except the RestoreTestingSelectionName can be updated with this request. You can use either protected resource ARNs or conditions, but not both.
|
736
736
|
*/
|
737
737
|
updateRestoreTestingSelection(callback?: (err: AWSError, data: Backup.Types.UpdateRestoreTestingSelectionOutput) => void): Request<Backup.Types.UpdateRestoreTestingSelectionOutput, AWSError>;
|
738
738
|
}
|
@@ -761,11 +761,11 @@ declare namespace Backup {
|
|
761
761
|
*/
|
762
762
|
BackupJobId?: string;
|
763
763
|
/**
|
764
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
764
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
765
765
|
*/
|
766
766
|
BackupVaultName?: BackupVaultName;
|
767
767
|
/**
|
768
|
-
* An Amazon Resource Name (ARN) that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.
|
768
|
+
* An Amazon Resource Name (ARN) that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault.
|
769
769
|
*/
|
770
770
|
BackupVaultArn?: ARN;
|
771
771
|
/**
|
@@ -841,11 +841,11 @@ declare namespace Backup {
|
|
841
841
|
*/
|
842
842
|
IsParent?: boolean;
|
843
843
|
/**
|
844
|
-
*
|
844
|
+
* The non-unique name of the resource that belongs to the specified backup.
|
845
845
|
*/
|
846
846
|
ResourceName?: string;
|
847
847
|
/**
|
848
|
-
*
|
848
|
+
* The date on which the backup job was initiated.
|
849
849
|
*/
|
850
850
|
InitiationDate?: timestamp;
|
851
851
|
/**
|
@@ -897,7 +897,7 @@ declare namespace Backup {
|
|
897
897
|
export type BackupOptions = {[key: string]: BackupOptionValue};
|
898
898
|
export interface BackupPlan {
|
899
899
|
/**
|
900
|
-
* The display name of a backup plan. Must contain
|
900
|
+
* The display name of a backup plan. Must contain only alphanumeric or '-_.' special characters. If this is set in the console, it can contain 1 to 50 characters; if this is set through CLI or API, it can contain 1 to 200 characters.
|
901
901
|
*/
|
902
902
|
BackupPlanName: BackupPlanName;
|
903
903
|
/**
|
@@ -967,7 +967,7 @@ declare namespace Backup {
|
|
967
967
|
*/
|
968
968
|
CreatorRequestId?: string;
|
969
969
|
/**
|
970
|
-
* The last time
|
970
|
+
* The last time this backup plan was run. A date and time, in Unix format and Coordinated Universal Time (UTC). The value of LastExecutionDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
|
971
971
|
*/
|
972
972
|
LastExecutionDate?: timestamp;
|
973
973
|
/**
|
@@ -981,7 +981,7 @@ declare namespace Backup {
|
|
981
981
|
*/
|
982
982
|
RuleName: BackupRuleName;
|
983
983
|
/**
|
984
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
984
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
985
985
|
*/
|
986
986
|
TargetBackupVaultName: BackupVaultName;
|
987
987
|
/**
|
@@ -997,11 +997,11 @@ declare namespace Backup {
|
|
997
997
|
*/
|
998
998
|
CompletionWindowMinutes?: WindowMinutes;
|
999
999
|
/**
|
1000
|
-
* The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup transitions and expires backups automatically according to the lifecycle that you define. Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, the “retention” setting must be 90 days greater than the “transition to cold after days” setting. The “transition to cold after days” setting cannot be changed after a backup has been transitioned to cold. Resource types that
|
1000
|
+
* The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup transitions and expires backups automatically according to the lifecycle that you define. Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, the “retention” setting must be 90 days greater than the “transition to cold after days” setting. The “transition to cold after days” setting cannot be changed after a backup has been transitioned to cold. Resource types that can transition to cold storage are listed in the Feature availability by resource table. Backup ignores this expression for other resource types.
|
1001
1001
|
*/
|
1002
1002
|
Lifecycle?: Lifecycle;
|
1003
1003
|
/**
|
1004
|
-
*
|
1004
|
+
* The tags that are assigned to resources that are associated with this rule when restored from backup.
|
1005
1005
|
*/
|
1006
1006
|
RecoveryPointTags?: Tags;
|
1007
1007
|
/**
|
@@ -1017,7 +1017,7 @@ declare namespace Backup {
|
|
1017
1017
|
*/
|
1018
1018
|
EnableContinuousBackup?: Boolean;
|
1019
1019
|
/**
|
1020
|
-
*
|
1020
|
+
* The timezone in which the schedule expression is set. By default, ScheduleExpressions are in UTC. You can modify this to a specified timezone.
|
1021
1021
|
*/
|
1022
1022
|
ScheduleExpressionTimezone?: Timezone;
|
1023
1023
|
}
|
@@ -1027,7 +1027,7 @@ declare namespace Backup {
|
|
1027
1027
|
*/
|
1028
1028
|
RuleName: BackupRuleName;
|
1029
1029
|
/**
|
1030
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
1030
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
1031
1031
|
*/
|
1032
1032
|
TargetBackupVaultName: BackupVaultName;
|
1033
1033
|
/**
|
@@ -1043,11 +1043,11 @@ declare namespace Backup {
|
|
1043
1043
|
*/
|
1044
1044
|
CompletionWindowMinutes?: WindowMinutes;
|
1045
1045
|
/**
|
1046
|
-
* The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup will transition and expire backups automatically according to the lifecycle that you define. Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, the “retention” setting must be 90 days greater than the “transition to cold after days” setting. The “transition to cold after days” setting cannot be changed after a backup has been transitioned to cold. Resource types that
|
1046
|
+
* The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup will transition and expire backups automatically according to the lifecycle that you define. Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, the “retention” setting must be 90 days greater than the “transition to cold after days” setting. The “transition to cold after days” setting cannot be changed after a backup has been transitioned to cold storage. Resource types that can transition to cold storage are listed in the Feature availability by resource table. Backup ignores this expression for other resource types. This parameter has a maximum value of 100 years (36,500 days).
|
1047
1047
|
*/
|
1048
1048
|
Lifecycle?: Lifecycle;
|
1049
1049
|
/**
|
1050
|
-
*
|
1050
|
+
* The tags to assign to the resources.
|
1051
1051
|
*/
|
1052
1052
|
RecoveryPointTags?: Tags;
|
1053
1053
|
/**
|
@@ -1059,7 +1059,7 @@ declare namespace Backup {
|
|
1059
1059
|
*/
|
1060
1060
|
EnableContinuousBackup?: Boolean;
|
1061
1061
|
/**
|
1062
|
-
*
|
1062
|
+
* The timezone in which the schedule expression is set. By default, ScheduleExpressions are in UTC. You can modify this to a specified timezone.
|
1063
1063
|
*/
|
1064
1064
|
ScheduleExpressionTimezone?: Timezone;
|
1065
1065
|
}
|
@@ -1076,19 +1076,19 @@ declare namespace Backup {
|
|
1076
1076
|
*/
|
1077
1077
|
IamRoleArn: IAMRoleArn;
|
1078
1078
|
/**
|
1079
|
-
*
|
1079
|
+
* The Amazon Resource Names (ARNs) of the resources to assign to a backup plan. The maximum number of ARNs is 500 without wildcards, or 30 ARNs with wildcards. If you need to assign many resources to a backup plan, consider a different resource selection strategy, such as assigning all resources of a resource type or refining your resource selection using tags. If you specify multiple ARNs, the resources much match any of the ARNs (OR logic).
|
1080
1080
|
*/
|
1081
1081
|
Resources?: ResourceArns;
|
1082
1082
|
/**
|
1083
|
-
*
|
1083
|
+
* The conditions that you define to assign resources to your backup plans using tags. For example, "StringEquals": { "ConditionKey": "backup", "ConditionValue": "daily"}. ListOfTags supports only StringEquals. Condition operators are case sensitive. If you specify multiple conditions, the resources much match any of the conditions (OR logic).
|
1084
1084
|
*/
|
1085
1085
|
ListOfTags?: ListOfTags;
|
1086
1086
|
/**
|
1087
|
-
*
|
1087
|
+
* The Amazon Resource Names (ARNs) of the resources to exclude from a backup plan. The maximum number of ARNs is 500 without wildcards, or 30 ARNs with wildcards. If you need to exclude many resources from a backup plan, consider a different resource selection strategy, such as assigning only one or a few resource types or refining your resource selection using tags.
|
1088
1088
|
*/
|
1089
1089
|
NotResources?: ResourceArns;
|
1090
1090
|
/**
|
1091
|
-
*
|
1091
|
+
* The conditions that you define to assign resources to your backup plans using tags. For example, "StringEquals": { "ConditionKey": "aws:ResourceTag/backup", "ConditionValue": "daily" }. Conditions supports StringEquals, StringLike, StringNotEquals, and StringNotLike. Condition operators are case sensitive. If you specify multiple conditions, the resources much match all conditions (AND logic).
|
1092
1092
|
*/
|
1093
1093
|
Conditions?: Conditions;
|
1094
1094
|
}
|
@@ -1125,13 +1125,21 @@ declare namespace Backup {
|
|
1125
1125
|
export type BackupVaultList = BackupVaultListMember[];
|
1126
1126
|
export interface BackupVaultListMember {
|
1127
1127
|
/**
|
1128
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
1128
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
1129
1129
|
*/
|
1130
1130
|
BackupVaultName?: BackupVaultName;
|
1131
1131
|
/**
|
1132
|
-
* An Amazon Resource Name (ARN) that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.
|
1132
|
+
* An Amazon Resource Name (ARN) that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault.
|
1133
1133
|
*/
|
1134
1134
|
BackupVaultArn?: ARN;
|
1135
|
+
/**
|
1136
|
+
* The type of vault in which the described recovery point is stored.
|
1137
|
+
*/
|
1138
|
+
VaultType?: VaultType;
|
1139
|
+
/**
|
1140
|
+
* The current state of the vault.
|
1141
|
+
*/
|
1142
|
+
VaultState?: VaultState;
|
1135
1143
|
/**
|
1136
1144
|
* The date and time a resource backup is created, in Unix format and Coordinated Universal Time (UTC). The value of CreationDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
|
1137
1145
|
*/
|
@@ -1179,15 +1187,15 @@ declare namespace Backup {
|
|
1179
1187
|
}
|
1180
1188
|
export interface CancelLegalHoldInput {
|
1181
1189
|
/**
|
1182
|
-
*
|
1190
|
+
* The ID of the legal hold.
|
1183
1191
|
*/
|
1184
1192
|
LegalHoldId: string;
|
1185
1193
|
/**
|
1186
|
-
*
|
1194
|
+
* A string the describes the reason for removing the legal hold.
|
1187
1195
|
*/
|
1188
1196
|
CancelDescription: string;
|
1189
1197
|
/**
|
1190
|
-
* The integer amount in days
|
1198
|
+
* The integer amount, in days, after which to remove legal hold.
|
1191
1199
|
*/
|
1192
1200
|
RetainRecordInDays?: Long;
|
1193
1201
|
}
|
@@ -1262,14 +1270,14 @@ declare namespace Backup {
|
|
1262
1270
|
*/
|
1263
1271
|
ComplianceResourceTypes?: ResourceTypeList;
|
1264
1272
|
/**
|
1265
|
-
* The tag key-value pair applied to those Amazon Web Services resources that you want to trigger an evaluation for a rule. A maximum of one key-value pair can be provided. The tag value is optional, but it cannot be an empty string. The structure to assign a tag is: [{"Key":"string","Value":"string"}].
|
1273
|
+
* The tag key-value pair applied to those Amazon Web Services resources that you want to trigger an evaluation for a rule. A maximum of one key-value pair can be provided. The tag value is optional, but it cannot be an empty string if you are creating or editing a framework from the console (though the value can be an empty string when included in a CloudFormation template). The structure to assign a tag is: [{"Key":"string","Value":"string"}].
|
1266
1274
|
*/
|
1267
1275
|
Tags?: stringMap;
|
1268
1276
|
}
|
1269
1277
|
export interface CopyAction {
|
1270
1278
|
Lifecycle?: Lifecycle;
|
1271
1279
|
/**
|
1272
|
-
* An Amazon Resource Name (ARN) that uniquely identifies the destination backup vault for the copied backup. For example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.
|
1280
|
+
* An Amazon Resource Name (ARN) that uniquely identifies the destination backup vault for the copied backup. For example, arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault.
|
1273
1281
|
*/
|
1274
1282
|
DestinationBackupVaultArn: ARN;
|
1275
1283
|
}
|
@@ -1284,7 +1292,7 @@ declare namespace Backup {
|
|
1284
1292
|
*/
|
1285
1293
|
CopyJobId?: string;
|
1286
1294
|
/**
|
1287
|
-
* An Amazon Resource Name (ARN) that uniquely identifies a source copy vault; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.
|
1295
|
+
* An Amazon Resource Name (ARN) that uniquely identifies a source copy vault; for example, arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault.
|
1288
1296
|
*/
|
1289
1297
|
SourceBackupVaultArn?: ARN;
|
1290
1298
|
/**
|
@@ -1292,7 +1300,7 @@ declare namespace Backup {
|
|
1292
1300
|
*/
|
1293
1301
|
SourceRecoveryPointArn?: ARN;
|
1294
1302
|
/**
|
1295
|
-
* An Amazon Resource Name (ARN) that uniquely identifies a destination copy vault; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.
|
1303
|
+
* An Amazon Resource Name (ARN) that uniquely identifies a destination copy vault; for example, arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault.
|
1296
1304
|
*/
|
1297
1305
|
DestinationBackupVaultArn?: ARN;
|
1298
1306
|
/**
|
@@ -1341,11 +1349,11 @@ declare namespace Backup {
|
|
1341
1349
|
*/
|
1342
1350
|
IsParent?: boolean;
|
1343
1351
|
/**
|
1344
|
-
*
|
1352
|
+
* The identifier of a resource within a composite group, such as nested (child) recovery point belonging to a composite (parent) stack. The ID is transferred from the logical ID within a stack.
|
1345
1353
|
*/
|
1346
1354
|
CompositeMemberIdentifier?: string;
|
1347
1355
|
/**
|
1348
|
-
*
|
1356
|
+
* The number of child (nested) copy jobs.
|
1349
1357
|
*/
|
1350
1358
|
NumberOfChildJobs?: Long;
|
1351
1359
|
/**
|
@@ -1353,7 +1361,7 @@ declare namespace Backup {
|
|
1353
1361
|
*/
|
1354
1362
|
ChildJobsInState?: CopyJobChildJobsInState;
|
1355
1363
|
/**
|
1356
|
-
*
|
1364
|
+
* The non-unique name of the resource that belongs to the specified backup.
|
1357
1365
|
*/
|
1358
1366
|
ResourceName?: string;
|
1359
1367
|
/**
|
@@ -1366,7 +1374,7 @@ declare namespace Backup {
|
|
1366
1374
|
export type CopyJobStatus = "CREATED"|"RUNNING"|"ABORTING"|"ABORTED"|"COMPLETING"|"COMPLETED"|"FAILING"|"FAILED"|"PARTIAL"|"AGGREGATE_ALL"|"ANY"|string;
|
1367
1375
|
export interface CopyJobSummary {
|
1368
1376
|
/**
|
1369
|
-
*
|
1377
|
+
* The Amazon Web Services Regions within the job summary.
|
1370
1378
|
*/
|
1371
1379
|
Region?: Region;
|
1372
1380
|
/**
|
@@ -1402,11 +1410,11 @@ declare namespace Backup {
|
|
1402
1410
|
export type CopyJobsList = CopyJob[];
|
1403
1411
|
export interface CreateBackupPlanInput {
|
1404
1412
|
/**
|
1405
|
-
*
|
1413
|
+
* The body of a backup plan. Includes a BackupPlanName and one or more sets of Rules.
|
1406
1414
|
*/
|
1407
1415
|
BackupPlan: BackupPlanInput;
|
1408
1416
|
/**
|
1409
|
-
*
|
1417
|
+
* The tags to assign to the backup plan.
|
1410
1418
|
*/
|
1411
1419
|
BackupPlanTags?: Tags;
|
1412
1420
|
/**
|
@@ -1416,7 +1424,7 @@ declare namespace Backup {
|
|
1416
1424
|
}
|
1417
1425
|
export interface CreateBackupPlanOutput {
|
1418
1426
|
/**
|
1419
|
-
*
|
1427
|
+
* The ID of the backup plan.
|
1420
1428
|
*/
|
1421
1429
|
BackupPlanId?: string;
|
1422
1430
|
/**
|
@@ -1432,17 +1440,17 @@ declare namespace Backup {
|
|
1432
1440
|
*/
|
1433
1441
|
VersionId?: string;
|
1434
1442
|
/**
|
1435
|
-
*
|
1443
|
+
* The settings for a resource type. This option is only available for Windows Volume Shadow Copy Service (VSS) backup jobs.
|
1436
1444
|
*/
|
1437
1445
|
AdvancedBackupSettings?: AdvancedBackupSettings;
|
1438
1446
|
}
|
1439
1447
|
export interface CreateBackupSelectionInput {
|
1440
1448
|
/**
|
1441
|
-
*
|
1449
|
+
* The ID of the backup plan.
|
1442
1450
|
*/
|
1443
1451
|
BackupPlanId: string;
|
1444
1452
|
/**
|
1445
|
-
*
|
1453
|
+
* The body of a request to assign a set of resources to a backup plan.
|
1446
1454
|
*/
|
1447
1455
|
BackupSelection: BackupSelection;
|
1448
1456
|
/**
|
@@ -1456,7 +1464,7 @@ declare namespace Backup {
|
|
1456
1464
|
*/
|
1457
1465
|
SelectionId?: string;
|
1458
1466
|
/**
|
1459
|
-
*
|
1467
|
+
* The ID of the backup plan.
|
1460
1468
|
*/
|
1461
1469
|
BackupPlanId?: string;
|
1462
1470
|
/**
|
@@ -1470,7 +1478,7 @@ declare namespace Backup {
|
|
1470
1478
|
*/
|
1471
1479
|
BackupVaultName: BackupVaultName;
|
1472
1480
|
/**
|
1473
|
-
*
|
1481
|
+
* The tags to assign to the backup vault.
|
1474
1482
|
*/
|
1475
1483
|
BackupVaultTags?: Tags;
|
1476
1484
|
/**
|
@@ -1488,7 +1496,7 @@ declare namespace Backup {
|
|
1488
1496
|
*/
|
1489
1497
|
BackupVaultName?: BackupVaultName;
|
1490
1498
|
/**
|
1491
|
-
* An Amazon Resource Name (ARN) that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.
|
1499
|
+
* An Amazon Resource Name (ARN) that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault.
|
1492
1500
|
*/
|
1493
1501
|
BackupVaultArn?: ARN;
|
1494
1502
|
/**
|
@@ -1506,7 +1514,7 @@ declare namespace Backup {
|
|
1506
1514
|
*/
|
1507
1515
|
FrameworkDescription?: FrameworkDescription;
|
1508
1516
|
/**
|
1509
|
-
*
|
1517
|
+
* The controls that make up the framework. Each control in the list has a name, input parameters, and scope.
|
1510
1518
|
*/
|
1511
1519
|
FrameworkControls: FrameworkControls;
|
1512
1520
|
/**
|
@@ -1514,7 +1522,7 @@ declare namespace Backup {
|
|
1514
1522
|
*/
|
1515
1523
|
IdempotencyToken?: string;
|
1516
1524
|
/**
|
1517
|
-
*
|
1525
|
+
* The tags to assign to the framework.
|
1518
1526
|
*/
|
1519
1527
|
FrameworkTags?: stringMap;
|
1520
1528
|
}
|
@@ -1530,11 +1538,11 @@ declare namespace Backup {
|
|
1530
1538
|
}
|
1531
1539
|
export interface CreateLegalHoldInput {
|
1532
1540
|
/**
|
1533
|
-
*
|
1541
|
+
* The title of the legal hold.
|
1534
1542
|
*/
|
1535
1543
|
Title: string;
|
1536
1544
|
/**
|
1537
|
-
*
|
1545
|
+
* The description of the legal hold.
|
1538
1546
|
*/
|
1539
1547
|
Description: string;
|
1540
1548
|
/**
|
@@ -1542,7 +1550,7 @@ declare namespace Backup {
|
|
1542
1550
|
*/
|
1543
1551
|
IdempotencyToken?: string;
|
1544
1552
|
/**
|
1545
|
-
*
|
1553
|
+
* The criteria to assign a set of resources, such as resource types or backup vaults.
|
1546
1554
|
*/
|
1547
1555
|
RecoveryPointSelection?: RecoveryPointSelection;
|
1548
1556
|
/**
|
@@ -1552,63 +1560,63 @@ declare namespace Backup {
|
|
1552
1560
|
}
|
1553
1561
|
export interface CreateLegalHoldOutput {
|
1554
1562
|
/**
|
1555
|
-
*
|
1563
|
+
* The title of the legal hold.
|
1556
1564
|
*/
|
1557
1565
|
Title?: string;
|
1558
1566
|
/**
|
1559
|
-
*
|
1567
|
+
* The status of the legal hold.
|
1560
1568
|
*/
|
1561
1569
|
Status?: LegalHoldStatus;
|
1562
1570
|
/**
|
1563
|
-
*
|
1571
|
+
* The description of the legal hold.
|
1564
1572
|
*/
|
1565
1573
|
Description?: string;
|
1566
1574
|
/**
|
1567
|
-
*
|
1575
|
+
* The ID of the legal hold.
|
1568
1576
|
*/
|
1569
1577
|
LegalHoldId?: string;
|
1570
1578
|
/**
|
1571
|
-
*
|
1579
|
+
* The Amazon Resource Name (ARN) of the legal hold.
|
1572
1580
|
*/
|
1573
1581
|
LegalHoldArn?: ARN;
|
1574
1582
|
/**
|
1575
|
-
*
|
1583
|
+
* The time when the legal hold was created.
|
1576
1584
|
*/
|
1577
1585
|
CreationDate?: timestamp;
|
1578
1586
|
/**
|
1579
|
-
*
|
1587
|
+
* The criteria to assign to a set of resources, such as resource types or backup vaults.
|
1580
1588
|
*/
|
1581
1589
|
RecoveryPointSelection?: RecoveryPointSelection;
|
1582
1590
|
}
|
1583
1591
|
export interface CreateLogicallyAirGappedBackupVaultInput {
|
1584
1592
|
/**
|
1585
|
-
*
|
1593
|
+
* The name of a logical container where backups are stored. Logically air-gapped backup vaults are identified by names that are unique to the account used to create them and the Region where they are created.
|
1586
1594
|
*/
|
1587
1595
|
BackupVaultName: BackupVaultName;
|
1588
1596
|
/**
|
1589
|
-
*
|
1597
|
+
* The tags to assign to the vault.
|
1590
1598
|
*/
|
1591
1599
|
BackupVaultTags?: Tags;
|
1592
1600
|
/**
|
1593
|
-
*
|
1601
|
+
* The ID of the creation request. This parameter is optional. If used, this parameter must contain 1 to 50 alphanumeric or '-_.' characters.
|
1594
1602
|
*/
|
1595
1603
|
CreatorRequestId?: string;
|
1596
1604
|
/**
|
1597
|
-
* This setting specifies the minimum retention period that the vault retains its recovery points.
|
1605
|
+
* This setting specifies the minimum retention period that the vault retains its recovery points. The minimum value accepted is 7 days.
|
1598
1606
|
*/
|
1599
1607
|
MinRetentionDays: Long;
|
1600
1608
|
/**
|
1601
|
-
*
|
1609
|
+
* The maximum retention period that the vault retains its recovery points.
|
1602
1610
|
*/
|
1603
1611
|
MaxRetentionDays: Long;
|
1604
1612
|
}
|
1605
1613
|
export interface CreateLogicallyAirGappedBackupVaultOutput {
|
1606
1614
|
/**
|
1607
|
-
* The name of a logical container where backups are stored. Logically air-gapped backup vaults are identified by names that are unique to the account used to create them and the Region where they are created.
|
1615
|
+
* The name of a logical container where backups are stored. Logically air-gapped backup vaults are identified by names that are unique to the account used to create them and the Region where they are created.
|
1608
1616
|
*/
|
1609
1617
|
BackupVaultName?: BackupVaultName;
|
1610
1618
|
/**
|
1611
|
-
*
|
1619
|
+
* The ARN (Amazon Resource Name) of the vault.
|
1612
1620
|
*/
|
1613
1621
|
BackupVaultArn?: ARN;
|
1614
1622
|
/**
|
@@ -1616,7 +1624,7 @@ declare namespace Backup {
|
|
1616
1624
|
*/
|
1617
1625
|
CreationDate?: timestamp;
|
1618
1626
|
/**
|
1619
|
-
*
|
1627
|
+
* The current state of the vault.
|
1620
1628
|
*/
|
1621
1629
|
VaultState?: VaultState;
|
1622
1630
|
}
|
@@ -1638,7 +1646,7 @@ declare namespace Backup {
|
|
1638
1646
|
*/
|
1639
1647
|
ReportSetting: ReportSetting;
|
1640
1648
|
/**
|
1641
|
-
*
|
1649
|
+
* The tags to assign to the report plan.
|
1642
1650
|
*/
|
1643
1651
|
ReportPlanTags?: stringMap;
|
1644
1652
|
/**
|
@@ -1670,7 +1678,7 @@ declare namespace Backup {
|
|
1670
1678
|
*/
|
1671
1679
|
RestoreTestingPlan: RestoreTestingPlanForCreate;
|
1672
1680
|
/**
|
1673
|
-
*
|
1681
|
+
* The tags to assign to the restore testing plan.
|
1674
1682
|
*/
|
1675
1683
|
Tags?: SensitiveStringMap;
|
1676
1684
|
}
|
@@ -1704,19 +1712,19 @@ declare namespace Backup {
|
|
1704
1712
|
}
|
1705
1713
|
export interface CreateRestoreTestingSelectionOutput {
|
1706
1714
|
/**
|
1707
|
-
*
|
1715
|
+
* The time that the resource testing selection was created.
|
1708
1716
|
*/
|
1709
1717
|
CreationTime: Timestamp;
|
1710
1718
|
/**
|
1711
|
-
*
|
1719
|
+
* The ARN of the restore testing plan with which the restore testing selection is associated.
|
1712
1720
|
*/
|
1713
1721
|
RestoreTestingPlanArn: String;
|
1714
1722
|
/**
|
1715
|
-
*
|
1723
|
+
* The name of the restore testing plan. The name cannot be changed after creation. The name consists of only alphanumeric characters and underscores. Maximum length is 50.
|
1716
1724
|
*/
|
1717
1725
|
RestoreTestingPlanName: String;
|
1718
1726
|
/**
|
1719
|
-
*
|
1727
|
+
* The name of the restore testing selection for the related restore testing plan.
|
1720
1728
|
*/
|
1721
1729
|
RestoreTestingSelectionName: String;
|
1722
1730
|
}
|
@@ -1773,7 +1781,7 @@ declare namespace Backup {
|
|
1773
1781
|
}
|
1774
1782
|
export interface DeleteBackupVaultInput {
|
1775
1783
|
/**
|
1776
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
1784
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
1777
1785
|
*/
|
1778
1786
|
BackupVaultName: string;
|
1779
1787
|
}
|
@@ -1785,7 +1793,7 @@ declare namespace Backup {
|
|
1785
1793
|
}
|
1786
1794
|
export interface DeleteBackupVaultNotificationsInput {
|
1787
1795
|
/**
|
1788
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Region where they are created.
|
1796
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Region where they are created.
|
1789
1797
|
*/
|
1790
1798
|
BackupVaultName: BackupVaultName;
|
1791
1799
|
}
|
@@ -1797,7 +1805,7 @@ declare namespace Backup {
|
|
1797
1805
|
}
|
1798
1806
|
export interface DeleteRecoveryPointInput {
|
1799
1807
|
/**
|
1800
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
1808
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
1801
1809
|
*/
|
1802
1810
|
BackupVaultName: BackupVaultName;
|
1803
1811
|
/**
|
@@ -1843,11 +1851,11 @@ declare namespace Backup {
|
|
1843
1851
|
*/
|
1844
1852
|
BackupJobId?: string;
|
1845
1853
|
/**
|
1846
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
1854
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
1847
1855
|
*/
|
1848
1856
|
BackupVaultName?: BackupVaultName;
|
1849
1857
|
/**
|
1850
|
-
* An Amazon Resource Name (ARN) that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.
|
1858
|
+
* An Amazon Resource Name (ARN) that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault.
|
1851
1859
|
*/
|
1852
1860
|
BackupVaultArn?: ARN;
|
1853
1861
|
/**
|
@@ -1931,41 +1939,45 @@ declare namespace Backup {
|
|
1931
1939
|
*/
|
1932
1940
|
ChildJobsInState?: BackupJobChildJobsInState;
|
1933
1941
|
/**
|
1934
|
-
*
|
1942
|
+
* The non-unique name of the resource that belongs to the specified backup.
|
1935
1943
|
*/
|
1936
1944
|
ResourceName?: string;
|
1937
1945
|
/**
|
1938
|
-
*
|
1946
|
+
* The date a backup job was initiated.
|
1939
1947
|
*/
|
1940
1948
|
InitiationDate?: timestamp;
|
1941
1949
|
/**
|
1942
|
-
*
|
1950
|
+
* The job count for the specified message category. Example strings may include AccessDenied, SUCCESS, AGGREGATE_ALL, and INVALIDPARAMETERS. View Monitoring for a list of accepted MessageCategory strings.
|
1943
1951
|
*/
|
1944
1952
|
MessageCategory?: string;
|
1945
1953
|
}
|
1946
1954
|
export interface DescribeBackupVaultInput {
|
1947
1955
|
/**
|
1948
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
1956
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
1949
1957
|
*/
|
1950
1958
|
BackupVaultName: string;
|
1951
1959
|
/**
|
1952
|
-
*
|
1960
|
+
* The account ID of the specified backup vault.
|
1953
1961
|
*/
|
1954
1962
|
BackupVaultAccountId?: string;
|
1955
1963
|
}
|
1956
1964
|
export interface DescribeBackupVaultOutput {
|
1957
1965
|
/**
|
1958
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Region where they are created.
|
1966
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Region where they are created.
|
1959
1967
|
*/
|
1960
1968
|
BackupVaultName?: string;
|
1961
1969
|
/**
|
1962
|
-
* An Amazon Resource Name (ARN) that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.
|
1970
|
+
* An Amazon Resource Name (ARN) that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault.
|
1963
1971
|
*/
|
1964
1972
|
BackupVaultArn?: ARN;
|
1965
1973
|
/**
|
1966
|
-
*
|
1974
|
+
* The type of vault described.
|
1967
1975
|
*/
|
1968
1976
|
VaultType?: VaultType;
|
1977
|
+
/**
|
1978
|
+
* The current state of the vault.->
|
1979
|
+
*/
|
1980
|
+
VaultState?: VaultState;
|
1969
1981
|
/**
|
1970
1982
|
* The server-side encryption key that is used to protect your backups; for example, arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab.
|
1971
1983
|
*/
|
@@ -1987,7 +1999,7 @@ declare namespace Backup {
|
|
1987
1999
|
*/
|
1988
2000
|
Locked?: Boolean;
|
1989
2001
|
/**
|
1990
|
-
* The Backup Vault Lock setting that specifies the minimum retention period that the vault retains its recovery points. If this parameter is not specified, Vault Lock
|
2002
|
+
* The Backup Vault Lock setting that specifies the minimum retention period that the vault retains its recovery points. If this parameter is not specified, Vault Lock will not enforce a minimum retention period. If specified, any backup or copy job to the vault must have a lifecycle policy with a retention period equal to or longer than the minimum retention period. If the job's retention period is shorter than that minimum retention period, then the vault fails the backup or copy job, and you should either modify your lifecycle settings or use a different vault. Recovery points already stored in the vault prior to Vault Lock are not affected.
|
1991
2003
|
*/
|
1992
2004
|
MinRetentionDays?: Long;
|
1993
2005
|
/**
|
@@ -2031,7 +2043,7 @@ declare namespace Backup {
|
|
2031
2043
|
*/
|
2032
2044
|
FrameworkDescription?: FrameworkDescription;
|
2033
2045
|
/**
|
2034
|
-
*
|
2046
|
+
* The controls that make up the framework. Each control in the list has a name, input parameters, and scope.
|
2035
2047
|
*/
|
2036
2048
|
FrameworkControls?: FrameworkControls;
|
2037
2049
|
/**
|
@@ -2083,33 +2095,33 @@ declare namespace Backup {
|
|
2083
2095
|
*/
|
2084
2096
|
LastBackupTime?: timestamp;
|
2085
2097
|
/**
|
2086
|
-
*
|
2098
|
+
* The name of the resource that belongs to the specified backup.
|
2087
2099
|
*/
|
2088
2100
|
ResourceName?: string;
|
2089
2101
|
/**
|
2090
|
-
*
|
2102
|
+
* The ARN (Amazon Resource Name) of the backup vault that contains the most recent backup recovery point.
|
2091
2103
|
*/
|
2092
2104
|
LastBackupVaultArn?: ARN;
|
2093
2105
|
/**
|
2094
|
-
*
|
2106
|
+
* The ARN (Amazon Resource Name) of the most recent recovery point.
|
2095
2107
|
*/
|
2096
2108
|
LastRecoveryPointArn?: ARN;
|
2097
2109
|
/**
|
2098
|
-
*
|
2110
|
+
* The time, in minutes, that the most recent restore job took to complete.
|
2099
2111
|
*/
|
2100
2112
|
LatestRestoreExecutionTimeMinutes?: Long;
|
2101
2113
|
/**
|
2102
|
-
*
|
2114
|
+
* The creation date of the most recent restore job.
|
2103
2115
|
*/
|
2104
2116
|
LatestRestoreJobCreationDate?: timestamp;
|
2105
2117
|
/**
|
2106
|
-
*
|
2118
|
+
* The date the most recent recovery point was created.
|
2107
2119
|
*/
|
2108
2120
|
LatestRestoreRecoveryPointCreationDate?: timestamp;
|
2109
2121
|
}
|
2110
2122
|
export interface DescribeRecoveryPointInput {
|
2111
2123
|
/**
|
2112
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
2124
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
2113
2125
|
*/
|
2114
2126
|
BackupVaultName: BackupVaultName;
|
2115
2127
|
/**
|
@@ -2117,7 +2129,7 @@ declare namespace Backup {
|
|
2117
2129
|
*/
|
2118
2130
|
RecoveryPointArn: ARN;
|
2119
2131
|
/**
|
2120
|
-
*
|
2132
|
+
* The account ID of the specified backup vault.
|
2121
2133
|
*/
|
2122
2134
|
BackupVaultAccountId?: AccountId;
|
2123
2135
|
}
|
@@ -2127,15 +2139,15 @@ declare namespace Backup {
|
|
2127
2139
|
*/
|
2128
2140
|
RecoveryPointArn?: ARN;
|
2129
2141
|
/**
|
2130
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Region where they are created.
|
2142
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Region where they are created.
|
2131
2143
|
*/
|
2132
2144
|
BackupVaultName?: BackupVaultName;
|
2133
2145
|
/**
|
2134
|
-
* An ARN that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.
|
2146
|
+
* An ARN that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault.
|
2135
2147
|
*/
|
2136
2148
|
BackupVaultArn?: ARN;
|
2137
2149
|
/**
|
2138
|
-
* An Amazon Resource Name (ARN) that uniquely identifies the source vault where the resource was originally backed up in; for example, arn:aws:backup:us-east-1:123456789012:vault:
|
2150
|
+
* An Amazon Resource Name (ARN) that uniquely identifies the source vault where the resource was originally backed up in; for example, arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault. If the recovery is restored to the same Amazon Web Services account or Region, this value will be null.
|
2139
2151
|
*/
|
2140
2152
|
SourceBackupVaultArn?: ARN;
|
2141
2153
|
/**
|
@@ -2155,7 +2167,7 @@ declare namespace Backup {
|
|
2155
2167
|
*/
|
2156
2168
|
IamRoleArn?: IAMRoleArn;
|
2157
2169
|
/**
|
2158
|
-
* A status code specifying the state of the recovery point. PARTIAL status indicates Backup could not create the recovery point before the backup window closed. To increase your backup plan window using the API, see UpdateBackupPlan. You can also increase your backup plan window using the Console by choosing and editing your backup plan. EXPIRED status indicates that the recovery point has exceeded its retention period, but Backup lacks permission or is otherwise unable to delete it. To manually delete these recovery points, see Step 3: Delete the recovery points in the Clean up resources section of Getting started. STOPPED status occurs on a continuous backup where a user has taken some action that causes the continuous backup to be disabled. This can be caused by the removal of permissions, turning off versioning, turning off events being sent to EventBridge, or disabling the EventBridge rules that are put in place by Backup. To resolve STOPPED status, ensure that all requested permissions are in place and that versioning is enabled on the S3 bucket. Once these conditions are met, the next instance of a backup rule running will result in a new continuous recovery point being created. The recovery points with STOPPED status do not need to be deleted. For SAP HANA on Amazon EC2 STOPPED status occurs due to user action, application misconfiguration, or backup failure. To ensure that future continuous backups succeed, refer to the recovery point status and check SAP HANA for details.
|
2170
|
+
* A status code specifying the state of the recovery point. PARTIAL status indicates Backup could not create the recovery point before the backup window closed. To increase your backup plan window using the API, see UpdateBackupPlan. You can also increase your backup plan window using the Console by choosing and editing your backup plan. EXPIRED status indicates that the recovery point has exceeded its retention period, but Backup lacks permission or is otherwise unable to delete it. To manually delete these recovery points, see Step 3: Delete the recovery points in the Clean up resources section of Getting started. STOPPED status occurs on a continuous backup where a user has taken some action that causes the continuous backup to be disabled. This can be caused by the removal of permissions, turning off versioning, turning off events being sent to EventBridge, or disabling the EventBridge rules that are put in place by Backup. For recovery points of Amazon S3, Amazon RDS, and Amazon Aurora resources, this status occurs when the retention period of a continuous backup rule is changed. To resolve STOPPED status, ensure that all requested permissions are in place and that versioning is enabled on the S3 bucket. Once these conditions are met, the next instance of a backup rule running will result in a new continuous recovery point being created. The recovery points with STOPPED status do not need to be deleted. For SAP HANA on Amazon EC2 STOPPED status occurs due to user action, application misconfiguration, or backup failure. To ensure that future continuous backups succeed, refer to the recovery point status and check SAP HANA for details.
|
2159
2171
|
*/
|
2160
2172
|
Status?: RecoveryPointStatus;
|
2161
2173
|
/**
|
@@ -2179,7 +2191,7 @@ declare namespace Backup {
|
|
2179
2191
|
*/
|
2180
2192
|
CalculatedLifecycle?: CalculatedLifecycle;
|
2181
2193
|
/**
|
2182
|
-
* The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup transitions and expires backups automatically according to the lifecycle that you define. Backups that are transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, the “retention” setting must be 90 days greater than the “transition to cold after days” setting. The “transition to cold after days” setting cannot be changed after a backup has been transitioned to cold. Resource types that
|
2194
|
+
* The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup transitions and expires backups automatically according to the lifecycle that you define. Backups that are transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, the “retention” setting must be 90 days greater than the “transition to cold after days” setting. The “transition to cold after days” setting cannot be changed after a backup has been transitioned to cold. Resource types that can transition to cold storage are listed in the Feature availability by resource table. Backup ignores this expression for other resource types.
|
2183
2195
|
*/
|
2184
2196
|
Lifecycle?: Lifecycle;
|
2185
2197
|
/**
|
@@ -2203,7 +2215,7 @@ declare namespace Backup {
|
|
2203
2215
|
*/
|
2204
2216
|
ParentRecoveryPointArn?: ARN;
|
2205
2217
|
/**
|
2206
|
-
*
|
2218
|
+
* The identifier of a resource within a composite group, such as nested (child) recovery point belonging to a composite (parent) stack. The ID is transferred from the logical ID within a stack.
|
2207
2219
|
*/
|
2208
2220
|
CompositeMemberIdentifier?: string;
|
2209
2221
|
/**
|
@@ -2211,11 +2223,11 @@ declare namespace Backup {
|
|
2211
2223
|
*/
|
2212
2224
|
IsParent?: boolean;
|
2213
2225
|
/**
|
2214
|
-
*
|
2226
|
+
* The name of the resource that belongs to the specified backup.
|
2215
2227
|
*/
|
2216
2228
|
ResourceName?: string;
|
2217
2229
|
/**
|
2218
|
-
*
|
2230
|
+
* The type of vault in which the described recovery point is stored.
|
2219
2231
|
*/
|
2220
2232
|
VaultType?: VaultType;
|
2221
2233
|
}
|
@@ -2223,11 +2235,11 @@ declare namespace Backup {
|
|
2223
2235
|
}
|
2224
2236
|
export interface DescribeRegionSettingsOutput {
|
2225
2237
|
/**
|
2226
|
-
*
|
2238
|
+
* The services along with the opt-in preferences in the Region.
|
2227
2239
|
*/
|
2228
2240
|
ResourceTypeOptInPreference?: ResourceTypeOptInPreference;
|
2229
2241
|
/**
|
2230
|
-
* Returns whether Backup fully manages the backups for a resource type. For the benefits of full Backup management, see
|
2242
|
+
* Returns whether Backup fully manages the backups for a resource type. For the benefits of full Backup management, see Full Backup management. For a list of resource types and whether each supports full Backup management, see the Feature availability by resource table. If "DynamoDB":false, you can enable full Backup management for DynamoDB backup by enabling Backup's advanced DynamoDB backup features.
|
2231
2243
|
*/
|
2232
2244
|
ResourceTypeManagementPreference?: ResourceTypeManagementPreference;
|
2233
2245
|
}
|
@@ -2239,7 +2251,7 @@ declare namespace Backup {
|
|
2239
2251
|
}
|
2240
2252
|
export interface DescribeReportJobOutput {
|
2241
2253
|
/**
|
2242
|
-
*
|
2254
|
+
* The information about a report job, including its completion and creation times, report destination, unique report job ID, Amazon Resource Name (ARN), report template, status, and status message.
|
2243
2255
|
*/
|
2244
2256
|
ReportJob?: ReportJob;
|
2245
2257
|
}
|
@@ -2307,7 +2319,7 @@ declare namespace Backup {
|
|
2307
2319
|
*/
|
2308
2320
|
ExpectedCompletionTimeMinutes?: Long;
|
2309
2321
|
/**
|
2310
|
-
*
|
2322
|
+
* The Amazon Resource Name (ARN) of the resource that was created by the restore job. The format of the ARN depends on the resource type of the backed-up resource.
|
2311
2323
|
*/
|
2312
2324
|
CreatedResourceArn?: ARN;
|
2313
2325
|
/**
|
@@ -2315,7 +2327,7 @@ declare namespace Backup {
|
|
2315
2327
|
*/
|
2316
2328
|
ResourceType?: ResourceType;
|
2317
2329
|
/**
|
2318
|
-
*
|
2330
|
+
* The creation date of the recovery point made by the specifed restore job.
|
2319
2331
|
*/
|
2320
2332
|
RecoveryPointCreationDate?: timestamp;
|
2321
2333
|
/**
|
@@ -2323,15 +2335,15 @@ declare namespace Backup {
|
|
2323
2335
|
*/
|
2324
2336
|
CreatedBy?: RestoreJobCreator;
|
2325
2337
|
/**
|
2326
|
-
*
|
2338
|
+
* The status of validation run on the indicated restore job.
|
2327
2339
|
*/
|
2328
2340
|
ValidationStatus?: RestoreValidationStatus;
|
2329
2341
|
/**
|
2330
|
-
*
|
2342
|
+
* The status message.
|
2331
2343
|
*/
|
2332
2344
|
ValidationStatusMessage?: string;
|
2333
2345
|
/**
|
2334
|
-
*
|
2346
|
+
* The status of the data generated by the restore test.
|
2335
2347
|
*/
|
2336
2348
|
DeletionStatus?: RestoreDeletionStatus;
|
2337
2349
|
/**
|
@@ -2341,11 +2353,11 @@ declare namespace Backup {
|
|
2341
2353
|
}
|
2342
2354
|
export interface DisassociateRecoveryPointFromParentInput {
|
2343
2355
|
/**
|
2344
|
-
*
|
2356
|
+
* The name of a logical container where the child (nested) recovery point is stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
2345
2357
|
*/
|
2346
2358
|
BackupVaultName: BackupVaultName;
|
2347
2359
|
/**
|
2348
|
-
*
|
2360
|
+
* The Amazon Resource Name (ARN) that uniquely identifies the child (nested) recovery point; for example, arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45.
|
2349
2361
|
*/
|
2350
2362
|
RecoveryPointArn: ARN;
|
2351
2363
|
}
|
@@ -2404,7 +2416,7 @@ declare namespace Backup {
|
|
2404
2416
|
*/
|
2405
2417
|
ControlName: ControlName;
|
2406
2418
|
/**
|
2407
|
-
*
|
2419
|
+
* The name/value pairs.
|
2408
2420
|
*/
|
2409
2421
|
ControlInputParameters?: ControlInputParameters;
|
2410
2422
|
/**
|
@@ -2480,7 +2492,7 @@ declare namespace Backup {
|
|
2480
2492
|
*/
|
2481
2493
|
DeletionDate?: timestamp;
|
2482
2494
|
/**
|
2483
|
-
* The last time
|
2495
|
+
* The last time this backup plan was run. A date and time, in Unix format and Coordinated Universal Time (UTC). The value of LastExecutionDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
|
2484
2496
|
*/
|
2485
2497
|
LastExecutionDate?: timestamp;
|
2486
2498
|
/**
|
@@ -2522,17 +2534,17 @@ declare namespace Backup {
|
|
2522
2534
|
}
|
2523
2535
|
export interface GetBackupVaultAccessPolicyInput {
|
2524
2536
|
/**
|
2525
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
2537
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
2526
2538
|
*/
|
2527
2539
|
BackupVaultName: BackupVaultName;
|
2528
2540
|
}
|
2529
2541
|
export interface GetBackupVaultAccessPolicyOutput {
|
2530
2542
|
/**
|
2531
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Region where they are created.
|
2543
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Region where they are created.
|
2532
2544
|
*/
|
2533
2545
|
BackupVaultName?: BackupVaultName;
|
2534
2546
|
/**
|
2535
|
-
* An Amazon Resource Name (ARN) that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.
|
2547
|
+
* An Amazon Resource Name (ARN) that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault.
|
2536
2548
|
*/
|
2537
2549
|
BackupVaultArn?: ARN;
|
2538
2550
|
/**
|
@@ -2542,17 +2554,17 @@ declare namespace Backup {
|
|
2542
2554
|
}
|
2543
2555
|
export interface GetBackupVaultNotificationsInput {
|
2544
2556
|
/**
|
2545
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
2557
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
2546
2558
|
*/
|
2547
2559
|
BackupVaultName: BackupVaultName;
|
2548
2560
|
}
|
2549
2561
|
export interface GetBackupVaultNotificationsOutput {
|
2550
2562
|
/**
|
2551
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Region where they are created.
|
2563
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Region where they are created.
|
2552
2564
|
*/
|
2553
2565
|
BackupVaultName?: BackupVaultName;
|
2554
2566
|
/**
|
2555
|
-
* An Amazon Resource Name (ARN) that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.
|
2567
|
+
* An Amazon Resource Name (ARN) that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault.
|
2556
2568
|
*/
|
2557
2569
|
BackupVaultArn?: ARN;
|
2558
2570
|
/**
|
@@ -2566,55 +2578,55 @@ declare namespace Backup {
|
|
2566
2578
|
}
|
2567
2579
|
export interface GetLegalHoldInput {
|
2568
2580
|
/**
|
2569
|
-
*
|
2581
|
+
* The ID of the legal hold.
|
2570
2582
|
*/
|
2571
2583
|
LegalHoldId: string;
|
2572
2584
|
}
|
2573
2585
|
export interface GetLegalHoldOutput {
|
2574
2586
|
/**
|
2575
|
-
*
|
2587
|
+
* The title of the legal hold.
|
2576
2588
|
*/
|
2577
2589
|
Title?: string;
|
2578
2590
|
/**
|
2579
|
-
*
|
2591
|
+
* The status of the legal hold.
|
2580
2592
|
*/
|
2581
2593
|
Status?: LegalHoldStatus;
|
2582
2594
|
/**
|
2583
|
-
*
|
2595
|
+
* The description of the legal hold.
|
2584
2596
|
*/
|
2585
2597
|
Description?: string;
|
2586
2598
|
/**
|
2587
|
-
*
|
2599
|
+
* The reason for removing the legal hold.
|
2588
2600
|
*/
|
2589
2601
|
CancelDescription?: string;
|
2590
2602
|
/**
|
2591
|
-
*
|
2603
|
+
* The ID of the legal hold.
|
2592
2604
|
*/
|
2593
2605
|
LegalHoldId?: string;
|
2594
2606
|
/**
|
2595
|
-
*
|
2607
|
+
* The framework ARN for the specified legal hold. The format of the ARN depends on the resource type.
|
2596
2608
|
*/
|
2597
2609
|
LegalHoldArn?: ARN;
|
2598
2610
|
/**
|
2599
|
-
*
|
2611
|
+
* The time when the legal hold was created.
|
2600
2612
|
*/
|
2601
2613
|
CreationDate?: timestamp;
|
2602
2614
|
/**
|
2603
|
-
*
|
2615
|
+
* The time when the legal hold was cancelled.
|
2604
2616
|
*/
|
2605
2617
|
CancellationDate?: timestamp;
|
2606
2618
|
/**
|
2607
|
-
*
|
2619
|
+
* The date and time until which the legal hold record is retained.
|
2608
2620
|
*/
|
2609
2621
|
RetainRecordUntil?: timestamp;
|
2610
2622
|
/**
|
2611
|
-
*
|
2623
|
+
* The criteria to assign a set of resources, such as resource types or backup vaults.
|
2612
2624
|
*/
|
2613
2625
|
RecoveryPointSelection?: RecoveryPointSelection;
|
2614
2626
|
}
|
2615
2627
|
export interface GetRecoveryPointRestoreMetadataInput {
|
2616
2628
|
/**
|
2617
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
2629
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
2618
2630
|
*/
|
2619
2631
|
BackupVaultName: BackupVaultName;
|
2620
2632
|
/**
|
@@ -2622,13 +2634,13 @@ declare namespace Backup {
|
|
2622
2634
|
*/
|
2623
2635
|
RecoveryPointArn: ARN;
|
2624
2636
|
/**
|
2625
|
-
*
|
2637
|
+
* The account ID of the specified backup vault.
|
2626
2638
|
*/
|
2627
2639
|
BackupVaultAccountId?: AccountId;
|
2628
2640
|
}
|
2629
2641
|
export interface GetRecoveryPointRestoreMetadataOutput {
|
2630
2642
|
/**
|
2631
|
-
* An ARN that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.
|
2643
|
+
* An ARN that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault.
|
2632
2644
|
*/
|
2633
2645
|
BackupVaultArn?: ARN;
|
2634
2646
|
/**
|
@@ -2640,7 +2652,7 @@ declare namespace Backup {
|
|
2640
2652
|
*/
|
2641
2653
|
RestoreMetadata?: Metadata;
|
2642
2654
|
/**
|
2643
|
-
*
|
2655
|
+
* The resource type of the recovery point.
|
2644
2656
|
*/
|
2645
2657
|
ResourceType?: ResourceType;
|
2646
2658
|
}
|
@@ -2662,7 +2674,7 @@ declare namespace Backup {
|
|
2662
2674
|
}
|
2663
2675
|
export interface GetRestoreTestingInferredMetadataInput {
|
2664
2676
|
/**
|
2665
|
-
*
|
2677
|
+
* The account ID of the specified backup vault.
|
2666
2678
|
*/
|
2667
2679
|
BackupVaultAccountId?: String;
|
2668
2680
|
/**
|
@@ -2710,7 +2722,7 @@ declare namespace Backup {
|
|
2710
2722
|
}
|
2711
2723
|
export interface GetSupportedResourceTypesOutput {
|
2712
2724
|
/**
|
2713
|
-
* Contains a string with the supported Amazon Web Services resource types: Aurora for Amazon Aurora DynamoDB for Amazon DynamoDB EBS for Amazon Elastic Block Store EC2 for Amazon Elastic Compute Cloud EFS for Amazon Elastic File System
|
2725
|
+
* Contains a string with the supported Amazon Web Services resource types: Aurora for Amazon Aurora CloudFormation for CloudFormation DocumentDB for Amazon DocumentDB (with MongoDB compatibility) DynamoDB for Amazon DynamoDB EBS for Amazon Elastic Block Store EC2 for Amazon Elastic Compute Cloud EFS for Amazon Elastic File System FSx for Amazon FSx Neptune for Amazon Neptune RDS for Amazon Relational Database Service Redshift for Amazon Redshift S3 for Amazon Simple Storage Service (Amazon S3) SAP HANA on Amazon EC2 for SAP HANA databases on Amazon Elastic Compute Cloud instances Storage Gateway for Storage Gateway Timestream for Amazon Timestream VirtualMachine for VMware virtual machines
|
2714
2726
|
*/
|
2715
2727
|
ResourceTypes?: ResourceTypes;
|
2716
2728
|
}
|
@@ -2733,31 +2745,31 @@ declare namespace Backup {
|
|
2733
2745
|
export type KeyValueList = KeyValue[];
|
2734
2746
|
export interface LegalHold {
|
2735
2747
|
/**
|
2736
|
-
*
|
2748
|
+
* The title of a legal hold.
|
2737
2749
|
*/
|
2738
2750
|
Title?: string;
|
2739
2751
|
/**
|
2740
|
-
*
|
2752
|
+
* The status of the legal hold.
|
2741
2753
|
*/
|
2742
2754
|
Status?: LegalHoldStatus;
|
2743
2755
|
/**
|
2744
|
-
*
|
2756
|
+
* The description of a legal hold.
|
2745
2757
|
*/
|
2746
2758
|
Description?: string;
|
2747
2759
|
/**
|
2748
|
-
* ID of
|
2760
|
+
* The ID of the legal hold.
|
2749
2761
|
*/
|
2750
2762
|
LegalHoldId?: string;
|
2751
2763
|
/**
|
2752
|
-
*
|
2764
|
+
* The Amazon Resource Name (ARN) of the legal hold; for example, arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45.
|
2753
2765
|
*/
|
2754
2766
|
LegalHoldArn?: ARN;
|
2755
2767
|
/**
|
2756
|
-
*
|
2768
|
+
* The time when the legal hold was created.
|
2757
2769
|
*/
|
2758
2770
|
CreationDate?: timestamp;
|
2759
2771
|
/**
|
2760
|
-
*
|
2772
|
+
* The time when the legal hold was cancelled.
|
2761
2773
|
*/
|
2762
2774
|
CancellationDate?: timestamp;
|
2763
2775
|
}
|
@@ -2765,15 +2777,15 @@ declare namespace Backup {
|
|
2765
2777
|
export type LegalHoldsList = LegalHold[];
|
2766
2778
|
export interface Lifecycle {
|
2767
2779
|
/**
|
2768
|
-
*
|
2780
|
+
* The number of days after creation that a recovery point is moved to cold storage.
|
2769
2781
|
*/
|
2770
2782
|
MoveToColdStorageAfterDays?: Long;
|
2771
2783
|
/**
|
2772
|
-
*
|
2784
|
+
* The number of days after creation that a recovery point is deleted. This value must be at least 90 days after the number of days specified in MoveToColdStorageAfterDays.
|
2773
2785
|
*/
|
2774
2786
|
DeleteAfterDays?: Long;
|
2775
2787
|
/**
|
2776
|
-
*
|
2788
|
+
* If the value is true, your backup plan transitions supported resources to archive (cold) storage tier in accordance with your lifecycle settings.
|
2777
2789
|
*/
|
2778
2790
|
OptInToArchiveForSupportedResources?: Boolean;
|
2779
2791
|
}
|
@@ -2795,11 +2807,11 @@ declare namespace Backup {
|
|
2795
2807
|
*/
|
2796
2808
|
MessageCategory?: MessageCategory;
|
2797
2809
|
/**
|
2798
|
-
*
|
2810
|
+
* The period for the returned results. ONE_DAY - The daily job count for the prior 14 days. SEVEN_DAYS - The aggregated job count for the prior 7 days. FOURTEEN_DAYS - The aggregated job count for prior 14 days.
|
2799
2811
|
*/
|
2800
2812
|
AggregationPeriod?: AggregationPeriod;
|
2801
2813
|
/**
|
2802
|
-
*
|
2814
|
+
* The maximum number of items to be returned. The value is an integer. Range of accepted values is from 1 to 500.
|
2803
2815
|
*/
|
2804
2816
|
MaxResults?: MaxResults;
|
2805
2817
|
/**
|
@@ -2809,11 +2821,11 @@ declare namespace Backup {
|
|
2809
2821
|
}
|
2810
2822
|
export interface ListBackupJobSummariesOutput {
|
2811
2823
|
/**
|
2812
|
-
*
|
2824
|
+
* The summary information.
|
2813
2825
|
*/
|
2814
2826
|
BackupJobSummaries?: BackupJobSummaryList;
|
2815
2827
|
/**
|
2816
|
-
*
|
2828
|
+
* The period for the returned results. ONE_DAY - The daily job count for the prior 14 days. SEVEN_DAYS - The aggregated job count for the prior 7 days. FOURTEEN_DAYS - The aggregated job count for prior 14 days.
|
2817
2829
|
*/
|
2818
2830
|
AggregationPeriod?: string;
|
2819
2831
|
/**
|
@@ -2839,7 +2851,7 @@ declare namespace Backup {
|
|
2839
2851
|
*/
|
2840
2852
|
ByState?: BackupJobState;
|
2841
2853
|
/**
|
2842
|
-
* Returns only backup jobs that will be stored in the specified backup vault. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
2854
|
+
* Returns only backup jobs that will be stored in the specified backup vault. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
2843
2855
|
*/
|
2844
2856
|
ByBackupVaultName?: BackupVaultName;
|
2845
2857
|
/**
|
@@ -2851,7 +2863,7 @@ declare namespace Backup {
|
|
2851
2863
|
*/
|
2852
2864
|
ByCreatedAfter?: timestamp;
|
2853
2865
|
/**
|
2854
|
-
* Returns only backup jobs for the specified resources: Aurora for Amazon Aurora CloudFormation for CloudFormation DocumentDB for Amazon DocumentDB (with MongoDB compatibility) DynamoDB for Amazon DynamoDB EBS for Amazon Elastic Block Store EC2 for Amazon Elastic Compute Cloud EFS for Amazon Elastic File System FSx for Amazon FSx Neptune for Amazon Neptune Redshift for Amazon Redshift
|
2866
|
+
* Returns only backup jobs for the specified resources: Aurora for Amazon Aurora CloudFormation for CloudFormation DocumentDB for Amazon DocumentDB (with MongoDB compatibility) DynamoDB for Amazon DynamoDB EBS for Amazon Elastic Block Store EC2 for Amazon Elastic Compute Cloud EFS for Amazon Elastic File System FSx for Amazon FSx Neptune for Amazon Neptune RDS for Amazon Relational Database Service Redshift for Amazon Redshift S3 for Amazon Simple Storage Service (Amazon S3) SAP HANA on Amazon EC2 for SAP HANA databases on Amazon Elastic Compute Cloud instances Storage Gateway for Storage Gateway Timestream for Amazon Timestream VirtualMachine for VMware virtual machines
|
2855
2867
|
*/
|
2856
2868
|
ByResourceType?: ResourceType;
|
2857
2869
|
/**
|
@@ -2891,7 +2903,7 @@ declare namespace Backup {
|
|
2891
2903
|
*/
|
2892
2904
|
NextToken?: string;
|
2893
2905
|
/**
|
2894
|
-
* The maximum number of items to
|
2906
|
+
* The maximum number of items to return.
|
2895
2907
|
*/
|
2896
2908
|
MaxResults?: MaxResults;
|
2897
2909
|
}
|
@@ -2949,7 +2961,7 @@ declare namespace Backup {
|
|
2949
2961
|
*/
|
2950
2962
|
NextToken?: string;
|
2951
2963
|
/**
|
2952
|
-
*
|
2964
|
+
* Information about the backup plans.
|
2953
2965
|
*/
|
2954
2966
|
BackupPlansList?: BackupPlansList;
|
2955
2967
|
}
|
@@ -3023,7 +3035,7 @@ declare namespace Backup {
|
|
3023
3035
|
*/
|
3024
3036
|
MessageCategory?: MessageCategory;
|
3025
3037
|
/**
|
3026
|
-
*
|
3038
|
+
* The period for the returned results. ONE_DAY - The daily job count for the prior 14 days. SEVEN_DAYS - The aggregated job count for the prior 7 days. FOURTEEN_DAYS - The aggregated job count for prior 14 days.
|
3027
3039
|
*/
|
3028
3040
|
AggregationPeriod?: AggregationPeriod;
|
3029
3041
|
/**
|
@@ -3041,7 +3053,7 @@ declare namespace Backup {
|
|
3041
3053
|
*/
|
3042
3054
|
CopyJobSummaries?: CopyJobSummaryList;
|
3043
3055
|
/**
|
3044
|
-
*
|
3056
|
+
* The period for the returned results. ONE_DAY - The daily job count for the prior 14 days. SEVEN_DAYS - The aggregated job count for the prior 7 days. FOURTEEN_DAYS - The aggregated job count for prior 14 days.
|
3045
3057
|
*/
|
3046
3058
|
AggregationPeriod?: string;
|
3047
3059
|
/**
|
@@ -3075,11 +3087,11 @@ declare namespace Backup {
|
|
3075
3087
|
*/
|
3076
3088
|
ByCreatedAfter?: timestamp;
|
3077
3089
|
/**
|
3078
|
-
* Returns only backup jobs for the specified resources: Aurora for Amazon Aurora CloudFormation for CloudFormation DocumentDB for Amazon DocumentDB (with MongoDB compatibility) DynamoDB for Amazon DynamoDB EBS for Amazon Elastic Block Store EC2 for Amazon Elastic Compute Cloud EFS for Amazon Elastic File System FSx for Amazon FSx Neptune for Amazon Neptune Redshift for Amazon Redshift
|
3090
|
+
* Returns only backup jobs for the specified resources: Aurora for Amazon Aurora CloudFormation for CloudFormation DocumentDB for Amazon DocumentDB (with MongoDB compatibility) DynamoDB for Amazon DynamoDB EBS for Amazon Elastic Block Store EC2 for Amazon Elastic Compute Cloud EFS for Amazon Elastic File System FSx for Amazon FSx Neptune for Amazon Neptune RDS for Amazon Relational Database Service Redshift for Amazon Redshift S3 for Amazon Simple Storage Service (Amazon S3) SAP HANA on Amazon EC2 for SAP HANA databases on Amazon Elastic Compute Cloud instances Storage Gateway for Storage Gateway Timestream for Amazon Timestream VirtualMachine for VMware virtual machines
|
3079
3091
|
*/
|
3080
3092
|
ByResourceType?: ResourceType;
|
3081
3093
|
/**
|
3082
|
-
* An Amazon Resource Name (ARN) that uniquely identifies a source backup vault to copy from; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.
|
3094
|
+
* An Amazon Resource Name (ARN) that uniquely identifies a source backup vault to copy from; for example, arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault.
|
3083
3095
|
*/
|
3084
3096
|
ByDestinationVaultArn?: string;
|
3085
3097
|
/**
|
@@ -3125,7 +3137,7 @@ declare namespace Backup {
|
|
3125
3137
|
}
|
3126
3138
|
export interface ListFrameworksOutput {
|
3127
3139
|
/**
|
3128
|
-
*
|
3140
|
+
* The frameworks with details for each framework, including the framework name, Amazon Resource Name (ARN), description, number of controls, creation time, and deployment status.
|
3129
3141
|
*/
|
3130
3142
|
Frameworks?: FrameworkList;
|
3131
3143
|
/**
|
@@ -3156,11 +3168,11 @@ declare namespace Backup {
|
|
3156
3168
|
export type ListOfTags = Condition[];
|
3157
3169
|
export interface ListProtectedResourcesByBackupVaultInput {
|
3158
3170
|
/**
|
3159
|
-
*
|
3171
|
+
* The list of protected resources by backup vault within the vault(s) you specify by name.
|
3160
3172
|
*/
|
3161
3173
|
BackupVaultName: BackupVaultName;
|
3162
3174
|
/**
|
3163
|
-
*
|
3175
|
+
* The list of protected resources by backup vault within the vault(s) you specify by account ID.
|
3164
3176
|
*/
|
3165
3177
|
BackupVaultAccountId?: AccountId;
|
3166
3178
|
/**
|
@@ -3204,7 +3216,7 @@ declare namespace Backup {
|
|
3204
3216
|
}
|
3205
3217
|
export interface ListRecoveryPointsByBackupVaultInput {
|
3206
3218
|
/**
|
3207
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
3219
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created. Backup vault name might not be available when a supported service creates the backup.
|
3208
3220
|
*/
|
3209
3221
|
BackupVaultName: BackupVaultName;
|
3210
3222
|
/**
|
@@ -3224,7 +3236,7 @@ declare namespace Backup {
|
|
3224
3236
|
*/
|
3225
3237
|
ByResourceArn?: ARN;
|
3226
3238
|
/**
|
3227
|
-
* Returns only recovery points that match the specified resource type(s): Aurora for Amazon Aurora CloudFormation for CloudFormation DocumentDB for Amazon DocumentDB (with MongoDB compatibility) DynamoDB for Amazon DynamoDB EBS for Amazon Elastic Block Store EC2 for Amazon Elastic Compute Cloud EFS for Amazon Elastic File System FSx for Amazon FSx Neptune for Amazon Neptune Redshift for Amazon Redshift
|
3239
|
+
* Returns only recovery points that match the specified resource type(s): Aurora for Amazon Aurora CloudFormation for CloudFormation DocumentDB for Amazon DocumentDB (with MongoDB compatibility) DynamoDB for Amazon DynamoDB EBS for Amazon Elastic Block Store EC2 for Amazon Elastic Compute Cloud EFS for Amazon Elastic File System FSx for Amazon FSx Neptune for Amazon Neptune RDS for Amazon Relational Database Service Redshift for Amazon Redshift S3 for Amazon Simple Storage Service (Amazon S3) SAP HANA on Amazon EC2 for SAP HANA databases on Amazon Elastic Compute Cloud instances Storage Gateway for Storage Gateway Timestream for Amazon Timestream VirtualMachine for VMware virtual machines
|
3228
3240
|
*/
|
3229
3241
|
ByResourceType?: ResourceType;
|
3230
3242
|
/**
|
@@ -3256,25 +3268,25 @@ declare namespace Backup {
|
|
3256
3268
|
}
|
3257
3269
|
export interface ListRecoveryPointsByLegalHoldInput {
|
3258
3270
|
/**
|
3259
|
-
*
|
3271
|
+
* The ID of the legal hold.
|
3260
3272
|
*/
|
3261
3273
|
LegalHoldId: string;
|
3262
3274
|
/**
|
3263
|
-
*
|
3275
|
+
* The next item following a partial list of returned resources. For example, if a request is made to return MaxResults number of resources, NextToken allows you to return more items in your list starting at the location pointed to by the next token.
|
3264
3276
|
*/
|
3265
3277
|
NextToken?: string;
|
3266
3278
|
/**
|
3267
|
-
*
|
3279
|
+
* The maximum number of resource list items to be returned.
|
3268
3280
|
*/
|
3269
3281
|
MaxResults?: MaxResults;
|
3270
3282
|
}
|
3271
3283
|
export interface ListRecoveryPointsByLegalHoldOutput {
|
3272
3284
|
/**
|
3273
|
-
*
|
3285
|
+
* The recovery points.
|
3274
3286
|
*/
|
3275
3287
|
RecoveryPoints?: RecoveryPointsList;
|
3276
3288
|
/**
|
3277
|
-
*
|
3289
|
+
* The next item following a partial list of returned resources.
|
3278
3290
|
*/
|
3279
3291
|
NextToken?: string;
|
3280
3292
|
}
|
@@ -3354,7 +3366,7 @@ declare namespace Backup {
|
|
3354
3366
|
}
|
3355
3367
|
export interface ListReportPlansOutput {
|
3356
3368
|
/**
|
3357
|
-
*
|
3369
|
+
* The report plans with detailed information for each plan. This information includes the Amazon Resource Name (ARN), report plan name, description, settings, delivery channel, deployment status, creation time, and last times the report plan attempted to and successfully ran.
|
3358
3370
|
*/
|
3359
3371
|
ReportPlans?: ReportPlanList;
|
3360
3372
|
/**
|
@@ -3376,7 +3388,7 @@ declare namespace Backup {
|
|
3376
3388
|
*/
|
3377
3389
|
ResourceType?: ResourceType;
|
3378
3390
|
/**
|
3379
|
-
*
|
3391
|
+
* The period for the returned results. ONE_DAY - The daily job count for the prior 14 days. SEVEN_DAYS - The aggregated job count for the prior 7 days. FOURTEEN_DAYS - The aggregated job count for prior 14 days.
|
3380
3392
|
*/
|
3381
3393
|
AggregationPeriod?: AggregationPeriod;
|
3382
3394
|
/**
|
@@ -3394,7 +3406,7 @@ declare namespace Backup {
|
|
3394
3406
|
*/
|
3395
3407
|
RestoreJobSummaries?: RestoreJobSummaryList;
|
3396
3408
|
/**
|
3397
|
-
*
|
3409
|
+
* The period for the returned results. ONE_DAY - The daily job count for the prior 14 days. SEVEN_DAYS - The aggregated job count for the prior 7 days. FOURTEEN_DAYS - The aggregated job count for prior 14 days.
|
3398
3410
|
*/
|
3399
3411
|
AggregationPeriod?: string;
|
3400
3412
|
/**
|
@@ -3452,7 +3464,7 @@ declare namespace Backup {
|
|
3452
3464
|
*/
|
3453
3465
|
ByAccountId?: AccountId;
|
3454
3466
|
/**
|
3455
|
-
* Include this parameter to return only restore jobs for the specified resources: Aurora for Amazon Aurora CloudFormation for CloudFormation DocumentDB for Amazon DocumentDB (with MongoDB compatibility) DynamoDB for Amazon DynamoDB EBS for Amazon Elastic Block Store EC2 for Amazon Elastic Compute Cloud EFS for Amazon Elastic File System FSx for Amazon FSx Neptune for Amazon Neptune Redshift for Amazon Redshift
|
3467
|
+
* Include this parameter to return only restore jobs for the specified resources: Aurora for Amazon Aurora CloudFormation for CloudFormation DocumentDB for Amazon DocumentDB (with MongoDB compatibility) DynamoDB for Amazon DynamoDB EBS for Amazon Elastic Block Store EC2 for Amazon Elastic Compute Cloud EFS for Amazon Elastic File System FSx for Amazon FSx Neptune for Amazon Neptune RDS for Amazon Relational Database Service Redshift for Amazon Redshift S3 for Amazon Simple Storage Service (Amazon S3) SAP HANA on Amazon EC2 for SAP HANA databases on Amazon Elastic Compute Cloud instances Storage Gateway for Storage Gateway Timestream for Amazon Timestream VirtualMachine for VMware virtual machines
|
3456
3468
|
*/
|
3457
3469
|
ByResourceType?: ResourceType;
|
3458
3470
|
/**
|
@@ -3556,7 +3568,7 @@ declare namespace Backup {
|
|
3556
3568
|
*/
|
3557
3569
|
NextToken?: string;
|
3558
3570
|
/**
|
3559
|
-
*
|
3571
|
+
* Information about the tags.
|
3560
3572
|
*/
|
3561
3573
|
Tags?: Tags;
|
3562
3574
|
}
|
@@ -3583,15 +3595,15 @@ declare namespace Backup {
|
|
3583
3595
|
*/
|
3584
3596
|
LastBackupTime?: timestamp;
|
3585
3597
|
/**
|
3586
|
-
*
|
3598
|
+
* The non-unique name of the resource that belongs to the specified backup.
|
3587
3599
|
*/
|
3588
3600
|
ResourceName?: string;
|
3589
3601
|
/**
|
3590
|
-
*
|
3602
|
+
* The ARN (Amazon Resource Name) of the backup vault that contains the most recent backup recovery point.
|
3591
3603
|
*/
|
3592
3604
|
LastBackupVaultArn?: ARN;
|
3593
3605
|
/**
|
3594
|
-
*
|
3606
|
+
* The ARN (Amazon Resource Name) of the most recent recovery point.
|
3595
3607
|
*/
|
3596
3608
|
LastRecoveryPointArn?: ARN;
|
3597
3609
|
}
|
@@ -3608,7 +3620,7 @@ declare namespace Backup {
|
|
3608
3620
|
export type ProtectedResourcesList = ProtectedResource[];
|
3609
3621
|
export interface PutBackupVaultAccessPolicyInput {
|
3610
3622
|
/**
|
3611
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
3623
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
3612
3624
|
*/
|
3613
3625
|
BackupVaultName: BackupVaultName;
|
3614
3626
|
/**
|
@@ -3622,7 +3634,7 @@ declare namespace Backup {
|
|
3622
3634
|
*/
|
3623
3635
|
BackupVaultName: BackupVaultName;
|
3624
3636
|
/**
|
3625
|
-
* The Backup Vault Lock configuration that specifies the minimum retention period that the vault retains its recovery points. This setting can be useful if, for example, your organization's policies require you to retain certain data for at least seven years (2555 days). If this parameter is not specified, Vault Lock will not enforce a minimum retention period. If this parameter is specified, any backup or copy job to the vault must have a lifecycle policy with a retention period equal to or longer than the minimum retention period. If the job's retention period is shorter than that minimum retention period, then the vault fails that backup or copy job, and you should either modify your lifecycle settings or use a different vault. The shortest minimum retention period you can specify is 1 day. Recovery points already saved in the vault prior to Vault Lock are not affected.
|
3637
|
+
* The Backup Vault Lock configuration that specifies the minimum retention period that the vault retains its recovery points. This setting can be useful if, for example, your organization's policies require you to retain certain data for at least seven years (2555 days). This parameter is required when a vault lock is created through CloudFormation; otherwise, this parameter is optional. If this parameter is not specified, Vault Lock will not enforce a minimum retention period. If this parameter is specified, any backup or copy job to the vault must have a lifecycle policy with a retention period equal to or longer than the minimum retention period. If the job's retention period is shorter than that minimum retention period, then the vault fails that backup or copy job, and you should either modify your lifecycle settings or use a different vault. The shortest minimum retention period you can specify is 1 day. Recovery points already saved in the vault prior to Vault Lock are not affected.
|
3626
3638
|
*/
|
3627
3639
|
MinRetentionDays?: Long;
|
3628
3640
|
/**
|
@@ -3636,7 +3648,7 @@ declare namespace Backup {
|
|
3636
3648
|
}
|
3637
3649
|
export interface PutBackupVaultNotificationsInput {
|
3638
3650
|
/**
|
3639
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
3651
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
3640
3652
|
*/
|
3641
3653
|
BackupVaultName: BackupVaultName;
|
3642
3654
|
/**
|
@@ -3644,7 +3656,7 @@ declare namespace Backup {
|
|
3644
3656
|
*/
|
3645
3657
|
SNSTopicArn: ARN;
|
3646
3658
|
/**
|
3647
|
-
* An array of events that indicate the status of jobs to back up resources to the backup vault. For common use cases and code samples, see Using Amazon SNS to track Backup events. The following events are supported: BACKUP_JOB_STARTED | BACKUP_JOB_COMPLETED COPY_JOB_STARTED | COPY_JOB_SUCCESSFUL | COPY_JOB_FAILED RESTORE_JOB_STARTED | RESTORE_JOB_COMPLETED | RECOVERY_POINT_MODIFIED S3_BACKUP_OBJECT_FAILED | S3_RESTORE_OBJECT_FAILED The list below
|
3659
|
+
* An array of events that indicate the status of jobs to back up resources to the backup vault. For common use cases and code samples, see Using Amazon SNS to track Backup events. The following events are supported: BACKUP_JOB_STARTED | BACKUP_JOB_COMPLETED COPY_JOB_STARTED | COPY_JOB_SUCCESSFUL | COPY_JOB_FAILED RESTORE_JOB_STARTED | RESTORE_JOB_COMPLETED | RECOVERY_POINT_MODIFIED S3_BACKUP_OBJECT_FAILED | S3_RESTORE_OBJECT_FAILED The list below includes both supported events and deprecated events that are no longer in use (for reference). Deprecated events do not return statuses or notifications. Refer to the list above for the supported events.
|
3648
3660
|
*/
|
3649
3661
|
BackupVaultEvents: BackupVaultEvents;
|
3650
3662
|
}
|
@@ -3654,7 +3666,7 @@ declare namespace Backup {
|
|
3654
3666
|
*/
|
3655
3667
|
RestoreJobId: RestoreJobId;
|
3656
3668
|
/**
|
3657
|
-
*
|
3669
|
+
* The status of your restore validation.
|
3658
3670
|
*/
|
3659
3671
|
ValidationStatus: RestoreValidationStatus;
|
3660
3672
|
/**
|
@@ -3668,11 +3680,11 @@ declare namespace Backup {
|
|
3668
3680
|
*/
|
3669
3681
|
RecoveryPointArn?: ARN;
|
3670
3682
|
/**
|
3671
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
3683
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
3672
3684
|
*/
|
3673
3685
|
BackupVaultName?: BackupVaultName;
|
3674
3686
|
/**
|
3675
|
-
* An ARN that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.
|
3687
|
+
* An ARN that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault.
|
3676
3688
|
*/
|
3677
3689
|
BackupVaultArn?: ARN;
|
3678
3690
|
/**
|
@@ -3700,7 +3712,7 @@ declare namespace Backup {
|
|
3700
3712
|
*/
|
3701
3713
|
Status?: RecoveryPointStatus;
|
3702
3714
|
/**
|
3703
|
-
* A message explaining the
|
3715
|
+
* A message explaining the current status of the recovery point.
|
3704
3716
|
*/
|
3705
3717
|
StatusMessage?: string;
|
3706
3718
|
/**
|
@@ -3720,7 +3732,7 @@ declare namespace Backup {
|
|
3720
3732
|
*/
|
3721
3733
|
CalculatedLifecycle?: CalculatedLifecycle;
|
3722
3734
|
/**
|
3723
|
-
* The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup transitions and expires backups automatically according to the lifecycle that you define. Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, the “retention” setting must be 90 days greater than the “transition to cold after days” setting. The “transition to cold after days” setting cannot be changed after a backup has been transitioned to cold. Resource types that
|
3735
|
+
* The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup transitions and expires backups automatically according to the lifecycle that you define. Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, the “retention” setting must be 90 days greater than the “transition to cold after days” setting. The “transition to cold after days” setting cannot be changed after a backup has been transitioned to cold. Resource types that can transition to cold storage are listed in the Feature availability by resource table. Backup ignores this expression for other resource types.
|
3724
3736
|
*/
|
3725
3737
|
Lifecycle?: Lifecycle;
|
3726
3738
|
/**
|
@@ -3736,11 +3748,11 @@ declare namespace Backup {
|
|
3736
3748
|
*/
|
3737
3749
|
LastRestoreTime?: timestamp;
|
3738
3750
|
/**
|
3739
|
-
*
|
3751
|
+
* The Amazon Resource Name (ARN) of the parent (composite) recovery point.
|
3740
3752
|
*/
|
3741
3753
|
ParentRecoveryPointArn?: ARN;
|
3742
3754
|
/**
|
3743
|
-
*
|
3755
|
+
* The identifier of a resource within a composite group, such as nested (child) recovery point belonging to a composite (parent) stack. The ID is transferred from the logical ID within a stack.
|
3744
3756
|
*/
|
3745
3757
|
CompositeMemberIdentifier?: string;
|
3746
3758
|
/**
|
@@ -3748,11 +3760,11 @@ declare namespace Backup {
|
|
3748
3760
|
*/
|
3749
3761
|
IsParent?: boolean;
|
3750
3762
|
/**
|
3751
|
-
*
|
3763
|
+
* The non-unique name of the resource that belongs to the specified backup.
|
3752
3764
|
*/
|
3753
3765
|
ResourceName?: string;
|
3754
3766
|
/**
|
3755
|
-
*
|
3767
|
+
* The type of vault in which the described recovery point is stored.
|
3756
3768
|
*/
|
3757
3769
|
VaultType?: VaultType;
|
3758
3770
|
}
|
@@ -3771,7 +3783,7 @@ declare namespace Backup {
|
|
3771
3783
|
*/
|
3772
3784
|
Status?: RecoveryPointStatus;
|
3773
3785
|
/**
|
3774
|
-
* A message explaining the
|
3786
|
+
* A message explaining the current status of the recovery point.
|
3775
3787
|
*/
|
3776
3788
|
StatusMessage?: string;
|
3777
3789
|
/**
|
@@ -3783,7 +3795,7 @@ declare namespace Backup {
|
|
3783
3795
|
*/
|
3784
3796
|
BackupSizeBytes?: Long;
|
3785
3797
|
/**
|
3786
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
3798
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
3787
3799
|
*/
|
3788
3800
|
BackupVaultName?: BackupVaultName;
|
3789
3801
|
/**
|
@@ -3791,15 +3803,15 @@ declare namespace Backup {
|
|
3791
3803
|
*/
|
3792
3804
|
IsParent?: boolean;
|
3793
3805
|
/**
|
3794
|
-
*
|
3806
|
+
* The Amazon Resource Name (ARN) of the parent (composite) recovery point.
|
3795
3807
|
*/
|
3796
3808
|
ParentRecoveryPointArn?: ARN;
|
3797
3809
|
/**
|
3798
|
-
*
|
3810
|
+
* The non-unique name of the resource that belongs to the specified backup.
|
3799
3811
|
*/
|
3800
3812
|
ResourceName?: string;
|
3801
3813
|
/**
|
3802
|
-
*
|
3814
|
+
* The type of vault in which the described recovery point is stored.
|
3803
3815
|
*/
|
3804
3816
|
VaultType?: VaultType;
|
3805
3817
|
}
|
@@ -3824,19 +3836,19 @@ declare namespace Backup {
|
|
3824
3836
|
}
|
3825
3837
|
export interface RecoveryPointMember {
|
3826
3838
|
/**
|
3827
|
-
*
|
3839
|
+
* The Amazon Resource Name (ARN) of the parent (composite) recovery point.
|
3828
3840
|
*/
|
3829
3841
|
RecoveryPointArn?: ARN;
|
3830
3842
|
/**
|
3831
|
-
*
|
3843
|
+
* The Amazon Resource Name (ARN) that uniquely identifies a saved resource.
|
3832
3844
|
*/
|
3833
3845
|
ResourceArn?: ARN;
|
3834
3846
|
/**
|
3835
|
-
*
|
3847
|
+
* The Amazon Web Services resource type that is saved as a recovery point.
|
3836
3848
|
*/
|
3837
3849
|
ResourceType?: ResourceType;
|
3838
3850
|
/**
|
3839
|
-
*
|
3851
|
+
* The name of the backup vault (the logical container in which backups are stored).
|
3840
3852
|
*/
|
3841
3853
|
BackupVaultName?: BackupVaultName;
|
3842
3854
|
}
|
@@ -3864,7 +3876,7 @@ declare namespace Backup {
|
|
3864
3876
|
*/
|
3865
3877
|
S3KeyPrefix?: string;
|
3866
3878
|
/**
|
3867
|
-
*
|
3879
|
+
* The format of your reports: CSV, JSON, or both. If not specified, the default format is CSV.
|
3868
3880
|
*/
|
3869
3881
|
Formats?: FormatList;
|
3870
3882
|
}
|
@@ -3969,7 +3981,7 @@ declare namespace Backup {
|
|
3969
3981
|
*/
|
3970
3982
|
NumberOfFrameworks?: integer;
|
3971
3983
|
/**
|
3972
|
-
* These are the accounts to be included in the report.
|
3984
|
+
* These are the accounts to be included in the report. Use string value of ROOT to include all organizational units.
|
3973
3985
|
*/
|
3974
3986
|
Accounts?: stringList;
|
3975
3987
|
/**
|
@@ -3977,7 +3989,7 @@ declare namespace Backup {
|
|
3977
3989
|
*/
|
3978
3990
|
OrganizationUnits?: stringList;
|
3979
3991
|
/**
|
3980
|
-
* These are the Regions to be included in the report.
|
3992
|
+
* These are the Regions to be included in the report. Use the wildcard as the string value to include all Regions.
|
3981
3993
|
*/
|
3982
3994
|
Regions?: stringList;
|
3983
3995
|
}
|
@@ -4068,7 +4080,7 @@ declare namespace Backup {
|
|
4068
4080
|
*/
|
4069
4081
|
BackupSizeInBytes?: Long;
|
4070
4082
|
/**
|
4071
|
-
*
|
4083
|
+
* The IAM role ARN used to create the target recovery point; for example, arn:aws:iam::123456789012:role/S3Access.
|
4072
4084
|
*/
|
4073
4085
|
IamRoleArn?: IAMRoleArn;
|
4074
4086
|
/**
|
@@ -4092,7 +4104,7 @@ declare namespace Backup {
|
|
4092
4104
|
*/
|
4093
4105
|
CreatedBy?: RestoreJobCreator;
|
4094
4106
|
/**
|
4095
|
-
*
|
4107
|
+
* The status of validation run on the indicated restore job.
|
4096
4108
|
*/
|
4097
4109
|
ValidationStatus?: RestoreValidationStatus;
|
4098
4110
|
/**
|
@@ -4110,7 +4122,7 @@ declare namespace Backup {
|
|
4110
4122
|
}
|
4111
4123
|
export interface RestoreTestingPlanForCreate {
|
4112
4124
|
/**
|
4113
|
-
*
|
4125
|
+
* RecoveryPointSelection has five parameters (three required and two optional). The values you specify determine which recovery point is included in the restore test. You must indicate with Algorithm if you want the latest recovery point within your SelectionWindowDays or if you want a random recovery point, and you must indicate through IncludeVaults from which vaults the recovery points can be chosen. Algorithm (required) Valid values: "LATEST_WITHIN_WINDOW" or "RANDOM_WITHIN_WINDOW". Recovery point types (required) Valid values: "SNAPSHOT" and/or "CONTINUOUS". Include SNAPSHOT to restore only snapshot recovery points; include CONTINUOUS to restore continuous recovery points (point in time restore / PITR); use both to restore either a snapshot or a continuous recovery point. The recovery point will be determined by the value for Algorithm. IncludeVaults (required). You must include one or more backup vaults. Use the wildcard ["*"] or specific ARNs. SelectionWindowDays (optional) Value must be an integer (in days) from 1 to 365. If not included, the value defaults to 30. ExcludeVaults (optional). You can choose to input one or more specific backup vault ARNs to exclude those vaults' contents from restore eligibility. Or, you can include a list of selectors. If this parameter and its value are not included, it defaults to empty list.
|
4114
4126
|
*/
|
4115
4127
|
RecoveryPointSelection: RestoreTestingRecoveryPointSelection;
|
4116
4128
|
/**
|
@@ -4156,7 +4168,7 @@ declare namespace Backup {
|
|
4156
4168
|
*/
|
4157
4169
|
RestoreTestingPlanArn: String;
|
4158
4170
|
/**
|
4159
|
-
*
|
4171
|
+
* The restore testing plan name.
|
4160
4172
|
*/
|
4161
4173
|
RestoreTestingPlanName: String;
|
4162
4174
|
/**
|
@@ -4190,7 +4202,7 @@ declare namespace Backup {
|
|
4190
4202
|
*/
|
4191
4203
|
RestoreTestingPlanArn: String;
|
4192
4204
|
/**
|
4193
|
-
*
|
4205
|
+
* The restore testing plan name.
|
4194
4206
|
*/
|
4195
4207
|
RestoreTestingPlanName: String;
|
4196
4208
|
/**
|
@@ -4239,7 +4251,7 @@ declare namespace Backup {
|
|
4239
4251
|
*/
|
4240
4252
|
IncludeVaults?: stringList;
|
4241
4253
|
/**
|
4242
|
-
* These are the types of recovery points.
|
4254
|
+
* These are the types of recovery points. Include SNAPSHOT to restore only snapshot recovery points; include CONTINUOUS to restore continuous recovery points (point in time restore / PITR); use both to restore either a snapshot or a continuous recovery point. The recovery point will be determined by the value for Algorithm.
|
4243
4255
|
*/
|
4244
4256
|
RecoveryPointTypes?: RestoreTestingRecoveryPointTypeList;
|
4245
4257
|
/**
|
@@ -4272,7 +4284,7 @@ declare namespace Backup {
|
|
4272
4284
|
*/
|
4273
4285
|
RestoreMetadataOverrides?: SensitiveStringMap;
|
4274
4286
|
/**
|
4275
|
-
*
|
4287
|
+
* The unique name of the restore testing selection that belongs to the related restore testing plan.
|
4276
4288
|
*/
|
4277
4289
|
RestoreTestingSelectionName: String;
|
4278
4290
|
/**
|
@@ -4314,7 +4326,7 @@ declare namespace Backup {
|
|
4314
4326
|
*/
|
4315
4327
|
RestoreTestingPlanName: String;
|
4316
4328
|
/**
|
4317
|
-
*
|
4329
|
+
* The unique name of the restore testing selection that belongs to the related restore testing plan.
|
4318
4330
|
*/
|
4319
4331
|
RestoreTestingSelectionName: String;
|
4320
4332
|
/**
|
@@ -4324,7 +4336,7 @@ declare namespace Backup {
|
|
4324
4336
|
}
|
4325
4337
|
export interface RestoreTestingSelectionForList {
|
4326
4338
|
/**
|
4327
|
-
*
|
4339
|
+
* The date and time that a restore testing selection was created, in Unix format and Coordinated Universal Time (UTC). The value of CreationTime is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26,2018 12:11:30.087 AM.
|
4328
4340
|
*/
|
4329
4341
|
CreationTime: Timestamp;
|
4330
4342
|
/**
|
@@ -4358,7 +4370,7 @@ declare namespace Backup {
|
|
4358
4370
|
*/
|
4359
4371
|
ProtectedResourceArns?: stringList;
|
4360
4372
|
/**
|
4361
|
-
*
|
4373
|
+
* The conditions that you define for resources in your restore testing plan using tags.
|
4362
4374
|
*/
|
4363
4375
|
ProtectedResourceConditions?: ProtectedResourceConditions;
|
4364
4376
|
/**
|
@@ -4375,7 +4387,7 @@ declare namespace Backup {
|
|
4375
4387
|
export type SensitiveStringMap = {[key: string]: String};
|
4376
4388
|
export interface StartBackupJobInput {
|
4377
4389
|
/**
|
4378
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
4390
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
4379
4391
|
*/
|
4380
4392
|
BackupVaultName: BackupVaultName;
|
4381
4393
|
/**
|
@@ -4399,15 +4411,15 @@ declare namespace Backup {
|
|
4399
4411
|
*/
|
4400
4412
|
CompleteWindowMinutes?: WindowMinutes;
|
4401
4413
|
/**
|
4402
|
-
* The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup will transition and expire backups automatically according to the lifecycle that you define. Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, the “retention” setting must be 90 days greater than the “transition to cold after days” setting. The “transition to cold after days” setting cannot be changed after a backup has been transitioned to cold. Resource types that
|
4414
|
+
* The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup will transition and expire backups automatically according to the lifecycle that you define. Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, the “retention” setting must be 90 days greater than the “transition to cold after days” setting. The “transition to cold after days” setting cannot be changed after a backup has been transitioned to cold. Resource types that can transition to cold storage are listed in the Feature availability by resource table. Backup ignores this expression for other resource types. This parameter has a maximum value of 100 years (36,500 days).
|
4403
4415
|
*/
|
4404
4416
|
Lifecycle?: Lifecycle;
|
4405
4417
|
/**
|
4406
|
-
*
|
4418
|
+
* The tags to assign to the resources.
|
4407
4419
|
*/
|
4408
4420
|
RecoveryPointTags?: Tags;
|
4409
4421
|
/**
|
4410
|
-
*
|
4422
|
+
* The backup option for a selected resource. This option is only available for Windows Volume Shadow Copy Service (VSS) backup jobs. Valid values: Set to "WindowsVSS":"enabled" to enable the WindowsVSS backup option and create a Windows VSS backup. Set to "WindowsVSS""disabled" to create a regular backup. The WindowsVSS option is not enabled by default.
|
4411
4423
|
*/
|
4412
4424
|
BackupOptions?: BackupOptions;
|
4413
4425
|
}
|
@@ -4435,11 +4447,11 @@ declare namespace Backup {
|
|
4435
4447
|
*/
|
4436
4448
|
RecoveryPointArn: ARN;
|
4437
4449
|
/**
|
4438
|
-
* The name of a logical source container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
4450
|
+
* The name of a logical source container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
4439
4451
|
*/
|
4440
4452
|
SourceBackupVaultName: BackupVaultName;
|
4441
4453
|
/**
|
4442
|
-
* An Amazon Resource Name (ARN) that uniquely identifies a destination backup vault to copy to; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.
|
4454
|
+
* An Amazon Resource Name (ARN) that uniquely identifies a destination backup vault to copy to; for example, arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault.
|
4443
4455
|
*/
|
4444
4456
|
DestinationBackupVaultArn: ARN;
|
4445
4457
|
/**
|
@@ -4488,7 +4500,7 @@ declare namespace Backup {
|
|
4488
4500
|
*/
|
4489
4501
|
RecoveryPointArn: ARN;
|
4490
4502
|
/**
|
4491
|
-
* A set of metadata key-value pairs.
|
4503
|
+
* A set of metadata key-value pairs. You can get configuration metadata about a resource at the time it was backed up by calling GetRecoveryPointRestoreMetadata. However, values in addition to those provided by GetRecoveryPointRestoreMetadata might be required to restore a resource. For example, you might need to provide a new resource name if the original already exists. For more information about the metadata for each resource, see the following: Metadata for Amazon Aurora Metadata for Amazon DocumentDB Metadata for CloudFormation Metadata for Amazon DynamoDB Metadata for Amazon EBS Metadata for Amazon EC2 Metadata for Amazon EFS Metadata for Amazon FSx Metadata for Amazon Neptune Metadata for Amazon RDS Metadata for Amazon Redshift Metadata for Storage Gateway Metadata for Amazon S3 Metadata for Amazon Timestream Metadata for virtual machines
|
4492
4504
|
*/
|
4493
4505
|
Metadata: Metadata;
|
4494
4506
|
/**
|
@@ -4500,7 +4512,7 @@ declare namespace Backup {
|
|
4500
4512
|
*/
|
4501
4513
|
IdempotencyToken?: string;
|
4502
4514
|
/**
|
4503
|
-
* Starts a job to restore a recovery point for one of the following resources: Aurora
|
4515
|
+
* Starts a job to restore a recovery point for one of the following resources: Aurora - Amazon Aurora DocumentDB - Amazon DocumentDB CloudFormation - CloudFormation DynamoDB - Amazon DynamoDB EBS - Amazon Elastic Block Store EC2 - Amazon Elastic Compute Cloud EFS - Amazon Elastic File System FSx - Amazon FSx Neptune - Amazon Neptune RDS - Amazon Relational Database Service Redshift - Amazon Redshift Storage Gateway - Storage Gateway S3 - Amazon Simple Storage Service Timestream - Amazon Timestream VirtualMachine - Virtual machines
|
4504
4516
|
*/
|
4505
4517
|
ResourceType?: ResourceType;
|
4506
4518
|
/**
|
@@ -4526,7 +4538,7 @@ declare namespace Backup {
|
|
4526
4538
|
export type TagKeyList = string[];
|
4527
4539
|
export interface TagResourceInput {
|
4528
4540
|
/**
|
4529
|
-
* An ARN that uniquely identifies a resource. The format of the ARN depends on the type of the tagged resource.
|
4541
|
+
* An ARN that uniquely identifies a resource. The format of the ARN depends on the type of the tagged resource. ARNs that do not include backup are incompatible with tagging. TagResource and UntagResource with invalid ARNs will result in an error. Acceptable ARN content can include arn:aws:backup:us-east. Invalid ARN content may look like arn:aws:ec2:us-east.
|
4530
4542
|
*/
|
4531
4543
|
ResourceArn: ARN;
|
4532
4544
|
/**
|
@@ -4540,21 +4552,21 @@ declare namespace Backup {
|
|
4540
4552
|
export type Timezone = string;
|
4541
4553
|
export interface UntagResourceInput {
|
4542
4554
|
/**
|
4543
|
-
* An ARN that uniquely identifies a resource. The format of the ARN depends on the type of the tagged resource.
|
4555
|
+
* An ARN that uniquely identifies a resource. The format of the ARN depends on the type of the tagged resource. ARNs that do not include backup are incompatible with tagging. TagResource and UntagResource with invalid ARNs will result in an error. Acceptable ARN content can include arn:aws:backup:us-east. Invalid ARN content may look like arn:aws:ec2:us-east.
|
4544
4556
|
*/
|
4545
4557
|
ResourceArn: ARN;
|
4546
4558
|
/**
|
4547
|
-
*
|
4559
|
+
* The keys to identify which key-value tags to remove from a resource.
|
4548
4560
|
*/
|
4549
4561
|
TagKeyList: TagKeyList;
|
4550
4562
|
}
|
4551
4563
|
export interface UpdateBackupPlanInput {
|
4552
4564
|
/**
|
4553
|
-
*
|
4565
|
+
* The ID of the backup plan.
|
4554
4566
|
*/
|
4555
4567
|
BackupPlanId: string;
|
4556
4568
|
/**
|
4557
|
-
*
|
4569
|
+
* The body of a backup plan. Includes a BackupPlanName and one or more sets of Rules.
|
4558
4570
|
*/
|
4559
4571
|
BackupPlan: BackupPlanInput;
|
4560
4572
|
}
|
@@ -4590,7 +4602,7 @@ declare namespace Backup {
|
|
4590
4602
|
*/
|
4591
4603
|
FrameworkDescription?: FrameworkDescription;
|
4592
4604
|
/**
|
4593
|
-
*
|
4605
|
+
* The controls that make up the framework. Each control in the list has a name, input parameters, and scope.
|
4594
4606
|
*/
|
4595
4607
|
FrameworkControls?: FrameworkControls;
|
4596
4608
|
/**
|
@@ -4620,7 +4632,7 @@ declare namespace Backup {
|
|
4620
4632
|
}
|
4621
4633
|
export interface UpdateRecoveryPointLifecycleInput {
|
4622
4634
|
/**
|
4623
|
-
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
4635
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created.
|
4624
4636
|
*/
|
4625
4637
|
BackupVaultName: BackupVaultName;
|
4626
4638
|
/**
|
@@ -4634,7 +4646,7 @@ declare namespace Backup {
|
|
4634
4646
|
}
|
4635
4647
|
export interface UpdateRecoveryPointLifecycleOutput {
|
4636
4648
|
/**
|
4637
|
-
* An ARN that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.
|
4649
|
+
* An ARN that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault.
|
4638
4650
|
*/
|
4639
4651
|
BackupVaultArn?: ARN;
|
4640
4652
|
/**
|
@@ -4642,7 +4654,7 @@ declare namespace Backup {
|
|
4642
4654
|
*/
|
4643
4655
|
RecoveryPointArn?: ARN;
|
4644
4656
|
/**
|
4645
|
-
* The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup transitions and expires backups automatically according to the lifecycle that you define. Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, the “retention” setting must be 90 days greater than the “transition to cold after days” setting. The “transition to cold after days” setting cannot be changed after a backup has been transitioned to cold. Resource types that
|
4657
|
+
* The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup transitions and expires backups automatically according to the lifecycle that you define. Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, the “retention” setting must be 90 days greater than the “transition to cold after days” setting. The “transition to cold after days” setting cannot be changed after a backup has been transitioned to cold. Resource types that can transition to cold storage are listed in the Feature availability by resource table. Backup ignores this expression for other resource types.
|
4646
4658
|
*/
|
4647
4659
|
Lifecycle?: Lifecycle;
|
4648
4660
|
/**
|
@@ -4670,11 +4682,11 @@ declare namespace Backup {
|
|
4670
4682
|
*/
|
4671
4683
|
ReportPlanDescription?: ReportPlanDescription;
|
4672
4684
|
/**
|
4673
|
-
*
|
4685
|
+
* The information about where to deliver your reports, specifically your Amazon S3 bucket name, S3 key prefix, and the formats of your reports.
|
4674
4686
|
*/
|
4675
4687
|
ReportDeliveryChannel?: ReportDeliveryChannel;
|
4676
4688
|
/**
|
4677
|
-
*
|
4689
|
+
* The report template for the report. Reports are built using a report template. The report templates are: RESOURCE_COMPLIANCE_REPORT | CONTROL_COMPLIANCE_REPORT | BACKUP_JOB_REPORT | COPY_JOB_REPORT | RESTORE_JOB_REPORT If the report template is RESOURCE_COMPLIANCE_REPORT or CONTROL_COMPLIANCE_REPORT, this API resource also describes the report coverage by Amazon Web Services Regions and frameworks.
|
4678
4690
|
*/
|
4679
4691
|
ReportSetting?: ReportSetting;
|
4680
4692
|
/**
|
@@ -4702,13 +4714,13 @@ declare namespace Backup {
|
|
4702
4714
|
*/
|
4703
4715
|
RestoreTestingPlan: RestoreTestingPlanForUpdate;
|
4704
4716
|
/**
|
4705
|
-
*
|
4717
|
+
* The name of the restore testing plan name.
|
4706
4718
|
*/
|
4707
4719
|
RestoreTestingPlanName: String;
|
4708
4720
|
}
|
4709
4721
|
export interface UpdateRestoreTestingPlanOutput {
|
4710
4722
|
/**
|
4711
|
-
*
|
4723
|
+
* The time the resource testing plan was created.
|
4712
4724
|
*/
|
4713
4725
|
CreationTime: Timestamp;
|
4714
4726
|
/**
|
@@ -4720,7 +4732,7 @@ declare namespace Backup {
|
|
4720
4732
|
*/
|
4721
4733
|
RestoreTestingPlanName: String;
|
4722
4734
|
/**
|
4723
|
-
*
|
4735
|
+
* The time the update completed for the restore testing plan.
|
4724
4736
|
*/
|
4725
4737
|
UpdateTime: Timestamp;
|
4726
4738
|
}
|
@@ -4734,13 +4746,13 @@ declare namespace Backup {
|
|
4734
4746
|
*/
|
4735
4747
|
RestoreTestingSelection: RestoreTestingSelectionForUpdate;
|
4736
4748
|
/**
|
4737
|
-
*
|
4749
|
+
* The required restore testing selection name of the restore testing selection you wish to update.
|
4738
4750
|
*/
|
4739
4751
|
RestoreTestingSelectionName: String;
|
4740
4752
|
}
|
4741
4753
|
export interface UpdateRestoreTestingSelectionOutput {
|
4742
4754
|
/**
|
4743
|
-
*
|
4755
|
+
* The time the resource testing selection was updated successfully.
|
4744
4756
|
*/
|
4745
4757
|
CreationTime: Timestamp;
|
4746
4758
|
/**
|
@@ -4748,15 +4760,15 @@ declare namespace Backup {
|
|
4748
4760
|
*/
|
4749
4761
|
RestoreTestingPlanArn: String;
|
4750
4762
|
/**
|
4751
|
-
*
|
4763
|
+
* The restore testing plan with which the updated restore testing selection is associated.
|
4752
4764
|
*/
|
4753
4765
|
RestoreTestingPlanName: String;
|
4754
4766
|
/**
|
4755
|
-
*
|
4767
|
+
* The returned restore testing selection name.
|
4756
4768
|
*/
|
4757
4769
|
RestoreTestingSelectionName: String;
|
4758
4770
|
/**
|
4759
|
-
*
|
4771
|
+
* The time the update completed for the restore testing selection.
|
4760
4772
|
*/
|
4761
4773
|
UpdateTime: Timestamp;
|
4762
4774
|
}
|