/**
* 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
Filters the output by domain engine type.
*/ inline const EngineType& GetEngineType() const{ return m_engineType; } /** *Filters the output by domain engine type.
*/ inline bool EngineTypeHasBeenSet() const { return m_engineTypeHasBeenSet; } /** *Filters the output by domain engine type.
*/ inline void SetEngineType(const EngineType& value) { m_engineTypeHasBeenSet = true; m_engineType = value; } /** *Filters the output by domain engine type.
*/ inline void SetEngineType(EngineType&& value) { m_engineTypeHasBeenSet = true; m_engineType = std::move(value); } /** *Filters the output by domain engine type.
*/ inline ListDomainNamesRequest& WithEngineType(const EngineType& value) { SetEngineType(value); return *this;} /** *Filters the output by domain engine type.
*/ inline ListDomainNamesRequest& WithEngineType(EngineType&& value) { SetEngineType(std::move(value)); return *this;} private: EngineType m_engineType; bool m_engineTypeHasBeenSet = false; }; } // namespace Model } // namespace OpenSearchService } // namespace Aws