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-appstream/include/aws/appstream/model/BatchDisassociateUserStackResult.h

79 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/appstream/AppStream_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/appstream/model/UserStackAssociationError.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace AppStream
{
namespace Model
{
class AWS_APPSTREAM_API BatchDisassociateUserStackResult
{
public:
BatchDisassociateUserStackResult();
BatchDisassociateUserStackResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
BatchDisassociateUserStackResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The list of UserStackAssociationError objects.</p>
*/
inline const Aws::Vector<UserStackAssociationError>& GetErrors() const{ return m_errors; }
/**
* <p>The list of UserStackAssociationError objects.</p>
*/
inline void SetErrors(const Aws::Vector<UserStackAssociationError>& value) { m_errors = value; }
/**
* <p>The list of UserStackAssociationError objects.</p>
*/
inline void SetErrors(Aws::Vector<UserStackAssociationError>&& value) { m_errors = std::move(value); }
/**
* <p>The list of UserStackAssociationError objects.</p>
*/
inline BatchDisassociateUserStackResult& WithErrors(const Aws::Vector<UserStackAssociationError>& value) { SetErrors(value); return *this;}
/**
* <p>The list of UserStackAssociationError objects.</p>
*/
inline BatchDisassociateUserStackResult& WithErrors(Aws::Vector<UserStackAssociationError>&& value) { SetErrors(std::move(value)); return *this;}
/**
* <p>The list of UserStackAssociationError objects.</p>
*/
inline BatchDisassociateUserStackResult& AddErrors(const UserStackAssociationError& value) { m_errors.push_back(value); return *this; }
/**
* <p>The list of UserStackAssociationError objects.</p>
*/
inline BatchDisassociateUserStackResult& AddErrors(UserStackAssociationError&& value) { m_errors.push_back(std::move(value)); return *this; }
private:
Aws::Vector<UserStackAssociationError> m_errors;
};
} // namespace Model
} // namespace AppStream
} // namespace Aws