This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-ssm/include/aws/ssm/model/UpdateDocumentDefaultVersionResult.h

73 lines
2.1 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ssm/SSM_EXPORTS.h>
#include <aws/ssm/model/DocumentDefaultVersionDescription.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace SSM
{
namespace Model
{
class AWS_SSM_API UpdateDocumentDefaultVersionResult
{
public:
UpdateDocumentDefaultVersionResult();
UpdateDocumentDefaultVersionResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
UpdateDocumentDefaultVersionResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The description of a custom document that you want to set as the default
* version.</p>
*/
inline const DocumentDefaultVersionDescription& GetDescription() const{ return m_description; }
/**
* <p>The description of a custom document that you want to set as the default
* version.</p>
*/
inline void SetDescription(const DocumentDefaultVersionDescription& value) { m_description = value; }
/**
* <p>The description of a custom document that you want to set as the default
* version.</p>
*/
inline void SetDescription(DocumentDefaultVersionDescription&& value) { m_description = std::move(value); }
/**
* <p>The description of a custom document that you want to set as the default
* version.</p>
*/
inline UpdateDocumentDefaultVersionResult& WithDescription(const DocumentDefaultVersionDescription& value) { SetDescription(value); return *this;}
/**
* <p>The description of a custom document that you want to set as the default
* version.</p>
*/
inline UpdateDocumentDefaultVersionResult& WithDescription(DocumentDefaultVersionDescription&& value) { SetDescription(std::move(value)); return *this;}
private:
DocumentDefaultVersionDescription m_description;
};
} // namespace Model
} // namespace SSM
} // namespace Aws