/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Backup { namespace Model { class CreateBackupSelectionResult { public: AWS_BACKUP_API CreateBackupSelectionResult(); AWS_BACKUP_API CreateBackupSelectionResult(const Aws::AmazonWebServiceResult& result); AWS_BACKUP_API CreateBackupSelectionResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Uniquely identifies the body of a request to assign a set of resources to a * backup plan.

*/ inline const Aws::String& GetSelectionId() const{ return m_selectionId; } /** *

Uniquely identifies the body of a request to assign a set of resources to a * backup plan.

*/ inline void SetSelectionId(const Aws::String& value) { m_selectionId = value; } /** *

Uniquely identifies the body of a request to assign a set of resources to a * backup plan.

*/ inline void SetSelectionId(Aws::String&& value) { m_selectionId = std::move(value); } /** *

Uniquely identifies the body of a request to assign a set of resources to a * backup plan.

*/ inline void SetSelectionId(const char* value) { m_selectionId.assign(value); } /** *

Uniquely identifies the body of a request to assign a set of resources to a * backup plan.

*/ inline CreateBackupSelectionResult& WithSelectionId(const Aws::String& value) { SetSelectionId(value); return *this;} /** *

Uniquely identifies the body of a request to assign a set of resources to a * backup plan.

*/ inline CreateBackupSelectionResult& WithSelectionId(Aws::String&& value) { SetSelectionId(std::move(value)); return *this;} /** *

Uniquely identifies the body of a request to assign a set of resources to a * backup plan.

*/ inline CreateBackupSelectionResult& WithSelectionId(const char* value) { SetSelectionId(value); return *this;} /** *

Uniquely identifies a backup plan.

*/ inline const Aws::String& GetBackupPlanId() const{ return m_backupPlanId; } /** *

Uniquely identifies a backup plan.

*/ inline void SetBackupPlanId(const Aws::String& value) { m_backupPlanId = value; } /** *

Uniquely identifies a backup plan.

*/ inline void SetBackupPlanId(Aws::String&& value) { m_backupPlanId = std::move(value); } /** *

Uniquely identifies a backup plan.

*/ inline void SetBackupPlanId(const char* value) { m_backupPlanId.assign(value); } /** *

Uniquely identifies a backup plan.

*/ inline CreateBackupSelectionResult& WithBackupPlanId(const Aws::String& value) { SetBackupPlanId(value); return *this;} /** *

Uniquely identifies a backup plan.

*/ inline CreateBackupSelectionResult& WithBackupPlanId(Aws::String&& value) { SetBackupPlanId(std::move(value)); return *this;} /** *

Uniquely identifies a backup plan.

*/ inline CreateBackupSelectionResult& WithBackupPlanId(const char* value) { SetBackupPlanId(value); return *this;} /** *

The date and time a backup selection 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.

*/ inline const Aws::Utils::DateTime& GetCreationDate() const{ return m_creationDate; } /** *

The date and time a backup selection 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.

*/ inline void SetCreationDate(const Aws::Utils::DateTime& value) { m_creationDate = value; } /** *

The date and time a backup selection 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.

*/ inline void SetCreationDate(Aws::Utils::DateTime&& value) { m_creationDate = std::move(value); } /** *

The date and time a backup selection 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.

*/ inline CreateBackupSelectionResult& WithCreationDate(const Aws::Utils::DateTime& value) { SetCreationDate(value); return *this;} /** *

The date and time a backup selection 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.

*/ inline CreateBackupSelectionResult& WithCreationDate(Aws::Utils::DateTime&& value) { SetCreationDate(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline CreateBackupSelectionResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateBackupSelectionResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateBackupSelectionResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_selectionId; Aws::String m_backupPlanId; Aws::Utils::DateTime m_creationDate; Aws::String m_requestId; }; } // namespace Model } // namespace Backup } // namespace Aws