/**
* 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
* CreateOutboundCrossClusterSearchConnection
* operation.See Also:
AWS
* API Reference
Specifies the DomainInformation
for the source
* Elasticsearch domain.
Specifies the DomainInformation
for the source
* Elasticsearch domain.
Specifies the DomainInformation
for the source
* Elasticsearch domain.
Specifies the DomainInformation
for the source
* Elasticsearch domain.
Specifies the DomainInformation
for the source
* Elasticsearch domain.
Specifies the DomainInformation
for the source
* Elasticsearch domain.
Specifies the DomainInformation
for the destination
* Elasticsearch domain.
Specifies the DomainInformation
for the destination
* Elasticsearch domain.
Specifies the DomainInformation
for the destination
* Elasticsearch domain.
Specifies the DomainInformation
for the destination
* Elasticsearch domain.
Specifies the DomainInformation
for the destination
* Elasticsearch domain.
Specifies the DomainInformation
for the destination
* Elasticsearch domain.
Specifies the connection alias that will be used by the customer for this * connection.
*/ inline const Aws::String& GetConnectionAlias() const{ return m_connectionAlias; } /** *Specifies the connection alias that will be used by the customer for this * connection.
*/ inline bool ConnectionAliasHasBeenSet() const { return m_connectionAliasHasBeenSet; } /** *Specifies the connection alias that will be used by the customer for this * connection.
*/ inline void SetConnectionAlias(const Aws::String& value) { m_connectionAliasHasBeenSet = true; m_connectionAlias = value; } /** *Specifies the connection alias that will be used by the customer for this * connection.
*/ inline void SetConnectionAlias(Aws::String&& value) { m_connectionAliasHasBeenSet = true; m_connectionAlias = std::move(value); } /** *Specifies the connection alias that will be used by the customer for this * connection.
*/ inline void SetConnectionAlias(const char* value) { m_connectionAliasHasBeenSet = true; m_connectionAlias.assign(value); } /** *Specifies the connection alias that will be used by the customer for this * connection.
*/ inline CreateOutboundCrossClusterSearchConnectionRequest& WithConnectionAlias(const Aws::String& value) { SetConnectionAlias(value); return *this;} /** *Specifies the connection alias that will be used by the customer for this * connection.
*/ inline CreateOutboundCrossClusterSearchConnectionRequest& WithConnectionAlias(Aws::String&& value) { SetConnectionAlias(std::move(value)); return *this;} /** *Specifies the connection alias that will be used by the customer for this * connection.
*/ inline CreateOutboundCrossClusterSearchConnectionRequest& WithConnectionAlias(const char* value) { SetConnectionAlias(value); return *this;} private: DomainInformation m_sourceDomainInfo; bool m_sourceDomainInfoHasBeenSet = false; DomainInformation m_destinationDomainInfo; bool m_destinationDomainInfoHasBeenSet = false; Aws::String m_connectionAlias; bool m_connectionAliasHasBeenSet = false; }; } // namespace Model } // namespace ElasticsearchService } // namespace Aws