/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include This is a recovery point which is a child (nested) recovery point of a parent
* (composite) recovery point. These recovery points can be disassociated from
* their parent (composite) recovery point, in which case they will no longer be a
* member.See Also:
AWS
* API Reference
This is the Amazon Resource Name (ARN) of the parent (composite) recovery * point.
*/ inline const Aws::String& GetRecoveryPointArn() const{ return m_recoveryPointArn; } /** *This is the Amazon Resource Name (ARN) of the parent (composite) recovery * point.
*/ inline bool RecoveryPointArnHasBeenSet() const { return m_recoveryPointArnHasBeenSet; } /** *This is the Amazon Resource Name (ARN) of the parent (composite) recovery * point.
*/ inline void SetRecoveryPointArn(const Aws::String& value) { m_recoveryPointArnHasBeenSet = true; m_recoveryPointArn = value; } /** *This is the Amazon Resource Name (ARN) of the parent (composite) recovery * point.
*/ inline void SetRecoveryPointArn(Aws::String&& value) { m_recoveryPointArnHasBeenSet = true; m_recoveryPointArn = std::move(value); } /** *This is the Amazon Resource Name (ARN) of the parent (composite) recovery * point.
*/ inline void SetRecoveryPointArn(const char* value) { m_recoveryPointArnHasBeenSet = true; m_recoveryPointArn.assign(value); } /** *This is the Amazon Resource Name (ARN) of the parent (composite) recovery * point.
*/ inline RecoveryPointMember& WithRecoveryPointArn(const Aws::String& value) { SetRecoveryPointArn(value); return *this;} /** *This is the Amazon Resource Name (ARN) of the parent (composite) recovery * point.
*/ inline RecoveryPointMember& WithRecoveryPointArn(Aws::String&& value) { SetRecoveryPointArn(std::move(value)); return *this;} /** *This is the Amazon Resource Name (ARN) of the parent (composite) recovery * point.
*/ inline RecoveryPointMember& WithRecoveryPointArn(const char* value) { SetRecoveryPointArn(value); return *this;} /** *This is the Amazon Resource Name (ARN) that uniquely identifies a saved * resource.
*/ inline const Aws::String& GetResourceArn() const{ return m_resourceArn; } /** *This is the Amazon Resource Name (ARN) that uniquely identifies a saved * resource.
*/ inline bool ResourceArnHasBeenSet() const { return m_resourceArnHasBeenSet; } /** *This is the Amazon Resource Name (ARN) that uniquely identifies a saved * resource.
*/ inline void SetResourceArn(const Aws::String& value) { m_resourceArnHasBeenSet = true; m_resourceArn = value; } /** *This is the Amazon Resource Name (ARN) that uniquely identifies a saved * resource.
*/ inline void SetResourceArn(Aws::String&& value) { m_resourceArnHasBeenSet = true; m_resourceArn = std::move(value); } /** *This is the Amazon Resource Name (ARN) that uniquely identifies a saved * resource.
*/ inline void SetResourceArn(const char* value) { m_resourceArnHasBeenSet = true; m_resourceArn.assign(value); } /** *This is the Amazon Resource Name (ARN) that uniquely identifies a saved * resource.
*/ inline RecoveryPointMember& WithResourceArn(const Aws::String& value) { SetResourceArn(value); return *this;} /** *This is the Amazon Resource Name (ARN) that uniquely identifies a saved * resource.
*/ inline RecoveryPointMember& WithResourceArn(Aws::String&& value) { SetResourceArn(std::move(value)); return *this;} /** *This is the Amazon Resource Name (ARN) that uniquely identifies a saved * resource.
*/ inline RecoveryPointMember& WithResourceArn(const char* value) { SetResourceArn(value); return *this;} /** *This is the Amazon Web Services resource type that is saved as a recovery * point.
*/ inline const Aws::String& GetResourceType() const{ return m_resourceType; } /** *This is the Amazon Web Services resource type that is saved as a recovery * point.
*/ inline bool ResourceTypeHasBeenSet() const { return m_resourceTypeHasBeenSet; } /** *This is the Amazon Web Services resource type that is saved as a recovery * point.
*/ inline void SetResourceType(const Aws::String& value) { m_resourceTypeHasBeenSet = true; m_resourceType = value; } /** *This is the Amazon Web Services resource type that is saved as a recovery * point.
*/ inline void SetResourceType(Aws::String&& value) { m_resourceTypeHasBeenSet = true; m_resourceType = std::move(value); } /** *This is the Amazon Web Services resource type that is saved as a recovery * point.
*/ inline void SetResourceType(const char* value) { m_resourceTypeHasBeenSet = true; m_resourceType.assign(value); } /** *This is the Amazon Web Services resource type that is saved as a recovery * point.
*/ inline RecoveryPointMember& WithResourceType(const Aws::String& value) { SetResourceType(value); return *this;} /** *This is the Amazon Web Services resource type that is saved as a recovery * point.
*/ inline RecoveryPointMember& WithResourceType(Aws::String&& value) { SetResourceType(std::move(value)); return *this;} /** *This is the Amazon Web Services resource type that is saved as a recovery * point.
*/ inline RecoveryPointMember& WithResourceType(const char* value) { SetResourceType(value); return *this;} /** *This is the name of the backup vault (the logical container in which backups * are stored).
*/ inline const Aws::String& GetBackupVaultName() const{ return m_backupVaultName; } /** *This is the name of the backup vault (the logical container in which backups * are stored).
*/ inline bool BackupVaultNameHasBeenSet() const { return m_backupVaultNameHasBeenSet; } /** *This is the name of the backup vault (the logical container in which backups * are stored).
*/ inline void SetBackupVaultName(const Aws::String& value) { m_backupVaultNameHasBeenSet = true; m_backupVaultName = value; } /** *This is the name of the backup vault (the logical container in which backups * are stored).
*/ inline void SetBackupVaultName(Aws::String&& value) { m_backupVaultNameHasBeenSet = true; m_backupVaultName = std::move(value); } /** *This is the name of the backup vault (the logical container in which backups * are stored).
*/ inline void SetBackupVaultName(const char* value) { m_backupVaultNameHasBeenSet = true; m_backupVaultName.assign(value); } /** *This is the name of the backup vault (the logical container in which backups * are stored).
*/ inline RecoveryPointMember& WithBackupVaultName(const Aws::String& value) { SetBackupVaultName(value); return *this;} /** *This is the name of the backup vault (the logical container in which backups * are stored).
*/ inline RecoveryPointMember& WithBackupVaultName(Aws::String&& value) { SetBackupVaultName(std::move(value)); return *this;} /** *This is the name of the backup vault (the logical container in which backups * are stored).
*/ inline RecoveryPointMember& WithBackupVaultName(const char* value) { SetBackupVaultName(value); return *this;} private: Aws::String m_recoveryPointArn; bool m_recoveryPointArnHasBeenSet = false; Aws::String m_resourceArn; bool m_resourceArnHasBeenSet = false; Aws::String m_resourceType; bool m_resourceTypeHasBeenSet = false; Aws::String m_backupVaultName; bool m_backupVaultNameHasBeenSet = false; }; } // namespace Model } // namespace Backup } // namespace Aws