/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Backup { namespace Model { /** */ class GetBackupPlanFromJSONRequest : public BackupRequest { public: AWS_BACKUP_API GetBackupPlanFromJSONRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "GetBackupPlanFromJSON"; } AWS_BACKUP_API Aws::String SerializePayload() const override; /** *

A customer-supplied backup plan document in JSON format.

*/ inline const Aws::String& GetBackupPlanTemplateJson() const{ return m_backupPlanTemplateJson; } /** *

A customer-supplied backup plan document in JSON format.

*/ inline bool BackupPlanTemplateJsonHasBeenSet() const { return m_backupPlanTemplateJsonHasBeenSet; } /** *

A customer-supplied backup plan document in JSON format.

*/ inline void SetBackupPlanTemplateJson(const Aws::String& value) { m_backupPlanTemplateJsonHasBeenSet = true; m_backupPlanTemplateJson = value; } /** *

A customer-supplied backup plan document in JSON format.

*/ inline void SetBackupPlanTemplateJson(Aws::String&& value) { m_backupPlanTemplateJsonHasBeenSet = true; m_backupPlanTemplateJson = std::move(value); } /** *

A customer-supplied backup plan document in JSON format.

*/ inline void SetBackupPlanTemplateJson(const char* value) { m_backupPlanTemplateJsonHasBeenSet = true; m_backupPlanTemplateJson.assign(value); } /** *

A customer-supplied backup plan document in JSON format.

*/ inline GetBackupPlanFromJSONRequest& WithBackupPlanTemplateJson(const Aws::String& value) { SetBackupPlanTemplateJson(value); return *this;} /** *

A customer-supplied backup plan document in JSON format.

*/ inline GetBackupPlanFromJSONRequest& WithBackupPlanTemplateJson(Aws::String&& value) { SetBackupPlanTemplateJson(std::move(value)); return *this;} /** *

A customer-supplied backup plan document in JSON format.

*/ inline GetBackupPlanFromJSONRequest& WithBackupPlanTemplateJson(const char* value) { SetBackupPlanTemplateJson(value); return *this;} private: Aws::String m_backupPlanTemplateJson; bool m_backupPlanTemplateJsonHasBeenSet = false; }; } // namespace Model } // namespace Backup } // namespace Aws