/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace SSM { namespace Model { class DeleteParametersResult { public: AWS_SSM_API DeleteParametersResult(); AWS_SSM_API DeleteParametersResult(const Aws::AmazonWebServiceResult& result); AWS_SSM_API DeleteParametersResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The names of the deleted parameters.

*/ inline const Aws::Vector& GetDeletedParameters() const{ return m_deletedParameters; } /** *

The names of the deleted parameters.

*/ inline void SetDeletedParameters(const Aws::Vector& value) { m_deletedParameters = value; } /** *

The names of the deleted parameters.

*/ inline void SetDeletedParameters(Aws::Vector&& value) { m_deletedParameters = std::move(value); } /** *

The names of the deleted parameters.

*/ inline DeleteParametersResult& WithDeletedParameters(const Aws::Vector& value) { SetDeletedParameters(value); return *this;} /** *

The names of the deleted parameters.

*/ inline DeleteParametersResult& WithDeletedParameters(Aws::Vector&& value) { SetDeletedParameters(std::move(value)); return *this;} /** *

The names of the deleted parameters.

*/ inline DeleteParametersResult& AddDeletedParameters(const Aws::String& value) { m_deletedParameters.push_back(value); return *this; } /** *

The names of the deleted parameters.

*/ inline DeleteParametersResult& AddDeletedParameters(Aws::String&& value) { m_deletedParameters.push_back(std::move(value)); return *this; } /** *

The names of the deleted parameters.

*/ inline DeleteParametersResult& AddDeletedParameters(const char* value) { m_deletedParameters.push_back(value); return *this; } /** *

The names of parameters that weren't deleted because the parameters aren't * valid.

*/ inline const Aws::Vector& GetInvalidParameters() const{ return m_invalidParameters; } /** *

The names of parameters that weren't deleted because the parameters aren't * valid.

*/ inline void SetInvalidParameters(const Aws::Vector& value) { m_invalidParameters = value; } /** *

The names of parameters that weren't deleted because the parameters aren't * valid.

*/ inline void SetInvalidParameters(Aws::Vector&& value) { m_invalidParameters = std::move(value); } /** *

The names of parameters that weren't deleted because the parameters aren't * valid.

*/ inline DeleteParametersResult& WithInvalidParameters(const Aws::Vector& value) { SetInvalidParameters(value); return *this;} /** *

The names of parameters that weren't deleted because the parameters aren't * valid.

*/ inline DeleteParametersResult& WithInvalidParameters(Aws::Vector&& value) { SetInvalidParameters(std::move(value)); return *this;} /** *

The names of parameters that weren't deleted because the parameters aren't * valid.

*/ inline DeleteParametersResult& AddInvalidParameters(const Aws::String& value) { m_invalidParameters.push_back(value); return *this; } /** *

The names of parameters that weren't deleted because the parameters aren't * valid.

*/ inline DeleteParametersResult& AddInvalidParameters(Aws::String&& value) { m_invalidParameters.push_back(std::move(value)); return *this; } /** *

The names of parameters that weren't deleted because the parameters aren't * valid.

*/ inline DeleteParametersResult& AddInvalidParameters(const char* value) { m_invalidParameters.push_back(value); return *this; } inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DeleteParametersResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeleteParametersResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeleteParametersResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_deletedParameters; Aws::Vector m_invalidParameters; Aws::String m_requestId; }; } // namespace Model } // namespace SSM } // namespace Aws