/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
UUID of a contact.
*/ inline const Aws::String& GetContactId() const{ return m_contactId; } /** *UUID of a contact.
*/ inline bool ContactIdHasBeenSet() const { return m_contactIdHasBeenSet; } /** *UUID of a contact.
*/ inline void SetContactId(const Aws::String& value) { m_contactIdHasBeenSet = true; m_contactId = value; } /** *UUID of a contact.
*/ inline void SetContactId(Aws::String&& value) { m_contactIdHasBeenSet = true; m_contactId = std::move(value); } /** *UUID of a contact.
*/ inline void SetContactId(const char* value) { m_contactIdHasBeenSet = true; m_contactId.assign(value); } /** *UUID of a contact.
*/ inline CancelContactRequest& WithContactId(const Aws::String& value) { SetContactId(value); return *this;} /** *UUID of a contact.
*/ inline CancelContactRequest& WithContactId(Aws::String&& value) { SetContactId(std::move(value)); return *this;} /** *UUID of a contact.
*/ inline CancelContactRequest& WithContactId(const char* value) { SetContactId(value); return *this;} private: Aws::String m_contactId; bool m_contactIdHasBeenSet = false; }; } // namespace Model } // namespace GroundStation } // namespace Aws