/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the information used to stop a WorkSpace.See Also:
* AWS
* API Reference
The identifier of the WorkSpace.
*/ inline const Aws::String& GetWorkspaceId() const{ return m_workspaceId; } /** *The identifier of the WorkSpace.
*/ inline bool WorkspaceIdHasBeenSet() const { return m_workspaceIdHasBeenSet; } /** *The identifier of the WorkSpace.
*/ inline void SetWorkspaceId(const Aws::String& value) { m_workspaceIdHasBeenSet = true; m_workspaceId = value; } /** *The identifier of the WorkSpace.
*/ inline void SetWorkspaceId(Aws::String&& value) { m_workspaceIdHasBeenSet = true; m_workspaceId = std::move(value); } /** *The identifier of the WorkSpace.
*/ inline void SetWorkspaceId(const char* value) { m_workspaceIdHasBeenSet = true; m_workspaceId.assign(value); } /** *The identifier of the WorkSpace.
*/ inline StopRequest& WithWorkspaceId(const Aws::String& value) { SetWorkspaceId(value); return *this;} /** *The identifier of the WorkSpace.
*/ inline StopRequest& WithWorkspaceId(Aws::String&& value) { SetWorkspaceId(std::move(value)); return *this;} /** *The identifier of the WorkSpace.
*/ inline StopRequest& WithWorkspaceId(const char* value) { SetWorkspaceId(value); return *this;} private: Aws::String m_workspaceId; bool m_workspaceIdHasBeenSet = false; }; } // namespace Model } // namespace WorkSpaces } // namespace Aws