/** * 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 CreateDocumentResult { public: CreateDocumentResult(); CreateDocumentResult(const Aws::AmazonWebServiceResult& result); CreateDocumentResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about the Systems Manager document.

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

Information about the Systems Manager document.

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

Information about the Systems Manager document.

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

Information about the Systems Manager document.

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

Information about the Systems Manager document.

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