414 lines
15 KiB
C++
414 lines
15 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/appsync/AppSync_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace AppSync
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>A function is a reusable entity. Multiple functions can be used to compose
|
|
* the resolver logic.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/FunctionConfiguration">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_APPSYNC_API FunctionConfiguration
|
|
{
|
|
public:
|
|
FunctionConfiguration();
|
|
FunctionConfiguration(Aws::Utils::Json::JsonView jsonValue);
|
|
FunctionConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>A unique ID representing the <code>Function</code> object.</p>
|
|
*/
|
|
inline const Aws::String& GetFunctionId() const{ return m_functionId; }
|
|
|
|
/**
|
|
* <p>A unique ID representing the <code>Function</code> object.</p>
|
|
*/
|
|
inline bool FunctionIdHasBeenSet() const { return m_functionIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>A unique ID representing the <code>Function</code> object.</p>
|
|
*/
|
|
inline void SetFunctionId(const Aws::String& value) { m_functionIdHasBeenSet = true; m_functionId = value; }
|
|
|
|
/**
|
|
* <p>A unique ID representing the <code>Function</code> object.</p>
|
|
*/
|
|
inline void SetFunctionId(Aws::String&& value) { m_functionIdHasBeenSet = true; m_functionId = std::move(value); }
|
|
|
|
/**
|
|
* <p>A unique ID representing the <code>Function</code> object.</p>
|
|
*/
|
|
inline void SetFunctionId(const char* value) { m_functionIdHasBeenSet = true; m_functionId.assign(value); }
|
|
|
|
/**
|
|
* <p>A unique ID representing the <code>Function</code> object.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithFunctionId(const Aws::String& value) { SetFunctionId(value); return *this;}
|
|
|
|
/**
|
|
* <p>A unique ID representing the <code>Function</code> object.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithFunctionId(Aws::String&& value) { SetFunctionId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>A unique ID representing the <code>Function</code> object.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithFunctionId(const char* value) { SetFunctionId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The ARN of the <code>Function</code> object.</p>
|
|
*/
|
|
inline const Aws::String& GetFunctionArn() const{ return m_functionArn; }
|
|
|
|
/**
|
|
* <p>The ARN of the <code>Function</code> object.</p>
|
|
*/
|
|
inline bool FunctionArnHasBeenSet() const { return m_functionArnHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ARN of the <code>Function</code> object.</p>
|
|
*/
|
|
inline void SetFunctionArn(const Aws::String& value) { m_functionArnHasBeenSet = true; m_functionArn = value; }
|
|
|
|
/**
|
|
* <p>The ARN of the <code>Function</code> object.</p>
|
|
*/
|
|
inline void SetFunctionArn(Aws::String&& value) { m_functionArnHasBeenSet = true; m_functionArn = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ARN of the <code>Function</code> object.</p>
|
|
*/
|
|
inline void SetFunctionArn(const char* value) { m_functionArnHasBeenSet = true; m_functionArn.assign(value); }
|
|
|
|
/**
|
|
* <p>The ARN of the <code>Function</code> object.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithFunctionArn(const Aws::String& value) { SetFunctionArn(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ARN of the <code>Function</code> object.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithFunctionArn(Aws::String&& value) { SetFunctionArn(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ARN of the <code>Function</code> object.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithFunctionArn(const char* value) { SetFunctionArn(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The name of the <code>Function</code> object.</p>
|
|
*/
|
|
inline const Aws::String& GetName() const{ return m_name; }
|
|
|
|
/**
|
|
* <p>The name of the <code>Function</code> object.</p>
|
|
*/
|
|
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the <code>Function</code> object.</p>
|
|
*/
|
|
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
|
|
|
|
/**
|
|
* <p>The name of the <code>Function</code> object.</p>
|
|
*/
|
|
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the <code>Function</code> object.</p>
|
|
*/
|
|
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the <code>Function</code> object.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithName(const Aws::String& value) { SetName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the <code>Function</code> object.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the <code>Function</code> object.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithName(const char* value) { SetName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The <code>Function</code> description.</p>
|
|
*/
|
|
inline const Aws::String& GetDescription() const{ return m_description; }
|
|
|
|
/**
|
|
* <p>The <code>Function</code> description.</p>
|
|
*/
|
|
inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The <code>Function</code> description.</p>
|
|
*/
|
|
inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
|
|
|
|
/**
|
|
* <p>The <code>Function</code> description.</p>
|
|
*/
|
|
inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
|
|
|
|
/**
|
|
* <p>The <code>Function</code> description.</p>
|
|
*/
|
|
inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
|
|
|
|
/**
|
|
* <p>The <code>Function</code> description.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
|
|
|
|
/**
|
|
* <p>The <code>Function</code> description.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The <code>Function</code> description.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithDescription(const char* value) { SetDescription(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The name of the <code>DataSource</code>.</p>
|
|
*/
|
|
inline const Aws::String& GetDataSourceName() const{ return m_dataSourceName; }
|
|
|
|
/**
|
|
* <p>The name of the <code>DataSource</code>.</p>
|
|
*/
|
|
inline bool DataSourceNameHasBeenSet() const { return m_dataSourceNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the <code>DataSource</code>.</p>
|
|
*/
|
|
inline void SetDataSourceName(const Aws::String& value) { m_dataSourceNameHasBeenSet = true; m_dataSourceName = value; }
|
|
|
|
/**
|
|
* <p>The name of the <code>DataSource</code>.</p>
|
|
*/
|
|
inline void SetDataSourceName(Aws::String&& value) { m_dataSourceNameHasBeenSet = true; m_dataSourceName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the <code>DataSource</code>.</p>
|
|
*/
|
|
inline void SetDataSourceName(const char* value) { m_dataSourceNameHasBeenSet = true; m_dataSourceName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the <code>DataSource</code>.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithDataSourceName(const Aws::String& value) { SetDataSourceName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the <code>DataSource</code>.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithDataSourceName(Aws::String&& value) { SetDataSourceName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the <code>DataSource</code>.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithDataSourceName(const char* value) { SetDataSourceName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The <code>Function</code> request mapping template. Functions support only
|
|
* the 2018-05-29 version of the request mapping template.</p>
|
|
*/
|
|
inline const Aws::String& GetRequestMappingTemplate() const{ return m_requestMappingTemplate; }
|
|
|
|
/**
|
|
* <p>The <code>Function</code> request mapping template. Functions support only
|
|
* the 2018-05-29 version of the request mapping template.</p>
|
|
*/
|
|
inline bool RequestMappingTemplateHasBeenSet() const { return m_requestMappingTemplateHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The <code>Function</code> request mapping template. Functions support only
|
|
* the 2018-05-29 version of the request mapping template.</p>
|
|
*/
|
|
inline void SetRequestMappingTemplate(const Aws::String& value) { m_requestMappingTemplateHasBeenSet = true; m_requestMappingTemplate = value; }
|
|
|
|
/**
|
|
* <p>The <code>Function</code> request mapping template. Functions support only
|
|
* the 2018-05-29 version of the request mapping template.</p>
|
|
*/
|
|
inline void SetRequestMappingTemplate(Aws::String&& value) { m_requestMappingTemplateHasBeenSet = true; m_requestMappingTemplate = std::move(value); }
|
|
|
|
/**
|
|
* <p>The <code>Function</code> request mapping template. Functions support only
|
|
* the 2018-05-29 version of the request mapping template.</p>
|
|
*/
|
|
inline void SetRequestMappingTemplate(const char* value) { m_requestMappingTemplateHasBeenSet = true; m_requestMappingTemplate.assign(value); }
|
|
|
|
/**
|
|
* <p>The <code>Function</code> request mapping template. Functions support only
|
|
* the 2018-05-29 version of the request mapping template.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithRequestMappingTemplate(const Aws::String& value) { SetRequestMappingTemplate(value); return *this;}
|
|
|
|
/**
|
|
* <p>The <code>Function</code> request mapping template. Functions support only
|
|
* the 2018-05-29 version of the request mapping template.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithRequestMappingTemplate(Aws::String&& value) { SetRequestMappingTemplate(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The <code>Function</code> request mapping template. Functions support only
|
|
* the 2018-05-29 version of the request mapping template.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithRequestMappingTemplate(const char* value) { SetRequestMappingTemplate(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The <code>Function</code> response mapping template.</p>
|
|
*/
|
|
inline const Aws::String& GetResponseMappingTemplate() const{ return m_responseMappingTemplate; }
|
|
|
|
/**
|
|
* <p>The <code>Function</code> response mapping template.</p>
|
|
*/
|
|
inline bool ResponseMappingTemplateHasBeenSet() const { return m_responseMappingTemplateHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The <code>Function</code> response mapping template.</p>
|
|
*/
|
|
inline void SetResponseMappingTemplate(const Aws::String& value) { m_responseMappingTemplateHasBeenSet = true; m_responseMappingTemplate = value; }
|
|
|
|
/**
|
|
* <p>The <code>Function</code> response mapping template.</p>
|
|
*/
|
|
inline void SetResponseMappingTemplate(Aws::String&& value) { m_responseMappingTemplateHasBeenSet = true; m_responseMappingTemplate = std::move(value); }
|
|
|
|
/**
|
|
* <p>The <code>Function</code> response mapping template.</p>
|
|
*/
|
|
inline void SetResponseMappingTemplate(const char* value) { m_responseMappingTemplateHasBeenSet = true; m_responseMappingTemplate.assign(value); }
|
|
|
|
/**
|
|
* <p>The <code>Function</code> response mapping template.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithResponseMappingTemplate(const Aws::String& value) { SetResponseMappingTemplate(value); return *this;}
|
|
|
|
/**
|
|
* <p>The <code>Function</code> response mapping template.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithResponseMappingTemplate(Aws::String&& value) { SetResponseMappingTemplate(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The <code>Function</code> response mapping template.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithResponseMappingTemplate(const char* value) { SetResponseMappingTemplate(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The version of the request mapping template. Currently only the 2018-05-29
|
|
* version of the template is supported.</p>
|
|
*/
|
|
inline const Aws::String& GetFunctionVersion() const{ return m_functionVersion; }
|
|
|
|
/**
|
|
* <p>The version of the request mapping template. Currently only the 2018-05-29
|
|
* version of the template is supported.</p>
|
|
*/
|
|
inline bool FunctionVersionHasBeenSet() const { return m_functionVersionHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The version of the request mapping template. Currently only the 2018-05-29
|
|
* version of the template is supported.</p>
|
|
*/
|
|
inline void SetFunctionVersion(const Aws::String& value) { m_functionVersionHasBeenSet = true; m_functionVersion = value; }
|
|
|
|
/**
|
|
* <p>The version of the request mapping template. Currently only the 2018-05-29
|
|
* version of the template is supported.</p>
|
|
*/
|
|
inline void SetFunctionVersion(Aws::String&& value) { m_functionVersionHasBeenSet = true; m_functionVersion = std::move(value); }
|
|
|
|
/**
|
|
* <p>The version of the request mapping template. Currently only the 2018-05-29
|
|
* version of the template is supported.</p>
|
|
*/
|
|
inline void SetFunctionVersion(const char* value) { m_functionVersionHasBeenSet = true; m_functionVersion.assign(value); }
|
|
|
|
/**
|
|
* <p>The version of the request mapping template. Currently only the 2018-05-29
|
|
* version of the template is supported.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithFunctionVersion(const Aws::String& value) { SetFunctionVersion(value); return *this;}
|
|
|
|
/**
|
|
* <p>The version of the request mapping template. Currently only the 2018-05-29
|
|
* version of the template is supported.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithFunctionVersion(Aws::String&& value) { SetFunctionVersion(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The version of the request mapping template. Currently only the 2018-05-29
|
|
* version of the template is supported.</p>
|
|
*/
|
|
inline FunctionConfiguration& WithFunctionVersion(const char* value) { SetFunctionVersion(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_functionId;
|
|
bool m_functionIdHasBeenSet;
|
|
|
|
Aws::String m_functionArn;
|
|
bool m_functionArnHasBeenSet;
|
|
|
|
Aws::String m_name;
|
|
bool m_nameHasBeenSet;
|
|
|
|
Aws::String m_description;
|
|
bool m_descriptionHasBeenSet;
|
|
|
|
Aws::String m_dataSourceName;
|
|
bool m_dataSourceNameHasBeenSet;
|
|
|
|
Aws::String m_requestMappingTemplate;
|
|
bool m_requestMappingTemplateHasBeenSet;
|
|
|
|
Aws::String m_responseMappingTemplate;
|
|
bool m_responseMappingTemplateHasBeenSet;
|
|
|
|
Aws::String m_functionVersion;
|
|
bool m_functionVersionHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace AppSync
|
|
} // namespace Aws
|