/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/backup/Backup_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <aws/core/utils/DateTime.h> #include <aws/backup/model/RecoveryPointStatus.h> #include <utility> namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Backup { namespace Model { /** * <p>Contains detailed information about a saved recovery point.</p><p><h3>See * Also:</h3> <a * href="http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/RecoveryPointByResource">AWS * API Reference</a></p> */ class RecoveryPointByResource { public: AWS_BACKUP_API RecoveryPointByResource(); AWS_BACKUP_API RecoveryPointByResource(Aws::Utils::Json::JsonView jsonValue); AWS_BACKUP_API RecoveryPointByResource& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_BACKUP_API Aws::Utils::Json::JsonValue Jsonize() const; /** * <p>An Amazon Resource Name (ARN) that uniquely identifies a recovery point; for * example, * <code>arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45</code>.</p> */ inline const Aws::String& GetRecoveryPointArn() const{ return m_recoveryPointArn; } /** * <p>An Amazon Resource Name (ARN) that uniquely identifies a recovery point; for * example, * <code>arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45</code>.</p> */ inline bool RecoveryPointArnHasBeenSet() const { return m_recoveryPointArnHasBeenSet; } /** * <p>An Amazon Resource Name (ARN) that uniquely identifies a recovery point; for * example, * <code>arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45</code>.</p> */ inline void SetRecoveryPointArn(const Aws::String& value) { m_recoveryPointArnHasBeenSet = true; m_recoveryPointArn = value; } /** * <p>An Amazon Resource Name (ARN) that uniquely identifies a recovery point; for * example, * <code>arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45</code>.</p> */ inline void SetRecoveryPointArn(Aws::String&& value) { m_recoveryPointArnHasBeenSet = true; m_recoveryPointArn = std::move(value); } /** * <p>An Amazon Resource Name (ARN) that uniquely identifies a recovery point; for * example, * <code>arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45</code>.</p> */ inline void SetRecoveryPointArn(const char* value) { m_recoveryPointArnHasBeenSet = true; m_recoveryPointArn.assign(value); } /** * <p>An Amazon Resource Name (ARN) that uniquely identifies a recovery point; for * example, * <code>arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45</code>.</p> */ inline RecoveryPointByResource& WithRecoveryPointArn(const Aws::String& value) { SetRecoveryPointArn(value); return *this;} /** * <p>An Amazon Resource Name (ARN) that uniquely identifies a recovery point; for * example, * <code>arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45</code>.</p> */ inline RecoveryPointByResource& WithRecoveryPointArn(Aws::String&& value) { SetRecoveryPointArn(std::move(value)); return *this;} /** * <p>An Amazon Resource Name (ARN) that uniquely identifies a recovery point; for * example, * <code>arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45</code>.</p> */ inline RecoveryPointByResource& WithRecoveryPointArn(const char* value) { SetRecoveryPointArn(value); return *this;} /** * <p>The date and time a recovery point is created, in Unix format and Coordinated * Universal Time (UTC). The value of <code>CreationDate</code> is accurate to * milliseconds. For example, the value 1516925490.087 represents Friday, January * 26, 2018 12:11:30.087 AM.</p> */ inline const Aws::Utils::DateTime& GetCreationDate() const{ return m_creationDate; } /** * <p>The date and time a recovery point is created, in Unix format and Coordinated * Universal Time (UTC). The value of <code>CreationDate</code> is accurate to * milliseconds. For example, the value 1516925490.087 represents Friday, January * 26, 2018 12:11:30.087 AM.</p> */ inline bool CreationDateHasBeenSet() const { return m_creationDateHasBeenSet; } /** * <p>The date and time a recovery point is created, in Unix format and Coordinated * Universal Time (UTC). The value of <code>CreationDate</code> is accurate to * milliseconds. For example, the value 1516925490.087 represents Friday, January * 26, 2018 12:11:30.087 AM.</p> */ inline void SetCreationDate(const Aws::Utils::DateTime& value) { m_creationDateHasBeenSet = true; m_creationDate = value; } /** * <p>The date and time a recovery point is created, in Unix format and Coordinated * Universal Time (UTC). The value of <code>CreationDate</code> is accurate to * milliseconds. For example, the value 1516925490.087 represents Friday, January * 26, 2018 12:11:30.087 AM.</p> */ inline void SetCreationDate(Aws::Utils::DateTime&& value) { m_creationDateHasBeenSet = true; m_creationDate = std::move(value); } /** * <p>The date and time a recovery point is created, in Unix format and Coordinated * Universal Time (UTC). The value of <code>CreationDate</code> is accurate to * milliseconds. For example, the value 1516925490.087 represents Friday, January * 26, 2018 12:11:30.087 AM.</p> */ inline RecoveryPointByResource& WithCreationDate(const Aws::Utils::DateTime& value) { SetCreationDate(value); return *this;} /** * <p>The date and time a recovery point is created, in Unix format and Coordinated * Universal Time (UTC). The value of <code>CreationDate</code> is accurate to * milliseconds. For example, the value 1516925490.087 represents Friday, January * 26, 2018 12:11:30.087 AM.</p> */ inline RecoveryPointByResource& WithCreationDate(Aws::Utils::DateTime&& value) { SetCreationDate(std::move(value)); return *this;} /** * <p>A status code specifying the state of the recovery point.</p> */ inline const RecoveryPointStatus& GetStatus() const{ return m_status; } /** * <p>A status code specifying the state of the recovery point.</p> */ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** * <p>A status code specifying the state of the recovery point.</p> */ inline void SetStatus(const RecoveryPointStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** * <p>A status code specifying the state of the recovery point.</p> */ inline void SetStatus(RecoveryPointStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** * <p>A status code specifying the state of the recovery point.</p> */ inline RecoveryPointByResource& WithStatus(const RecoveryPointStatus& value) { SetStatus(value); return *this;} /** * <p>A status code specifying the state of the recovery point.</p> */ inline RecoveryPointByResource& WithStatus(RecoveryPointStatus&& value) { SetStatus(std::move(value)); return *this;} /** * <p>A message explaining the reason of the recovery point deletion failure.</p> */ inline const Aws::String& GetStatusMessage() const{ return m_statusMessage; } /** * <p>A message explaining the reason of the recovery point deletion failure.</p> */ inline bool StatusMessageHasBeenSet() const { return m_statusMessageHasBeenSet; } /** * <p>A message explaining the reason of the recovery point deletion failure.</p> */ inline void SetStatusMessage(const Aws::String& value) { m_statusMessageHasBeenSet = true; m_statusMessage = value; } /** * <p>A message explaining the reason of the recovery point deletion failure.</p> */ inline void SetStatusMessage(Aws::String&& value) { m_statusMessageHasBeenSet = true; m_statusMessage = std::move(value); } /** * <p>A message explaining the reason of the recovery point deletion failure.</p> */ inline void SetStatusMessage(const char* value) { m_statusMessageHasBeenSet = true; m_statusMessage.assign(value); } /** * <p>A message explaining the reason of the recovery point deletion failure.</p> */ inline RecoveryPointByResource& WithStatusMessage(const Aws::String& value) { SetStatusMessage(value); return *this;} /** * <p>A message explaining the reason of the recovery point deletion failure.</p> */ inline RecoveryPointByResource& WithStatusMessage(Aws::String&& value) { SetStatusMessage(std::move(value)); return *this;} /** * <p>A message explaining the reason of the recovery point deletion failure.</p> */ inline RecoveryPointByResource& WithStatusMessage(const char* value) { SetStatusMessage(value); return *this;} /** * <p>The server-side encryption key that is used to protect your backups; for * example, * <code>arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>.</p> */ inline const Aws::String& GetEncryptionKeyArn() const{ return m_encryptionKeyArn; } /** * <p>The server-side encryption key that is used to protect your backups; for * example, * <code>arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>.</p> */ inline bool EncryptionKeyArnHasBeenSet() const { return m_encryptionKeyArnHasBeenSet; } /** * <p>The server-side encryption key that is used to protect your backups; for * example, * <code>arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>.</p> */ inline void SetEncryptionKeyArn(const Aws::String& value) { m_encryptionKeyArnHasBeenSet = true; m_encryptionKeyArn = value; } /** * <p>The server-side encryption key that is used to protect your backups; for * example, * <code>arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>.</p> */ inline void SetEncryptionKeyArn(Aws::String&& value) { m_encryptionKeyArnHasBeenSet = true; m_encryptionKeyArn = std::move(value); } /** * <p>The server-side encryption key that is used to protect your backups; for * example, * <code>arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>.</p> */ inline void SetEncryptionKeyArn(const char* value) { m_encryptionKeyArnHasBeenSet = true; m_encryptionKeyArn.assign(value); } /** * <p>The server-side encryption key that is used to protect your backups; for * example, * <code>arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>.</p> */ inline RecoveryPointByResource& WithEncryptionKeyArn(const Aws::String& value) { SetEncryptionKeyArn(value); return *this;} /** * <p>The server-side encryption key that is used to protect your backups; for * example, * <code>arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>.</p> */ inline RecoveryPointByResource& WithEncryptionKeyArn(Aws::String&& value) { SetEncryptionKeyArn(std::move(value)); return *this;} /** * <p>The server-side encryption key that is used to protect your backups; for * example, * <code>arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>.</p> */ inline RecoveryPointByResource& WithEncryptionKeyArn(const char* value) { SetEncryptionKeyArn(value); return *this;} /** * <p>The size, in bytes, of a backup.</p> */ inline long long GetBackupSizeBytes() const{ return m_backupSizeBytes; } /** * <p>The size, in bytes, of a backup.</p> */ inline bool BackupSizeBytesHasBeenSet() const { return m_backupSizeBytesHasBeenSet; } /** * <p>The size, in bytes, of a backup.</p> */ inline void SetBackupSizeBytes(long long value) { m_backupSizeBytesHasBeenSet = true; m_backupSizeBytes = value; } /** * <p>The size, in bytes, of a backup.</p> */ inline RecoveryPointByResource& WithBackupSizeBytes(long long value) { SetBackupSizeBytes(value); return *this;} /** * <p>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. They consist of lowercase * letters, numbers, and hyphens.</p> */ inline const Aws::String& GetBackupVaultName() const{ return m_backupVaultName; } /** * <p>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. They consist of lowercase * letters, numbers, and hyphens.</p> */ inline bool BackupVaultNameHasBeenSet() const { return m_backupVaultNameHasBeenSet; } /** * <p>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. They consist of lowercase * letters, numbers, and hyphens.</p> */ inline void SetBackupVaultName(const Aws::String& value) { m_backupVaultNameHasBeenSet = true; m_backupVaultName = value; } /** * <p>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. They consist of lowercase * letters, numbers, and hyphens.</p> */ inline void SetBackupVaultName(Aws::String&& value) { m_backupVaultNameHasBeenSet = true; m_backupVaultName = std::move(value); } /** * <p>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. They consist of lowercase * letters, numbers, and hyphens.</p> */ inline void SetBackupVaultName(const char* value) { m_backupVaultNameHasBeenSet = true; m_backupVaultName.assign(value); } /** * <p>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. They consist of lowercase * letters, numbers, and hyphens.</p> */ inline RecoveryPointByResource& WithBackupVaultName(const Aws::String& value) { SetBackupVaultName(value); return *this;} /** * <p>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. They consist of lowercase * letters, numbers, and hyphens.</p> */ inline RecoveryPointByResource& WithBackupVaultName(Aws::String&& value) { SetBackupVaultName(std::move(value)); return *this;} /** * <p>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. They consist of lowercase * letters, numbers, and hyphens.</p> */ inline RecoveryPointByResource& WithBackupVaultName(const char* value) { SetBackupVaultName(value); return *this;} /** * <p>This is a boolean value indicating this is a parent (composite) recovery * point.</p> */ inline bool GetIsParent() const{ return m_isParent; } /** * <p>This is a boolean value indicating this is a parent (composite) recovery * point.</p> */ inline bool IsParentHasBeenSet() const { return m_isParentHasBeenSet; } /** * <p>This is a boolean value indicating this is a parent (composite) recovery * point.</p> */ inline void SetIsParent(bool value) { m_isParentHasBeenSet = true; m_isParent = value; } /** * <p>This is a boolean value indicating this is a parent (composite) recovery * point.</p> */ inline RecoveryPointByResource& WithIsParent(bool value) { SetIsParent(value); return *this;} /** * <p>This is the Amazon Resource Name (ARN) of the parent (composite) recovery * point.</p> */ inline const Aws::String& GetParentRecoveryPointArn() const{ return m_parentRecoveryPointArn; } /** * <p>This is the Amazon Resource Name (ARN) of the parent (composite) recovery * point.</p> */ inline bool ParentRecoveryPointArnHasBeenSet() const { return m_parentRecoveryPointArnHasBeenSet; } /** * <p>This is the Amazon Resource Name (ARN) of the parent (composite) recovery * point.</p> */ inline void SetParentRecoveryPointArn(const Aws::String& value) { m_parentRecoveryPointArnHasBeenSet = true; m_parentRecoveryPointArn = value; } /** * <p>This is the Amazon Resource Name (ARN) of the parent (composite) recovery * point.</p> */ inline void SetParentRecoveryPointArn(Aws::String&& value) { m_parentRecoveryPointArnHasBeenSet = true; m_parentRecoveryPointArn = std::move(value); } /** * <p>This is the Amazon Resource Name (ARN) of the parent (composite) recovery * point.</p> */ inline void SetParentRecoveryPointArn(const char* value) { m_parentRecoveryPointArnHasBeenSet = true; m_parentRecoveryPointArn.assign(value); } /** * <p>This is the Amazon Resource Name (ARN) of the parent (composite) recovery * point.</p> */ inline RecoveryPointByResource& WithParentRecoveryPointArn(const Aws::String& value) { SetParentRecoveryPointArn(value); return *this;} /** * <p>This is the Amazon Resource Name (ARN) of the parent (composite) recovery * point.</p> */ inline RecoveryPointByResource& WithParentRecoveryPointArn(Aws::String&& value) { SetParentRecoveryPointArn(std::move(value)); return *this;} /** * <p>This is the Amazon Resource Name (ARN) of the parent (composite) recovery * point.</p> */ inline RecoveryPointByResource& WithParentRecoveryPointArn(const char* value) { SetParentRecoveryPointArn(value); return *this;} /** * <p>This is the non-unique name of the resource that belongs to the specified * backup.</p> */ inline const Aws::String& GetResourceName() const{ return m_resourceName; } /** * <p>This is the non-unique name of the resource that belongs to the specified * backup.</p> */ inline bool ResourceNameHasBeenSet() const { return m_resourceNameHasBeenSet; } /** * <p>This is the non-unique name of the resource that belongs to the specified * backup.</p> */ inline void SetResourceName(const Aws::String& value) { m_resourceNameHasBeenSet = true; m_resourceName = value; } /** * <p>This is the non-unique name of the resource that belongs to the specified * backup.</p> */ inline void SetResourceName(Aws::String&& value) { m_resourceNameHasBeenSet = true; m_resourceName = std::move(value); } /** * <p>This is the non-unique name of the resource that belongs to the specified * backup.</p> */ inline void SetResourceName(const char* value) { m_resourceNameHasBeenSet = true; m_resourceName.assign(value); } /** * <p>This is the non-unique name of the resource that belongs to the specified * backup.</p> */ inline RecoveryPointByResource& WithResourceName(const Aws::String& value) { SetResourceName(value); return *this;} /** * <p>This is the non-unique name of the resource that belongs to the specified * backup.</p> */ inline RecoveryPointByResource& WithResourceName(Aws::String&& value) { SetResourceName(std::move(value)); return *this;} /** * <p>This is the non-unique name of the resource that belongs to the specified * backup.</p> */ inline RecoveryPointByResource& WithResourceName(const char* value) { SetResourceName(value); return *this;} private: Aws::String m_recoveryPointArn; bool m_recoveryPointArnHasBeenSet = false; Aws::Utils::DateTime m_creationDate; bool m_creationDateHasBeenSet = false; RecoveryPointStatus m_status; bool m_statusHasBeenSet = false; Aws::String m_statusMessage; bool m_statusMessageHasBeenSet = false; Aws::String m_encryptionKeyArn; bool m_encryptionKeyArnHasBeenSet = false; long long m_backupSizeBytes; bool m_backupSizeBytesHasBeenSet = false; Aws::String m_backupVaultName; bool m_backupVaultNameHasBeenSet = false; bool m_isParent; bool m_isParentHasBeenSet = false; Aws::String m_parentRecoveryPointArn; bool m_parentRecoveryPointArnHasBeenSet = false; Aws::String m_resourceName; bool m_resourceNameHasBeenSet = false; }; } // namespace Model } // namespace Backup } // namespace Aws