68 lines
1.9 KiB
C++
68 lines
1.9 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/AssociationDescription.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 UpdateAssociationResult
|
|
{
|
|
public:
|
|
UpdateAssociationResult();
|
|
UpdateAssociationResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
UpdateAssociationResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The description of the association that was updated.</p>
|
|
*/
|
|
inline const AssociationDescription& GetAssociationDescription() const{ return m_associationDescription; }
|
|
|
|
/**
|
|
* <p>The description of the association that was updated.</p>
|
|
*/
|
|
inline void SetAssociationDescription(const AssociationDescription& value) { m_associationDescription = value; }
|
|
|
|
/**
|
|
* <p>The description of the association that was updated.</p>
|
|
*/
|
|
inline void SetAssociationDescription(AssociationDescription&& value) { m_associationDescription = std::move(value); }
|
|
|
|
/**
|
|
* <p>The description of the association that was updated.</p>
|
|
*/
|
|
inline UpdateAssociationResult& WithAssociationDescription(const AssociationDescription& value) { SetAssociationDescription(value); return *this;}
|
|
|
|
/**
|
|
* <p>The description of the association that was updated.</p>
|
|
*/
|
|
inline UpdateAssociationResult& WithAssociationDescription(AssociationDescription&& value) { SetAssociationDescription(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
AssociationDescription m_associationDescription;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace SSM
|
|
} // namespace Aws
|