This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-redshift/include/aws/redshift/model/DeleteSnapshotScheduleRequest.h

88 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/redshift/Redshift_EXPORTS.h>
#include <aws/redshift/RedshiftRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Redshift
{
namespace Model
{
/**
*/
class AWS_REDSHIFT_API DeleteSnapshotScheduleRequest : public RedshiftRequest
{
public:
DeleteSnapshotScheduleRequest();
// 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 "DeleteSnapshotSchedule"; }
Aws::String SerializePayload() const override;
protected:
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
public:
/**
* <p>A unique identifier of the snapshot schedule to delete.</p>
*/
inline const Aws::String& GetScheduleIdentifier() const{ return m_scheduleIdentifier; }
/**
* <p>A unique identifier of the snapshot schedule to delete.</p>
*/
inline bool ScheduleIdentifierHasBeenSet() const { return m_scheduleIdentifierHasBeenSet; }
/**
* <p>A unique identifier of the snapshot schedule to delete.</p>
*/
inline void SetScheduleIdentifier(const Aws::String& value) { m_scheduleIdentifierHasBeenSet = true; m_scheduleIdentifier = value; }
/**
* <p>A unique identifier of the snapshot schedule to delete.</p>
*/
inline void SetScheduleIdentifier(Aws::String&& value) { m_scheduleIdentifierHasBeenSet = true; m_scheduleIdentifier = std::move(value); }
/**
* <p>A unique identifier of the snapshot schedule to delete.</p>
*/
inline void SetScheduleIdentifier(const char* value) { m_scheduleIdentifierHasBeenSet = true; m_scheduleIdentifier.assign(value); }
/**
* <p>A unique identifier of the snapshot schedule to delete.</p>
*/
inline DeleteSnapshotScheduleRequest& WithScheduleIdentifier(const Aws::String& value) { SetScheduleIdentifier(value); return *this;}
/**
* <p>A unique identifier of the snapshot schedule to delete.</p>
*/
inline DeleteSnapshotScheduleRequest& WithScheduleIdentifier(Aws::String&& value) { SetScheduleIdentifier(std::move(value)); return *this;}
/**
* <p>A unique identifier of the snapshot schedule to delete.</p>
*/
inline DeleteSnapshotScheduleRequest& WithScheduleIdentifier(const char* value) { SetScheduleIdentifier(value); return *this;}
private:
Aws::String m_scheduleIdentifier;
bool m_scheduleIdentifierHasBeenSet;
};
} // namespace Model
} // namespace Redshift
} // namespace Aws