/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace AppRegistry { namespace Model { /** *

Includes all of the AppRegistry settings.

See Also:

AWS * API Reference

*/ class AppRegistryConfiguration { public: AWS_APPREGISTRY_API AppRegistryConfiguration(); AWS_APPREGISTRY_API AppRegistryConfiguration(Aws::Utils::Json::JsonView jsonValue); AWS_APPREGISTRY_API AppRegistryConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_APPREGISTRY_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

Includes the definition of a tagQuery.

*/ inline const TagQueryConfiguration& GetTagQueryConfiguration() const{ return m_tagQueryConfiguration; } /** *

Includes the definition of a tagQuery.

*/ inline bool TagQueryConfigurationHasBeenSet() const { return m_tagQueryConfigurationHasBeenSet; } /** *

Includes the definition of a tagQuery.

*/ inline void SetTagQueryConfiguration(const TagQueryConfiguration& value) { m_tagQueryConfigurationHasBeenSet = true; m_tagQueryConfiguration = value; } /** *

Includes the definition of a tagQuery.

*/ inline void SetTagQueryConfiguration(TagQueryConfiguration&& value) { m_tagQueryConfigurationHasBeenSet = true; m_tagQueryConfiguration = std::move(value); } /** *

Includes the definition of a tagQuery.

*/ inline AppRegistryConfiguration& WithTagQueryConfiguration(const TagQueryConfiguration& value) { SetTagQueryConfiguration(value); return *this;} /** *

Includes the definition of a tagQuery.

*/ inline AppRegistryConfiguration& WithTagQueryConfiguration(TagQueryConfiguration&& value) { SetTagQueryConfiguration(std::move(value)); return *this;} private: TagQueryConfiguration m_tagQueryConfiguration; bool m_tagQueryConfigurationHasBeenSet = false; }; } // namespace Model } // namespace AppRegistry } // namespace Aws