/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the inputs for the DeleteSnapshot operation.See
* Also:
AWS
* API Reference
The identifier of the directory snapshot to be deleted.
*/ inline const Aws::String& GetSnapshotId() const{ return m_snapshotId; } /** *The identifier of the directory snapshot to be deleted.
*/ inline bool SnapshotIdHasBeenSet() const { return m_snapshotIdHasBeenSet; } /** *The identifier of the directory snapshot to be deleted.
*/ inline void SetSnapshotId(const Aws::String& value) { m_snapshotIdHasBeenSet = true; m_snapshotId = value; } /** *The identifier of the directory snapshot to be deleted.
*/ inline void SetSnapshotId(Aws::String&& value) { m_snapshotIdHasBeenSet = true; m_snapshotId = std::move(value); } /** *The identifier of the directory snapshot to be deleted.
*/ inline void SetSnapshotId(const char* value) { m_snapshotIdHasBeenSet = true; m_snapshotId.assign(value); } /** *The identifier of the directory snapshot to be deleted.
*/ inline DeleteSnapshotRequest& WithSnapshotId(const Aws::String& value) { SetSnapshotId(value); return *this;} /** *The identifier of the directory snapshot to be deleted.
*/ inline DeleteSnapshotRequest& WithSnapshotId(Aws::String&& value) { SetSnapshotId(std::move(value)); return *this;} /** *The identifier of the directory snapshot to be deleted.
*/ inline DeleteSnapshotRequest& WithSnapshotId(const char* value) { SetSnapshotId(value); return *this;} private: Aws::String m_snapshotId; bool m_snapshotIdHasBeenSet = false; }; } // namespace Model } // namespace DirectoryService } // namespace Aws