/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Container for the parameters to the
* RejectInboundCrossClusterSearchConnection
* operation.See Also:
AWS
* API Reference
The id of the inbound connection that you want to reject.
*/ inline const Aws::String& GetCrossClusterSearchConnectionId() const{ return m_crossClusterSearchConnectionId; } /** *The id of the inbound connection that you want to reject.
*/ inline bool CrossClusterSearchConnectionIdHasBeenSet() const { return m_crossClusterSearchConnectionIdHasBeenSet; } /** *The id of the inbound connection that you want to reject.
*/ inline void SetCrossClusterSearchConnectionId(const Aws::String& value) { m_crossClusterSearchConnectionIdHasBeenSet = true; m_crossClusterSearchConnectionId = value; } /** *The id of the inbound connection that you want to reject.
*/ inline void SetCrossClusterSearchConnectionId(Aws::String&& value) { m_crossClusterSearchConnectionIdHasBeenSet = true; m_crossClusterSearchConnectionId = std::move(value); } /** *The id of the inbound connection that you want to reject.
*/ inline void SetCrossClusterSearchConnectionId(const char* value) { m_crossClusterSearchConnectionIdHasBeenSet = true; m_crossClusterSearchConnectionId.assign(value); } /** *The id of the inbound connection that you want to reject.
*/ inline RejectInboundCrossClusterSearchConnectionRequest& WithCrossClusterSearchConnectionId(const Aws::String& value) { SetCrossClusterSearchConnectionId(value); return *this;} /** *The id of the inbound connection that you want to reject.
*/ inline RejectInboundCrossClusterSearchConnectionRequest& WithCrossClusterSearchConnectionId(Aws::String&& value) { SetCrossClusterSearchConnectionId(std::move(value)); return *this;} /** *The id of the inbound connection that you want to reject.
*/ inline RejectInboundCrossClusterSearchConnectionRequest& WithCrossClusterSearchConnectionId(const char* value) { SetCrossClusterSearchConnectionId(value); return *this;} private: Aws::String m_crossClusterSearchConnectionId; bool m_crossClusterSearchConnectionIdHasBeenSet = false; }; } // namespace Model } // namespace ElasticsearchService } // namespace Aws