/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Request structure used to request details about a project. See
* Also:
AWS
* API Reference
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 DescribeProjectRequest& WithProjectId(const Aws::String& value) { SetProjectId(value); return *this;} /** *Unique project identifier.
*/ inline DescribeProjectRequest& WithProjectId(Aws::String&& value) { SetProjectId(std::move(value)); return *this;} /** *Unique project identifier.
*/ inline DescribeProjectRequest& WithProjectId(const char* value) { SetProjectId(value); return *this;} /** *If set to true, causes AWS Mobile Hub to synchronize information from other * services, e.g., update state of AWS CloudFormation stacks in the AWS Mobile Hub * project.
*/ inline bool GetSyncFromResources() const{ return m_syncFromResources; } /** *If set to true, causes AWS Mobile Hub to synchronize information from other * services, e.g., update state of AWS CloudFormation stacks in the AWS Mobile Hub * project.
*/ inline bool SyncFromResourcesHasBeenSet() const { return m_syncFromResourcesHasBeenSet; } /** *If set to true, causes AWS Mobile Hub to synchronize information from other * services, e.g., update state of AWS CloudFormation stacks in the AWS Mobile Hub * project.
*/ inline void SetSyncFromResources(bool value) { m_syncFromResourcesHasBeenSet = true; m_syncFromResources = value; } /** *If set to true, causes AWS Mobile Hub to synchronize information from other * services, e.g., update state of AWS CloudFormation stacks in the AWS Mobile Hub * project.
*/ inline DescribeProjectRequest& WithSyncFromResources(bool value) { SetSyncFromResources(value); return *this;} private: Aws::String m_projectId; bool m_projectIdHasBeenSet = false; bool m_syncFromResources; bool m_syncFromResourcesHasBeenSet = false; }; } // namespace Model } // namespace Mobile } // namespace Aws