/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Mobile { namespace Model { /** *

Request structure used in requests to export project configuration details. *

See Also:

AWS * API Reference

*/ class ExportProjectRequest : public MobileRequest { public: AWS_MOBILE_API ExportProjectRequest(); // 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 "ExportProject"; } AWS_MOBILE_API Aws::String SerializePayload() const override; /** *

Unique project identifier.

*/ inline const Aws::String& GetProjectId() const{ return m_projectId; } /** *

Unique project identifier.

*/ inline bool ProjectIdHasBeenSet() const { return m_projectIdHasBeenSet; } /** *

Unique project identifier.

*/ inline void SetProjectId(const Aws::String& value) { m_projectIdHasBeenSet = true; m_projectId = value; } /** *

Unique project identifier.

*/ inline void SetProjectId(Aws::String&& value) { m_projectIdHasBeenSet = true; m_projectId = std::move(value); } /** *

Unique project identifier.

*/ inline void SetProjectId(const char* value) { m_projectIdHasBeenSet = true; m_projectId.assign(value); } /** *

Unique project identifier.

*/ inline ExportProjectRequest& WithProjectId(const Aws::String& value) { SetProjectId(value); return *this;} /** *

Unique project identifier.

*/ inline ExportProjectRequest& WithProjectId(Aws::String&& value) { SetProjectId(std::move(value)); return *this;} /** *

Unique project identifier.

*/ inline ExportProjectRequest& WithProjectId(const char* value) { SetProjectId(value); return *this;} private: Aws::String m_projectId; bool m_projectIdHasBeenSet = false; }; } // namespace Model } // namespace Mobile } // namespace Aws