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-ecs/include/aws/ecs/model/DeleteAttributesResult.h

86 lines
2.4 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ecs/ECS_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/ecs/model/Attribute.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace ECS
{
namespace Model
{
class AWS_ECS_API DeleteAttributesResult
{
public:
DeleteAttributesResult();
DeleteAttributesResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
DeleteAttributesResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>A list of attribute objects that were successfully deleted from your
* resource.</p>
*/
inline const Aws::Vector<Attribute>& GetAttributes() const{ return m_attributes; }
/**
* <p>A list of attribute objects that were successfully deleted from your
* resource.</p>
*/
inline void SetAttributes(const Aws::Vector<Attribute>& value) { m_attributes = value; }
/**
* <p>A list of attribute objects that were successfully deleted from your
* resource.</p>
*/
inline void SetAttributes(Aws::Vector<Attribute>&& value) { m_attributes = std::move(value); }
/**
* <p>A list of attribute objects that were successfully deleted from your
* resource.</p>
*/
inline DeleteAttributesResult& WithAttributes(const Aws::Vector<Attribute>& value) { SetAttributes(value); return *this;}
/**
* <p>A list of attribute objects that were successfully deleted from your
* resource.</p>
*/
inline DeleteAttributesResult& WithAttributes(Aws::Vector<Attribute>&& value) { SetAttributes(std::move(value)); return *this;}
/**
* <p>A list of attribute objects that were successfully deleted from your
* resource.</p>
*/
inline DeleteAttributesResult& AddAttributes(const Attribute& value) { m_attributes.push_back(value); return *this; }
/**
* <p>A list of attribute objects that were successfully deleted from your
* resource.</p>
*/
inline DeleteAttributesResult& AddAttributes(Attribute&& value) { m_attributes.push_back(std::move(value)); return *this; }
private:
Aws::Vector<Attribute> m_attributes;
};
} // namespace Model
} // namespace ECS
} // namespace Aws