/** * 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 IoT { namespace Model { class AWS_IOT_API GetJobDocumentResult { public: GetJobDocumentResult(); GetJobDocumentResult(const Aws::AmazonWebServiceResult& result); GetJobDocumentResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The job document content.

*/ inline const Aws::String& GetDocument() const{ return m_document; } /** *

The job document content.

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

The job document content.

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

The job document content.

*/ inline void SetDocument(const char* value) { m_document.assign(value); } /** *

The job document content.

*/ inline GetJobDocumentResult& WithDocument(const Aws::String& value) { SetDocument(value); return *this;} /** *

The job document content.

*/ inline GetJobDocumentResult& WithDocument(Aws::String&& value) { SetDocument(std::move(value)); return *this;} /** *

The job document content.

*/ inline GetJobDocumentResult& WithDocument(const char* value) { SetDocument(value); return *this;} private: Aws::String m_document; }; } // namespace Model } // namespace IoT } // namespace Aws