/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace GroundStation { namespace Model { /** *

See Also:

AWS * API Reference

*/ class DescribeContactResult { public: AWS_GROUNDSTATION_API DescribeContactResult(); AWS_GROUNDSTATION_API DescribeContactResult(const Aws::AmazonWebServiceResult& result); AWS_GROUNDSTATION_API DescribeContactResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

UUID of a contact.

*/ inline const Aws::String& GetContactId() const{ return m_contactId; } /** *

UUID of a contact.

*/ inline void SetContactId(const Aws::String& value) { m_contactId = value; } /** *

UUID of a contact.

*/ inline void SetContactId(Aws::String&& value) { m_contactId = std::move(value); } /** *

UUID of a contact.

*/ inline void SetContactId(const char* value) { m_contactId.assign(value); } /** *

UUID of a contact.

*/ inline DescribeContactResult& WithContactId(const Aws::String& value) { SetContactId(value); return *this;} /** *

UUID of a contact.

*/ inline DescribeContactResult& WithContactId(Aws::String&& value) { SetContactId(std::move(value)); return *this;} /** *

UUID of a contact.

*/ inline DescribeContactResult& WithContactId(const char* value) { SetContactId(value); return *this;} /** *

Status of a contact.

*/ inline const ContactStatus& GetContactStatus() const{ return m_contactStatus; } /** *

Status of a contact.

*/ inline void SetContactStatus(const ContactStatus& value) { m_contactStatus = value; } /** *

Status of a contact.

*/ inline void SetContactStatus(ContactStatus&& value) { m_contactStatus = std::move(value); } /** *

Status of a contact.

*/ inline DescribeContactResult& WithContactStatus(const ContactStatus& value) { SetContactStatus(value); return *this;} /** *

Status of a contact.

*/ inline DescribeContactResult& WithContactStatus(ContactStatus&& value) { SetContactStatus(std::move(value)); return *this;} /** *

List describing source and destination details for each dataflow edge.

*/ inline const Aws::Vector& GetDataflowList() const{ return m_dataflowList; } /** *

List describing source and destination details for each dataflow edge.

*/ inline void SetDataflowList(const Aws::Vector& value) { m_dataflowList = value; } /** *

List describing source and destination details for each dataflow edge.

*/ inline void SetDataflowList(Aws::Vector&& value) { m_dataflowList = std::move(value); } /** *

List describing source and destination details for each dataflow edge.

*/ inline DescribeContactResult& WithDataflowList(const Aws::Vector& value) { SetDataflowList(value); return *this;} /** *

List describing source and destination details for each dataflow edge.

*/ inline DescribeContactResult& WithDataflowList(Aws::Vector&& value) { SetDataflowList(std::move(value)); return *this;} /** *

List describing source and destination details for each dataflow edge.

*/ inline DescribeContactResult& AddDataflowList(const DataflowDetail& value) { m_dataflowList.push_back(value); return *this; } /** *

List describing source and destination details for each dataflow edge.

*/ inline DescribeContactResult& AddDataflowList(DataflowDetail&& value) { m_dataflowList.push_back(std::move(value)); return *this; } /** *

End time of a contact in UTC.

*/ inline const Aws::Utils::DateTime& GetEndTime() const{ return m_endTime; } /** *

End time of a contact in UTC.

*/ inline void SetEndTime(const Aws::Utils::DateTime& value) { m_endTime = value; } /** *

End time of a contact in UTC.

*/ inline void SetEndTime(Aws::Utils::DateTime&& value) { m_endTime = std::move(value); } /** *

End time of a contact in UTC.

*/ inline DescribeContactResult& WithEndTime(const Aws::Utils::DateTime& value) { SetEndTime(value); return *this;} /** *

End time of a contact in UTC.

*/ inline DescribeContactResult& WithEndTime(Aws::Utils::DateTime&& value) { SetEndTime(std::move(value)); return *this;} /** *

Error message for a contact.

*/ inline const Aws::String& GetErrorMessage() const{ return m_errorMessage; } /** *

Error message for a contact.

*/ inline void SetErrorMessage(const Aws::String& value) { m_errorMessage = value; } /** *

Error message for a contact.

*/ inline void SetErrorMessage(Aws::String&& value) { m_errorMessage = std::move(value); } /** *

Error message for a contact.

*/ inline void SetErrorMessage(const char* value) { m_errorMessage.assign(value); } /** *

Error message for a contact.

*/ inline DescribeContactResult& WithErrorMessage(const Aws::String& value) { SetErrorMessage(value); return *this;} /** *

Error message for a contact.

*/ inline DescribeContactResult& WithErrorMessage(Aws::String&& value) { SetErrorMessage(std::move(value)); return *this;} /** *

Error message for a contact.

*/ inline DescribeContactResult& WithErrorMessage(const char* value) { SetErrorMessage(value); return *this;} /** *

Ground station for a contact.

*/ inline const Aws::String& GetGroundStation() const{ return m_groundStation; } /** *

Ground station for a contact.

*/ inline void SetGroundStation(const Aws::String& value) { m_groundStation = value; } /** *

Ground station for a contact.

*/ inline void SetGroundStation(Aws::String&& value) { m_groundStation = std::move(value); } /** *

Ground station for a contact.

*/ inline void SetGroundStation(const char* value) { m_groundStation.assign(value); } /** *

Ground station for a contact.

*/ inline DescribeContactResult& WithGroundStation(const Aws::String& value) { SetGroundStation(value); return *this;} /** *

Ground station for a contact.

*/ inline DescribeContactResult& WithGroundStation(Aws::String&& value) { SetGroundStation(std::move(value)); return *this;} /** *

Ground station for a contact.

*/ inline DescribeContactResult& WithGroundStation(const char* value) { SetGroundStation(value); return *this;} /** *

Maximum elevation angle of a contact.

*/ inline const Elevation& GetMaximumElevation() const{ return m_maximumElevation; } /** *

Maximum elevation angle of a contact.

*/ inline void SetMaximumElevation(const Elevation& value) { m_maximumElevation = value; } /** *

Maximum elevation angle of a contact.

*/ inline void SetMaximumElevation(Elevation&& value) { m_maximumElevation = std::move(value); } /** *

Maximum elevation angle of a contact.

*/ inline DescribeContactResult& WithMaximumElevation(const Elevation& value) { SetMaximumElevation(value); return *this;} /** *

Maximum elevation angle of a contact.

*/ inline DescribeContactResult& WithMaximumElevation(Elevation&& value) { SetMaximumElevation(std::move(value)); return *this;} /** *

ARN of a mission profile.

*/ inline const Aws::String& GetMissionProfileArn() const{ return m_missionProfileArn; } /** *

ARN of a mission profile.

*/ inline void SetMissionProfileArn(const Aws::String& value) { m_missionProfileArn = value; } /** *

ARN of a mission profile.

*/ inline void SetMissionProfileArn(Aws::String&& value) { m_missionProfileArn = std::move(value); } /** *

ARN of a mission profile.

*/ inline void SetMissionProfileArn(const char* value) { m_missionProfileArn.assign(value); } /** *

ARN of a mission profile.

*/ inline DescribeContactResult& WithMissionProfileArn(const Aws::String& value) { SetMissionProfileArn(value); return *this;} /** *

ARN of a mission profile.

*/ inline DescribeContactResult& WithMissionProfileArn(Aws::String&& value) { SetMissionProfileArn(std::move(value)); return *this;} /** *

ARN of a mission profile.

*/ inline DescribeContactResult& WithMissionProfileArn(const char* value) { SetMissionProfileArn(value); return *this;} /** *

Amount of time after a contact ends that you’d like to receive a CloudWatch * event indicating the pass has finished.

*/ inline const Aws::Utils::DateTime& GetPostPassEndTime() const{ return m_postPassEndTime; } /** *

Amount of time after a contact ends that you’d like to receive a CloudWatch * event indicating the pass has finished.

*/ inline void SetPostPassEndTime(const Aws::Utils::DateTime& value) { m_postPassEndTime = value; } /** *

Amount of time after a contact ends that you’d like to receive a CloudWatch * event indicating the pass has finished.

*/ inline void SetPostPassEndTime(Aws::Utils::DateTime&& value) { m_postPassEndTime = std::move(value); } /** *

Amount of time after a contact ends that you’d like to receive a CloudWatch * event indicating the pass has finished.

*/ inline DescribeContactResult& WithPostPassEndTime(const Aws::Utils::DateTime& value) { SetPostPassEndTime(value); return *this;} /** *

Amount of time after a contact ends that you’d like to receive a CloudWatch * event indicating the pass has finished.

*/ inline DescribeContactResult& WithPostPassEndTime(Aws::Utils::DateTime&& value) { SetPostPassEndTime(std::move(value)); return *this;} /** *

Amount of time prior to contact start you’d like to receive a CloudWatch * event indicating an upcoming pass.

*/ inline const Aws::Utils::DateTime& GetPrePassStartTime() const{ return m_prePassStartTime; } /** *

Amount of time prior to contact start you’d like to receive a CloudWatch * event indicating an upcoming pass.

*/ inline void SetPrePassStartTime(const Aws::Utils::DateTime& value) { m_prePassStartTime = value; } /** *

Amount of time prior to contact start you’d like to receive a CloudWatch * event indicating an upcoming pass.

*/ inline void SetPrePassStartTime(Aws::Utils::DateTime&& value) { m_prePassStartTime = std::move(value); } /** *

Amount of time prior to contact start you’d like to receive a CloudWatch * event indicating an upcoming pass.

*/ inline DescribeContactResult& WithPrePassStartTime(const Aws::Utils::DateTime& value) { SetPrePassStartTime(value); return *this;} /** *

Amount of time prior to contact start you’d like to receive a CloudWatch * event indicating an upcoming pass.

*/ inline DescribeContactResult& WithPrePassStartTime(Aws::Utils::DateTime&& value) { SetPrePassStartTime(std::move(value)); return *this;} /** *

Region of a contact.

*/ inline const Aws::String& GetRegion() const{ return m_region; } /** *

Region of a contact.

*/ inline void SetRegion(const Aws::String& value) { m_region = value; } /** *

Region of a contact.

*/ inline void SetRegion(Aws::String&& value) { m_region = std::move(value); } /** *

Region of a contact.

*/ inline void SetRegion(const char* value) { m_region.assign(value); } /** *

Region of a contact.

*/ inline DescribeContactResult& WithRegion(const Aws::String& value) { SetRegion(value); return *this;} /** *

Region of a contact.

*/ inline DescribeContactResult& WithRegion(Aws::String&& value) { SetRegion(std::move(value)); return *this;} /** *

Region of a contact.

*/ inline DescribeContactResult& WithRegion(const char* value) { SetRegion(value); return *this;} /** *

ARN of a satellite.

*/ inline const Aws::String& GetSatelliteArn() const{ return m_satelliteArn; } /** *

ARN of a satellite.

*/ inline void SetSatelliteArn(const Aws::String& value) { m_satelliteArn = value; } /** *

ARN of a satellite.

*/ inline void SetSatelliteArn(Aws::String&& value) { m_satelliteArn = std::move(value); } /** *

ARN of a satellite.

*/ inline void SetSatelliteArn(const char* value) { m_satelliteArn.assign(value); } /** *

ARN of a satellite.

*/ inline DescribeContactResult& WithSatelliteArn(const Aws::String& value) { SetSatelliteArn(value); return *this;} /** *

ARN of a satellite.

*/ inline DescribeContactResult& WithSatelliteArn(Aws::String&& value) { SetSatelliteArn(std::move(value)); return *this;} /** *

ARN of a satellite.

*/ inline DescribeContactResult& WithSatelliteArn(const char* value) { SetSatelliteArn(value); return *this;} /** *

Start time of a contact in UTC.

*/ inline const Aws::Utils::DateTime& GetStartTime() const{ return m_startTime; } /** *

Start time of a contact in UTC.

*/ inline void SetStartTime(const Aws::Utils::DateTime& value) { m_startTime = value; } /** *

Start time of a contact in UTC.

*/ inline void SetStartTime(Aws::Utils::DateTime&& value) { m_startTime = std::move(value); } /** *

Start time of a contact in UTC.

*/ inline DescribeContactResult& WithStartTime(const Aws::Utils::DateTime& value) { SetStartTime(value); return *this;} /** *

Start time of a contact in UTC.

*/ inline DescribeContactResult& WithStartTime(Aws::Utils::DateTime&& value) { SetStartTime(std::move(value)); return *this;} /** *

Tags assigned to a contact.

*/ inline const Aws::Map& GetTags() const{ return m_tags; } /** *

Tags assigned to a contact.

*/ inline void SetTags(const Aws::Map& value) { m_tags = value; } /** *

Tags assigned to a contact.

*/ inline void SetTags(Aws::Map&& value) { m_tags = std::move(value); } /** *

Tags assigned to a contact.

*/ inline DescribeContactResult& WithTags(const Aws::Map& value) { SetTags(value); return *this;} /** *

Tags assigned to a contact.

*/ inline DescribeContactResult& WithTags(Aws::Map&& value) { SetTags(std::move(value)); return *this;} /** *

Tags assigned to a contact.

*/ inline DescribeContactResult& AddTags(const Aws::String& key, const Aws::String& value) { m_tags.emplace(key, value); return *this; } /** *

Tags assigned to a contact.

*/ inline DescribeContactResult& AddTags(Aws::String&& key, const Aws::String& value) { m_tags.emplace(std::move(key), value); return *this; } /** *

Tags assigned to a contact.

*/ inline DescribeContactResult& AddTags(const Aws::String& key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; } /** *

Tags assigned to a contact.

*/ inline DescribeContactResult& AddTags(Aws::String&& key, Aws::String&& value) { m_tags.emplace(std::move(key), std::move(value)); return *this; } /** *

Tags assigned to a contact.

*/ inline DescribeContactResult& AddTags(const char* key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; } /** *

Tags assigned to a contact.

*/ inline DescribeContactResult& AddTags(Aws::String&& key, const char* value) { m_tags.emplace(std::move(key), value); return *this; } /** *

Tags assigned to a contact.

*/ inline DescribeContactResult& AddTags(const char* key, const char* value) { m_tags.emplace(key, value); return *this; } inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeContactResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeContactResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeContactResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_contactId; ContactStatus m_contactStatus; Aws::Vector m_dataflowList; Aws::Utils::DateTime m_endTime; Aws::String m_errorMessage; Aws::String m_groundStation; Elevation m_maximumElevation; Aws::String m_missionProfileArn; Aws::Utils::DateTime m_postPassEndTime; Aws::Utils::DateTime m_prePassStartTime; Aws::String m_region; Aws::String m_satelliteArn; Aws::Utils::DateTime m_startTime; Aws::Map m_tags; Aws::String m_requestId; }; } // namespace Model } // namespace GroundStation } // namespace Aws