97 lines
2.7 KiB
C++
97 lines
2.7 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/events/CloudWatchEvents_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/events/model/RemoveTargetsResultEntry.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace CloudWatchEvents
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_CLOUDWATCHEVENTS_API RemoveTargetsResult
|
|
{
|
|
public:
|
|
RemoveTargetsResult();
|
|
RemoveTargetsResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
RemoveTargetsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The number of failed entries.</p>
|
|
*/
|
|
inline int GetFailedEntryCount() const{ return m_failedEntryCount; }
|
|
|
|
/**
|
|
* <p>The number of failed entries.</p>
|
|
*/
|
|
inline void SetFailedEntryCount(int value) { m_failedEntryCount = value; }
|
|
|
|
/**
|
|
* <p>The number of failed entries.</p>
|
|
*/
|
|
inline RemoveTargetsResult& WithFailedEntryCount(int value) { SetFailedEntryCount(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The failed target entries.</p>
|
|
*/
|
|
inline const Aws::Vector<RemoveTargetsResultEntry>& GetFailedEntries() const{ return m_failedEntries; }
|
|
|
|
/**
|
|
* <p>The failed target entries.</p>
|
|
*/
|
|
inline void SetFailedEntries(const Aws::Vector<RemoveTargetsResultEntry>& value) { m_failedEntries = value; }
|
|
|
|
/**
|
|
* <p>The failed target entries.</p>
|
|
*/
|
|
inline void SetFailedEntries(Aws::Vector<RemoveTargetsResultEntry>&& value) { m_failedEntries = std::move(value); }
|
|
|
|
/**
|
|
* <p>The failed target entries.</p>
|
|
*/
|
|
inline RemoveTargetsResult& WithFailedEntries(const Aws::Vector<RemoveTargetsResultEntry>& value) { SetFailedEntries(value); return *this;}
|
|
|
|
/**
|
|
* <p>The failed target entries.</p>
|
|
*/
|
|
inline RemoveTargetsResult& WithFailedEntries(Aws::Vector<RemoveTargetsResultEntry>&& value) { SetFailedEntries(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The failed target entries.</p>
|
|
*/
|
|
inline RemoveTargetsResult& AddFailedEntries(const RemoveTargetsResultEntry& value) { m_failedEntries.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>The failed target entries.</p>
|
|
*/
|
|
inline RemoveTargetsResult& AddFailedEntries(RemoveTargetsResultEntry&& value) { m_failedEntries.push_back(std::move(value)); return *this; }
|
|
|
|
private:
|
|
|
|
int m_failedEntryCount;
|
|
|
|
Aws::Vector<RemoveTargetsResultEntry> m_failedEntries;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace CloudWatchEvents
|
|
} // namespace Aws
|