/**
* 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 DeleteInboundConnection
* operation.See Also:
AWS
* API Reference
The ID of the inbound connection to permanently delete.
*/ inline const Aws::String& GetConnectionId() const{ return m_connectionId; } /** *The ID of the inbound connection to permanently delete.
*/ inline bool ConnectionIdHasBeenSet() const { return m_connectionIdHasBeenSet; } /** *The ID of the inbound connection to permanently delete.
*/ inline void SetConnectionId(const Aws::String& value) { m_connectionIdHasBeenSet = true; m_connectionId = value; } /** *The ID of the inbound connection to permanently delete.
*/ inline void SetConnectionId(Aws::String&& value) { m_connectionIdHasBeenSet = true; m_connectionId = std::move(value); } /** *The ID of the inbound connection to permanently delete.
*/ inline void SetConnectionId(const char* value) { m_connectionIdHasBeenSet = true; m_connectionId.assign(value); } /** *The ID of the inbound connection to permanently delete.
*/ inline DeleteInboundConnectionRequest& WithConnectionId(const Aws::String& value) { SetConnectionId(value); return *this;} /** *The ID of the inbound connection to permanently delete.
*/ inline DeleteInboundConnectionRequest& WithConnectionId(Aws::String&& value) { SetConnectionId(std::move(value)); return *this;} /** *The ID of the inbound connection to permanently delete.
*/ inline DeleteInboundConnectionRequest& WithConnectionId(const char* value) { SetConnectionId(value); return *this;} private: Aws::String m_connectionId; bool m_connectionIdHasBeenSet = false; }; } // namespace Model } // namespace OpenSearchService } // namespace Aws