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

A description of the document that was updated.

*/ inline const DocumentDescription& GetDocumentDescription() const{ return m_documentDescription; } /** *

A description of the document that was updated.

*/ inline void SetDocumentDescription(const DocumentDescription& value) { m_documentDescription = value; } /** *

A description of the document that was updated.

*/ inline void SetDocumentDescription(DocumentDescription&& value) { m_documentDescription = std::move(value); } /** *

A description of the document that was updated.

*/ inline UpdateDocumentResult& WithDocumentDescription(const DocumentDescription& value) { SetDocumentDescription(value); return *this;} /** *

A description of the document that was updated.

*/ inline UpdateDocumentResult& WithDocumentDescription(DocumentDescription&& value) { SetDocumentDescription(std::move(value)); return *this;} private: DocumentDescription m_documentDescription; }; } // namespace Model } // namespace SSM } // namespace Aws