68 lines
1.7 KiB
C
68 lines
1.7 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/application-insights/ApplicationInsights_EXPORTS.h>
|
|||
|
|
#include <aws/application-insights/model/Observation.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
template<typename RESULT_TYPE>
|
|||
|
|
class AmazonWebServiceResult;
|
|||
|
|
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace ApplicationInsights
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
class AWS_APPLICATIONINSIGHTS_API DescribeObservationResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
DescribeObservationResult();
|
|||
|
|
DescribeObservationResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
DescribeObservationResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Information about the observation.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Observation& GetObservation() const{ return m_observation; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Information about the observation.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetObservation(const Observation& value) { m_observation = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Information about the observation.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetObservation(Observation&& value) { m_observation = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Information about the observation.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeObservationResult& WithObservation(const Observation& value) { SetObservation(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Information about the observation.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeObservationResult& WithObservation(Observation&& value) { SetObservation(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Observation m_observation;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace ApplicationInsights
|
|||
|
|
} // namespace Aws
|