/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input of a DeleteSnapshot
* operation.See Also:
AWS
* API Reference
The name of the snapshot to be deleted.
*/ inline const Aws::String& GetSnapshotName() const{ return m_snapshotName; } /** *The name of the snapshot to be deleted.
*/ inline bool SnapshotNameHasBeenSet() const { return m_snapshotNameHasBeenSet; } /** *The name of the snapshot to be deleted.
*/ inline void SetSnapshotName(const Aws::String& value) { m_snapshotNameHasBeenSet = true; m_snapshotName = value; } /** *The name of the snapshot to be deleted.
*/ inline void SetSnapshotName(Aws::String&& value) { m_snapshotNameHasBeenSet = true; m_snapshotName = std::move(value); } /** *The name of the snapshot to be deleted.
*/ inline void SetSnapshotName(const char* value) { m_snapshotNameHasBeenSet = true; m_snapshotName.assign(value); } /** *The name of the snapshot to be deleted.
*/ inline DeleteSnapshotRequest& WithSnapshotName(const Aws::String& value) { SetSnapshotName(value); return *this;} /** *The name of the snapshot to be deleted.
*/ inline DeleteSnapshotRequest& WithSnapshotName(Aws::String&& value) { SetSnapshotName(std::move(value)); return *this;} /** *The name of the snapshot to be deleted.
*/ inline DeleteSnapshotRequest& WithSnapshotName(const char* value) { SetSnapshotName(value); return *this;} private: Aws::String m_snapshotName; bool m_snapshotNameHasBeenSet = false; }; } // namespace Model } // namespace ElastiCache } // namespace Aws