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-es/include/aws/es/model/DeleteOutboundCrossClusterSearchConnectionRequest.h

89 lines
3.6 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/es/ElasticsearchService_EXPORTS.h>
#include <aws/es/ElasticsearchServiceRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace ElasticsearchService
{
namespace Model
{
/**
* <p>Container for the parameters to the
* <code><a>DeleteOutboundCrossClusterSearchConnection</a></code>
* operation.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/es-2015-01-01/DeleteOutboundCrossClusterSearchConnectionRequest">AWS
* API Reference</a></p>
*/
class AWS_ELASTICSEARCHSERVICE_API DeleteOutboundCrossClusterSearchConnectionRequest : public ElasticsearchServiceRequest
{
public:
DeleteOutboundCrossClusterSearchConnectionRequest();
// 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 "DeleteOutboundCrossClusterSearchConnection"; }
Aws::String SerializePayload() const override;
/**
* <p>The id of the outbound connection that you want to permanently delete.</p>
*/
inline const Aws::String& GetCrossClusterSearchConnectionId() const{ return m_crossClusterSearchConnectionId; }
/**
* <p>The id of the outbound connection that you want to permanently delete.</p>
*/
inline bool CrossClusterSearchConnectionIdHasBeenSet() const { return m_crossClusterSearchConnectionIdHasBeenSet; }
/**
* <p>The id of the outbound connection that you want to permanently delete.</p>
*/
inline void SetCrossClusterSearchConnectionId(const Aws::String& value) { m_crossClusterSearchConnectionIdHasBeenSet = true; m_crossClusterSearchConnectionId = value; }
/**
* <p>The id of the outbound connection that you want to permanently delete.</p>
*/
inline void SetCrossClusterSearchConnectionId(Aws::String&& value) { m_crossClusterSearchConnectionIdHasBeenSet = true; m_crossClusterSearchConnectionId = std::move(value); }
/**
* <p>The id of the outbound connection that you want to permanently delete.</p>
*/
inline void SetCrossClusterSearchConnectionId(const char* value) { m_crossClusterSearchConnectionIdHasBeenSet = true; m_crossClusterSearchConnectionId.assign(value); }
/**
* <p>The id of the outbound connection that you want to permanently delete.</p>
*/
inline DeleteOutboundCrossClusterSearchConnectionRequest& WithCrossClusterSearchConnectionId(const Aws::String& value) { SetCrossClusterSearchConnectionId(value); return *this;}
/**
* <p>The id of the outbound connection that you want to permanently delete.</p>
*/
inline DeleteOutboundCrossClusterSearchConnectionRequest& WithCrossClusterSearchConnectionId(Aws::String&& value) { SetCrossClusterSearchConnectionId(std::move(value)); return *this;}
/**
* <p>The id of the outbound connection that you want to permanently delete.</p>
*/
inline DeleteOutboundCrossClusterSearchConnectionRequest& WithCrossClusterSearchConnectionId(const char* value) { SetCrossClusterSearchConnectionId(value); return *this;}
private:
Aws::String m_crossClusterSearchConnectionId;
bool m_crossClusterSearchConnectionIdHasBeenSet;
};
} // namespace Model
} // namespace ElasticsearchService
} // namespace Aws