92 lines
2.8 KiB
C++
92 lines
2.8 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/elasticache/ElastiCache_EXPORTS.h>
|
|
#include <aws/elasticache/ElastiCacheRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace ElastiCache
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Represents the input of a <code>DeleteSnapshot</code>
|
|
* operation.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteSnapshotMessage">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_ELASTICACHE_API DeleteSnapshotRequest : public ElastiCacheRequest
|
|
{
|
|
public:
|
|
DeleteSnapshotRequest();
|
|
|
|
// 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 "DeleteSnapshot"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
protected:
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|
|
|
public:
|
|
|
|
/**
|
|
* <p>The name of the snapshot to be deleted.</p>
|
|
*/
|
|
inline const Aws::String& GetSnapshotName() const{ return m_snapshotName; }
|
|
|
|
/**
|
|
* <p>The name of the snapshot to be deleted.</p>
|
|
*/
|
|
inline bool SnapshotNameHasBeenSet() const { return m_snapshotNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the snapshot to be deleted.</p>
|
|
*/
|
|
inline void SetSnapshotName(const Aws::String& value) { m_snapshotNameHasBeenSet = true; m_snapshotName = value; }
|
|
|
|
/**
|
|
* <p>The name of the snapshot to be deleted.</p>
|
|
*/
|
|
inline void SetSnapshotName(Aws::String&& value) { m_snapshotNameHasBeenSet = true; m_snapshotName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the snapshot to be deleted.</p>
|
|
*/
|
|
inline void SetSnapshotName(const char* value) { m_snapshotNameHasBeenSet = true; m_snapshotName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the snapshot to be deleted.</p>
|
|
*/
|
|
inline DeleteSnapshotRequest& WithSnapshotName(const Aws::String& value) { SetSnapshotName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the snapshot to be deleted.</p>
|
|
*/
|
|
inline DeleteSnapshotRequest& WithSnapshotName(Aws::String&& value) { SetSnapshotName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the snapshot to be deleted.</p>
|
|
*/
|
|
inline DeleteSnapshotRequest& WithSnapshotName(const char* value) { SetSnapshotName(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_snapshotName;
|
|
bool m_snapshotNameHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace ElastiCache
|
|
} // namespace Aws
|