/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about the most recent deployment for the container
* fleet.See Also:
AWS
* API Reference
A unique identifier for a fleet deployment.
*/ inline const Aws::String& GetLatestDeploymentId() const{ return m_latestDeploymentId; } inline bool LatestDeploymentIdHasBeenSet() const { return m_latestDeploymentIdHasBeenSet; } inline void SetLatestDeploymentId(const Aws::String& value) { m_latestDeploymentIdHasBeenSet = true; m_latestDeploymentId = value; } inline void SetLatestDeploymentId(Aws::String&& value) { m_latestDeploymentIdHasBeenSet = true; m_latestDeploymentId = std::move(value); } inline void SetLatestDeploymentId(const char* value) { m_latestDeploymentIdHasBeenSet = true; m_latestDeploymentId.assign(value); } inline DeploymentDetails& WithLatestDeploymentId(const Aws::String& value) { SetLatestDeploymentId(value); return *this;} inline DeploymentDetails& WithLatestDeploymentId(Aws::String&& value) { SetLatestDeploymentId(std::move(value)); return *this;} inline DeploymentDetails& WithLatestDeploymentId(const char* value) { SetLatestDeploymentId(value); return *this;} ///@} private: Aws::String m_latestDeploymentId; bool m_latestDeploymentIdHasBeenSet = false; }; } // namespace Model } // namespace GameLift } // namespace Aws