/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #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 AWS_GROUNDSTATION_API CancelContactResult { public: CancelContactResult(); CancelContactResult(const Aws::AmazonWebServiceResult& result); CancelContactResult& 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 CancelContactResult& WithContactId(const Aws::String& value) { SetContactId(value); return *this;} /** *

UUID of a contact.

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

UUID of a contact.

*/ inline CancelContactResult& WithContactId(const char* value) { SetContactId(value); return *this;} private: Aws::String m_contactId; }; } // namespace Model } // namespace GroundStation } // namespace Aws