This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-groundstation/include/aws/groundstation/model/CancelContactRequest.h

87 lines
2.5 KiB
C
Raw Normal View History

/**
* 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/groundstation/GroundStationRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace GroundStation
{
namespace Model
{
/**
* <p/><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CancelContactRequest">AWS
* API Reference</a></p>
*/
class AWS_GROUNDSTATION_API CancelContactRequest : public GroundStationRequest
{
public:
CancelContactRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "CancelContact"; }
Aws::String SerializePayload() const override;
/**
* <p>UUID of a contact.</p>
*/
inline const Aws::String& GetContactId() const{ return m_contactId; }
/**
* <p>UUID of a contact.</p>
*/
inline bool ContactIdHasBeenSet() const { return m_contactIdHasBeenSet; }
/**
* <p>UUID of a contact.</p>
*/
inline void SetContactId(const Aws::String& value) { m_contactIdHasBeenSet = true; m_contactId = value; }
/**
* <p>UUID of a contact.</p>
*/
inline void SetContactId(Aws::String&& value) { m_contactIdHasBeenSet = true; m_contactId = std::move(value); }
/**
* <p>UUID of a contact.</p>
*/
inline void SetContactId(const char* value) { m_contactIdHasBeenSet = true; m_contactId.assign(value); }
/**
* <p>UUID of a contact.</p>
*/
inline CancelContactRequest& WithContactId(const Aws::String& value) { SetContactId(value); return *this;}
/**
* <p>UUID of a contact.</p>
*/
inline CancelContactRequest& WithContactId(Aws::String&& value) { SetContactId(std::move(value)); return *this;}
/**
* <p>UUID of a contact.</p>
*/
inline CancelContactRequest& WithContactId(const char* value) { SetContactId(value); return *this;}
private:
Aws::String m_contactId;
bool m_contactIdHasBeenSet;
};
} // namespace Model
} // namespace GroundStation
} // namespace Aws