83 lines
2.0 KiB
C
83 lines
2.0 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/groundstation/GroundStation_EXPORTS.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
template<typename RESULT_TYPE>
|
|||
|
|
class AmazonWebServiceResult;
|
|||
|
|
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace GroundStation
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
/**
|
|||
|
|
* <p/><p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ContactIdResponse">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_GROUNDSTATION_API CancelContactResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
CancelContactResult();
|
|||
|
|
CancelContactResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
CancelContactResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a contact.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetContactId() const{ return m_contactId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a contact.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetContactId(const Aws::String& value) { m_contactId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a contact.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetContactId(Aws::String&& value) { m_contactId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a contact.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetContactId(const char* value) { m_contactId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a contact.</p>
|
|||
|
|
*/
|
|||
|
|
inline CancelContactResult& WithContactId(const Aws::String& value) { SetContactId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a contact.</p>
|
|||
|
|
*/
|
|||
|
|
inline CancelContactResult& WithContactId(Aws::String&& value) { SetContactId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a contact.</p>
|
|||
|
|
*/
|
|||
|
|
inline CancelContactResult& WithContactId(const char* value) { SetContactId(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_contactId;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace GroundStation
|
|||
|
|
} // namespace Aws
|