/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Schemas { namespace Model { class AWS_SCHEMAS_API GetDiscoveredSchemaResult { public: GetDiscoveredSchemaResult(); GetDiscoveredSchemaResult(const Aws::AmazonWebServiceResult& result); GetDiscoveredSchemaResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The source of the schema definition.

*/ inline const Aws::String& GetContent() const{ return m_content; } /** *

The source of the schema definition.

*/ inline void SetContent(const Aws::String& value) { m_content = value; } /** *

The source of the schema definition.

*/ inline void SetContent(Aws::String&& value) { m_content = std::move(value); } /** *

The source of the schema definition.

*/ inline void SetContent(const char* value) { m_content.assign(value); } /** *

The source of the schema definition.

*/ inline GetDiscoveredSchemaResult& WithContent(const Aws::String& value) { SetContent(value); return *this;} /** *

The source of the schema definition.

*/ inline GetDiscoveredSchemaResult& WithContent(Aws::String&& value) { SetContent(std::move(value)); return *this;} /** *

The source of the schema definition.

*/ inline GetDiscoveredSchemaResult& WithContent(const char* value) { SetContent(value); return *this;} private: Aws::String m_content; }; } // namespace Model } // namespace Schemas } // namespace Aws