/** * 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 AmplifyUIBuilder { namespace Model { /** *

Describes the configuration information for rendering the UI component * associated the code generation job.

See Also:

AWS * API Reference

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

The name of the ReactStartCodegenJobData object.

*/ inline const ReactStartCodegenJobData& GetReact() const{ return m_react; } /** *

The name of the ReactStartCodegenJobData object.

*/ inline bool ReactHasBeenSet() const { return m_reactHasBeenSet; } /** *

The name of the ReactStartCodegenJobData object.

*/ inline void SetReact(const ReactStartCodegenJobData& value) { m_reactHasBeenSet = true; m_react = value; } /** *

The name of the ReactStartCodegenJobData object.

*/ inline void SetReact(ReactStartCodegenJobData&& value) { m_reactHasBeenSet = true; m_react = std::move(value); } /** *

The name of the ReactStartCodegenJobData object.

*/ inline CodegenJobRenderConfig& WithReact(const ReactStartCodegenJobData& value) { SetReact(value); return *this;} /** *

The name of the ReactStartCodegenJobData object.

*/ inline CodegenJobRenderConfig& WithReact(ReactStartCodegenJobData&& value) { SetReact(std::move(value)); return *this;} private: ReactStartCodegenJobData m_react; bool m_reactHasBeenSet = false; }; } // namespace Model } // namespace AmplifyUIBuilder } // namespace Aws