/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Item in a list of mission profiles.See Also:
AWS
* API Reference
ARN of a mission profile.
*/ inline const Aws::String& GetMissionProfileArn() const{ return m_missionProfileArn; } /** *ARN of a mission profile.
*/ inline bool MissionProfileArnHasBeenSet() const { return m_missionProfileArnHasBeenSet; } /** *ARN of a mission profile.
*/ inline void SetMissionProfileArn(const Aws::String& value) { m_missionProfileArnHasBeenSet = true; m_missionProfileArn = value; } /** *ARN of a mission profile.
*/ inline void SetMissionProfileArn(Aws::String&& value) { m_missionProfileArnHasBeenSet = true; m_missionProfileArn = std::move(value); } /** *ARN of a mission profile.
*/ inline void SetMissionProfileArn(const char* value) { m_missionProfileArnHasBeenSet = true; m_missionProfileArn.assign(value); } /** *ARN of a mission profile.
*/ inline MissionProfileListItem& WithMissionProfileArn(const Aws::String& value) { SetMissionProfileArn(value); return *this;} /** *ARN of a mission profile.
*/ inline MissionProfileListItem& WithMissionProfileArn(Aws::String&& value) { SetMissionProfileArn(std::move(value)); return *this;} /** *ARN of a mission profile.
*/ inline MissionProfileListItem& WithMissionProfileArn(const char* value) { SetMissionProfileArn(value); return *this;} /** *UUID of a mission profile.
*/ inline const Aws::String& GetMissionProfileId() const{ return m_missionProfileId; } /** *UUID of a mission profile.
*/ inline bool MissionProfileIdHasBeenSet() const { return m_missionProfileIdHasBeenSet; } /** *UUID of a mission profile.
*/ inline void SetMissionProfileId(const Aws::String& value) { m_missionProfileIdHasBeenSet = true; m_missionProfileId = value; } /** *UUID of a mission profile.
*/ inline void SetMissionProfileId(Aws::String&& value) { m_missionProfileIdHasBeenSet = true; m_missionProfileId = std::move(value); } /** *UUID of a mission profile.
*/ inline void SetMissionProfileId(const char* value) { m_missionProfileIdHasBeenSet = true; m_missionProfileId.assign(value); } /** *UUID of a mission profile.
*/ inline MissionProfileListItem& WithMissionProfileId(const Aws::String& value) { SetMissionProfileId(value); return *this;} /** *UUID of a mission profile.
*/ inline MissionProfileListItem& WithMissionProfileId(Aws::String&& value) { SetMissionProfileId(std::move(value)); return *this;} /** *UUID of a mission profile.
*/ inline MissionProfileListItem& WithMissionProfileId(const char* value) { SetMissionProfileId(value); return *this;} /** *Name of a mission profile.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *Name of a mission profile.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *Name of a mission profile.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *Name of a mission profile.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *Name of a mission profile.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *Name of a mission profile.
*/ inline MissionProfileListItem& WithName(const Aws::String& value) { SetName(value); return *this;} /** *Name of a mission profile.
*/ inline MissionProfileListItem& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *Name of a mission profile.
*/ inline MissionProfileListItem& WithName(const char* value) { SetName(value); return *this;} /** *Region of a mission profile.
*/ inline const Aws::String& GetRegion() const{ return m_region; } /** *Region of a mission profile.
*/ inline bool RegionHasBeenSet() const { return m_regionHasBeenSet; } /** *Region of a mission profile.
*/ inline void SetRegion(const Aws::String& value) { m_regionHasBeenSet = true; m_region = value; } /** *Region of a mission profile.
*/ inline void SetRegion(Aws::String&& value) { m_regionHasBeenSet = true; m_region = std::move(value); } /** *Region of a mission profile.
*/ inline void SetRegion(const char* value) { m_regionHasBeenSet = true; m_region.assign(value); } /** *Region of a mission profile.
*/ inline MissionProfileListItem& WithRegion(const Aws::String& value) { SetRegion(value); return *this;} /** *Region of a mission profile.
*/ inline MissionProfileListItem& WithRegion(Aws::String&& value) { SetRegion(std::move(value)); return *this;} /** *Region of a mission profile.
*/ inline MissionProfileListItem& WithRegion(const char* value) { SetRegion(value); return *this;} private: Aws::String m_missionProfileArn; bool m_missionProfileArnHasBeenSet = false; Aws::String m_missionProfileId; bool m_missionProfileIdHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_region; bool m_regionHasBeenSet = false; }; } // namespace Model } // namespace GroundStation } // namespace Aws