/**
* 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 ListDomainNames
* operation.See Also:
AWS
* API Reference
Optional parameter to filter the output by domain engine type. Acceptable * values are 'Elasticsearch' and 'OpenSearch'.
*/ inline const EngineType& GetEngineType() const{ return m_engineType; } /** *Optional parameter to filter the output by domain engine type. Acceptable * values are 'Elasticsearch' and 'OpenSearch'.
*/ inline bool EngineTypeHasBeenSet() const { return m_engineTypeHasBeenSet; } /** *Optional parameter to filter the output by domain engine type. Acceptable * values are 'Elasticsearch' and 'OpenSearch'.
*/ inline void SetEngineType(const EngineType& value) { m_engineTypeHasBeenSet = true; m_engineType = value; } /** *Optional parameter to filter the output by domain engine type. Acceptable * values are 'Elasticsearch' and 'OpenSearch'.
*/ inline void SetEngineType(EngineType&& value) { m_engineTypeHasBeenSet = true; m_engineType = std::move(value); } /** *Optional parameter to filter the output by domain engine type. Acceptable * values are 'Elasticsearch' and 'OpenSearch'.
*/ inline ListDomainNamesRequest& WithEngineType(const EngineType& value) { SetEngineType(value); return *this;} /** *Optional parameter to filter the output by domain engine type. Acceptable * values are 'Elasticsearch' and 'OpenSearch'.
*/ inline ListDomainNamesRequest& WithEngineType(EngineType&& value) { SetEngineType(std::move(value)); return *this;} private: EngineType m_engineType; bool m_engineTypeHasBeenSet = false; }; } // namespace Model } // namespace ElasticsearchService } // namespace Aws