Files
DedicatedServerCourse/Plugins/GameLiftPlugin/Source/AWSSDK/Include/aws/apigateway/model/Model.h

151 lines
6.6 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/apigateway/APIGateway_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 APIGateway
{
namespace Model
{
/**
* <p>Represents the data structure of a method's request or response
* payload.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/apigateway-2015-07-09/Model">AWS
* API Reference</a></p>
*/
class Model
{
public:
AWS_APIGATEWAY_API Model();
AWS_APIGATEWAY_API Model(Aws::Utils::Json::JsonView jsonValue);
AWS_APIGATEWAY_API Model& operator=(Aws::Utils::Json::JsonView jsonValue);
AWS_APIGATEWAY_API Aws::Utils::Json::JsonValue Jsonize() const;
///@{
/**
* <p>The identifier for the model resource.</p>
*/
inline const Aws::String& GetId() const{ return m_id; }
inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
inline Model& WithId(const Aws::String& value) { SetId(value); return *this;}
inline Model& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
inline Model& WithId(const char* value) { SetId(value); return *this;}
///@}
///@{
/**
* <p>The name of the model. Must be an alphanumeric string.</p>
*/
inline const Aws::String& GetName() const{ return m_name; }
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
inline Model& WithName(const Aws::String& value) { SetName(value); return *this;}
inline Model& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
inline Model& WithName(const char* value) { SetName(value); return *this;}
///@}
///@{
/**
* <p>The description of the model.</p>
*/
inline const Aws::String& GetDescription() const{ return m_description; }
inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
inline Model& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
inline Model& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
inline Model& WithDescription(const char* value) { SetDescription(value); return *this;}
///@}
///@{
/**
* <p>The schema for the model. For <code>application/json</code> models, this
* should be JSON schema draft 4 model. Do not include "\* /" characters in the
* description of any properties because such "\* /" characters may be interpreted
* as the closing marker for comments in some languages, such as Java or
* JavaScript, causing the installation of your API's SDK generated by API Gateway
* to fail.</p>
*/
inline const Aws::String& GetSchema() const{ return m_schema; }
inline bool SchemaHasBeenSet() const { return m_schemaHasBeenSet; }
inline void SetSchema(const Aws::String& value) { m_schemaHasBeenSet = true; m_schema = value; }
inline void SetSchema(Aws::String&& value) { m_schemaHasBeenSet = true; m_schema = std::move(value); }
inline void SetSchema(const char* value) { m_schemaHasBeenSet = true; m_schema.assign(value); }
inline Model& WithSchema(const Aws::String& value) { SetSchema(value); return *this;}
inline Model& WithSchema(Aws::String&& value) { SetSchema(std::move(value)); return *this;}
inline Model& WithSchema(const char* value) { SetSchema(value); return *this;}
///@}
///@{
/**
* <p>The content-type for the model.</p>
*/
inline const Aws::String& GetContentType() const{ return m_contentType; }
inline bool ContentTypeHasBeenSet() const { return m_contentTypeHasBeenSet; }
inline void SetContentType(const Aws::String& value) { m_contentTypeHasBeenSet = true; m_contentType = value; }
inline void SetContentType(Aws::String&& value) { m_contentTypeHasBeenSet = true; m_contentType = std::move(value); }
inline void SetContentType(const char* value) { m_contentTypeHasBeenSet = true; m_contentType.assign(value); }
inline Model& WithContentType(const Aws::String& value) { SetContentType(value); return *this;}
inline Model& WithContentType(Aws::String&& value) { SetContentType(std::move(value)); return *this;}
inline Model& WithContentType(const char* value) { SetContentType(value); return *this;}
///@}
///@{
inline const Aws::String& GetRequestId() const{ return m_requestId; }
inline bool RequestIdHasBeenSet() const { return m_requestIdHasBeenSet; }
inline void SetRequestId(const Aws::String& value) { m_requestIdHasBeenSet = true; m_requestId = value; }
inline void SetRequestId(Aws::String&& value) { m_requestIdHasBeenSet = true; m_requestId = std::move(value); }
inline void SetRequestId(const char* value) { m_requestIdHasBeenSet = true; m_requestId.assign(value); }
inline Model& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
inline Model& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
inline Model& WithRequestId(const char* value) { SetRequestId(value); return *this;}
///@}
private:
Aws::String m_id;
bool m_idHasBeenSet = false;
Aws::String m_name;
bool m_nameHasBeenSet = false;
Aws::String m_description;
bool m_descriptionHasBeenSet = false;
Aws::String m_schema;
bool m_schemaHasBeenSet = false;
Aws::String m_contentType;
bool m_contentTypeHasBeenSet = false;
Aws::String m_requestId;
bool m_requestIdHasBeenSet = false;
};
} // namespace Model
} // namespace APIGateway
} // namespace Aws