Values.DescribeRecoveryPointOutputSourceReturns metadata associated with a recovery point, including ID, status, encryption, and lifecycle.
type nonrec t = {recoveryPointArn : ARN.t option;An ARN that uniquely identifies a recovery point; for example, arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45.
*)backupVaultName : BackupVaultName.t option;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.
*)backupVaultArn : ARN.t option;An ARN that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault.
*)sourceBackupVaultArn : ARN.t option;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.
*)resourceArn : ARN.t option;An ARN that uniquely identifies a saved resource. The format of the ARN depends on the resource type.
*)resourceType : ResourceType.t option;The type of Amazon Web Services resource to save as a recovery point; for example, an Amazon Elastic Block Store (Amazon EBS) volume or an Amazon Relational Database Service (Amazon RDS) database.
*)createdBy : RecoveryPointCreator.t option;Contains identifying information about the creation of a recovery point, including the BackupPlanArn, BackupPlanId, BackupPlanVersion, and BackupRuleId of the backup plan used to create it.
*)iamRoleArn : IAMRoleArn.t option;Specifies the IAM role ARN used to create the target recovery point; for example, arn:aws:iam::123456789012:role/S3Access.
*)status : RecoveryPointStatus.t option;A status code specifying the state of the recovery point. For more information, see Recovery point status in the Backup Developer Guide. CREATING status indicates that an Backup job has been initiated for a resource. The backup process has started and is actively processing a backup job for the associated recovery point. AVAILABLE status indicates that the backup was successfully created for the recovery point. The backup process has completed without any issues, and the recovery point is now ready for use. PARTIAL status indicates a composite recovery point has one or more nested recovery points that were not in the backup. 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.
*)statusMessage : string option;A status message explaining the status of the recovery point.
*)creationDate : string option;The date and time that a recovery point 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.
*)initiationDate : string option;The date and time when the backup job that created this recovery point was initiated, in Unix format and Coordinated Universal Time (UTC).
*)completionDate : string option;The date and time that a job to create a recovery point is completed, in Unix format and Coordinated Universal Time (UTC). The value of CompletionDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
*)backupSizeInBytes : Long.t option;The size, in bytes, of a backup.
*)calculatedLifecycle : CalculatedLifecycle.t option;A CalculatedLifecycle object containing DeleteAt and MoveToColdStorageAt timestamps.
*)lifecycle : Lifecycle.t option;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.
*)encryptionKeyArn : ARN.t option;The server-side encryption key used to protect your backups; for example, arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab.
*)isEncrypted : bool option;A Boolean value that is returned as TRUE if the specified recovery point is encrypted, or FALSE if the recovery point is not encrypted.
*)storageClass : StorageClass.t option;Specifies the storage class of the recovery point. Valid values are WARM or COLD.
*)lastRestoreTime : string option;The date and time that a recovery point was last restored, in Unix format and Coordinated Universal Time (UTC). The value of LastRestoreTime is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
*)parentRecoveryPointArn : ARN.t option;This is an ARN that uniquely identifies a parent (composite) recovery point; for example, arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45.
*)compositeMemberIdentifier : string option;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.
*)isParent : bool option;This returns the boolean value that a recovery point is a parent (composite) job.
*)resourceName : string option;The name of the resource that belongs to the specified backup.
*)vaultType : VaultType.t option;The type of vault in which the described recovery point is stored.
*)indexStatus : IndexStatus.t option;This is the current status for the backup index associated with the specified recovery point. Statuses are: PENDING | ACTIVE | FAILED | DELETING A recovery point with an index that has the status of ACTIVE can be included in a search.
*)indexStatusMessage : string option;A string in the form of a detailed message explaining the status of a backup index associated with the recovery point.
*)encryptionKeyType : EncryptionKeyType.t option;The type of encryption key used for the recovery point. Valid values are CUSTOMER_MANAGED_KMS_KEY for customer-managed keys or Amazon Web Services_OWNED_KMS_KEY for Amazon Web Services-owned keys.
*)scanResults : ScanResults.t option;Contains the latest scanning results against the recovery point and currently include MalwareScanner, ScanJobState, Findings, and LastScanTimestamp
*)}type nonrec error = [ | `InvalidParameterValueException of InvalidParameterValueException.t| `MissingParameterValueException of MissingParameterValueException.t| `ResourceNotFoundException of ResourceNotFoundException.t| `Unknown_operation_error of string * string option ]val make :
?recoveryPointArn:??? ->
?backupVaultName:??? ->
?backupVaultArn:??? ->
?sourceBackupVaultArn:??? ->
?resourceArn:??? ->
?resourceType:??? ->
?createdBy:??? ->
?iamRoleArn:??? ->
?status:??? ->
?statusMessage:??? ->
?creationDate:??? ->
?initiationDate:??? ->
?completionDate:??? ->
?backupSizeInBytes:??? ->
?calculatedLifecycle:??? ->
?lifecycle:??? ->
?encryptionKeyArn:??? ->
?isEncrypted:??? ->
?storageClass:??? ->
?lastRestoreTime:??? ->
?parentRecoveryPointArn:??? ->
?compositeMemberIdentifier:??? ->
?isParent:??? ->
?resourceName:??? ->
?vaultType:??? ->
?indexStatus:??? ->
?indexStatusMessage:??? ->
?encryptionKeyType:??? ->
?scanResults:??? ->
unit ->
tval error_of_json :
string ->
Yojson.Safe.t ->
[> `InvalidParameterValueException of InvalidParameterValueException.t
| `MissingParameterValueException of MissingParameterValueException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ServiceUnavailableException of ServiceUnavailableException.t
| `Unknown_operation_error of string * string option ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `InvalidParameterValueException of InvalidParameterValueException.t
| `MissingParameterValueException of MissingParameterValueException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ServiceUnavailableException of ServiceUnavailableException.t
| `Unknown_operation_error of string * string option ]val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of bool
| `Enum of string
| `List of
[> `Structure of
(string
* [> `Enum of string
| `List of [> `Enum of string ] list
| `Timestamp of string ])
list ]
list
| `Long of Long.t
| `String of ARN.t
| `Structure of
(string
* [> `Boolean of Boolean.t
| `Enum of string
| `Long of Long.t
| `String of string
| `Timestamp of string ])
list
| `Timestamp of string ])
list ]