84 lines
2.9 KiB
C
84 lines
2.9 KiB
C
|
|
/**
|
|||
|
|
* 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/backup/BackupRequest.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Backup
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
*/
|
|||
|
|
class AWS_BACKUP_API GetBackupPlanFromJSONRequest : public BackupRequest
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
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::String SerializePayload() const override;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A customer-supplied backup plan document in JSON format.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetBackupPlanTemplateJson() const{ return m_backupPlanTemplateJson; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A customer-supplied backup plan document in JSON format.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool BackupPlanTemplateJsonHasBeenSet() const { return m_backupPlanTemplateJsonHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A customer-supplied backup plan document in JSON format.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetBackupPlanTemplateJson(const Aws::String& value) { m_backupPlanTemplateJsonHasBeenSet = true; m_backupPlanTemplateJson = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A customer-supplied backup plan document in JSON format.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetBackupPlanTemplateJson(Aws::String&& value) { m_backupPlanTemplateJsonHasBeenSet = true; m_backupPlanTemplateJson = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A customer-supplied backup plan document in JSON format.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetBackupPlanTemplateJson(const char* value) { m_backupPlanTemplateJsonHasBeenSet = true; m_backupPlanTemplateJson.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A customer-supplied backup plan document in JSON format.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetBackupPlanFromJSONRequest& WithBackupPlanTemplateJson(const Aws::String& value) { SetBackupPlanTemplateJson(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A customer-supplied backup plan document in JSON format.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetBackupPlanFromJSONRequest& WithBackupPlanTemplateJson(Aws::String&& value) { SetBackupPlanTemplateJson(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A customer-supplied backup plan document in JSON format.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetBackupPlanFromJSONRequest& WithBackupPlanTemplateJson(const char* value) { SetBackupPlanTemplateJson(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_backupPlanTemplateJson;
|
|||
|
|
bool m_backupPlanTemplateJsonHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Backup
|
|||
|
|
} // namespace Aws
|