/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the data binding configuration for a specific property using data
* stored in Amazon Web Services. For Amazon Web Services connected properties, you
* can bind a property to data stored in an Amplify DataStore model.See
* Also:
AWS
* API Reference
An Amplify DataStore model.
*/ inline const Aws::String& GetModel() const{ return m_model; } /** *An Amplify DataStore model.
*/ inline bool ModelHasBeenSet() const { return m_modelHasBeenSet; } /** *An Amplify DataStore model.
*/ inline void SetModel(const Aws::String& value) { m_modelHasBeenSet = true; m_model = value; } /** *An Amplify DataStore model.
*/ inline void SetModel(Aws::String&& value) { m_modelHasBeenSet = true; m_model = std::move(value); } /** *An Amplify DataStore model.
*/ inline void SetModel(const char* value) { m_modelHasBeenSet = true; m_model.assign(value); } /** *An Amplify DataStore model.
*/ inline FormInputBindingPropertiesValueProperties& WithModel(const Aws::String& value) { SetModel(value); return *this;} /** *An Amplify DataStore model.
*/ inline FormInputBindingPropertiesValueProperties& WithModel(Aws::String&& value) { SetModel(std::move(value)); return *this;} /** *An Amplify DataStore model.
*/ inline FormInputBindingPropertiesValueProperties& WithModel(const char* value) { SetModel(value); return *this;} private: Aws::String m_model; bool m_modelHasBeenSet = false; }; } // namespace Model } // namespace AmplifyUIBuilder } // namespace Aws