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

An array of objects, one for each custom data identifier that matches the * criteria specified in the request.

*/ inline const Aws::Vector& GetCustomDataIdentifiers() const{ return m_customDataIdentifiers; } /** *

An array of objects, one for each custom data identifier that matches the * criteria specified in the request.

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

An array of objects, one for each custom data identifier that matches the * criteria specified in the request.

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

An array of objects, one for each custom data identifier that matches the * criteria specified in the request.

*/ inline BatchGetCustomDataIdentifiersResult& WithCustomDataIdentifiers(const Aws::Vector& value) { SetCustomDataIdentifiers(value); return *this;} /** *

An array of objects, one for each custom data identifier that matches the * criteria specified in the request.

*/ inline BatchGetCustomDataIdentifiersResult& WithCustomDataIdentifiers(Aws::Vector&& value) { SetCustomDataIdentifiers(std::move(value)); return *this;} /** *

An array of objects, one for each custom data identifier that matches the * criteria specified in the request.

*/ inline BatchGetCustomDataIdentifiersResult& AddCustomDataIdentifiers(const BatchGetCustomDataIdentifierSummary& value) { m_customDataIdentifiers.push_back(value); return *this; } /** *

An array of objects, one for each custom data identifier that matches the * criteria specified in the request.

*/ inline BatchGetCustomDataIdentifiersResult& AddCustomDataIdentifiers(BatchGetCustomDataIdentifierSummary&& value) { m_customDataIdentifiers.push_back(std::move(value)); return *this; } /** *

An array of custom data identifier IDs, one for each custom data identifier * that was specified in the request but doesn't correlate to an existing custom * data identifier.

*/ inline const Aws::Vector& GetNotFoundIdentifierIds() const{ return m_notFoundIdentifierIds; } /** *

An array of custom data identifier IDs, one for each custom data identifier * that was specified in the request but doesn't correlate to an existing custom * data identifier.

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

An array of custom data identifier IDs, one for each custom data identifier * that was specified in the request but doesn't correlate to an existing custom * data identifier.

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

An array of custom data identifier IDs, one for each custom data identifier * that was specified in the request but doesn't correlate to an existing custom * data identifier.

*/ inline BatchGetCustomDataIdentifiersResult& WithNotFoundIdentifierIds(const Aws::Vector& value) { SetNotFoundIdentifierIds(value); return *this;} /** *

An array of custom data identifier IDs, one for each custom data identifier * that was specified in the request but doesn't correlate to an existing custom * data identifier.

*/ inline BatchGetCustomDataIdentifiersResult& WithNotFoundIdentifierIds(Aws::Vector&& value) { SetNotFoundIdentifierIds(std::move(value)); return *this;} /** *

An array of custom data identifier IDs, one for each custom data identifier * that was specified in the request but doesn't correlate to an existing custom * data identifier.

*/ inline BatchGetCustomDataIdentifiersResult& AddNotFoundIdentifierIds(const Aws::String& value) { m_notFoundIdentifierIds.push_back(value); return *this; } /** *

An array of custom data identifier IDs, one for each custom data identifier * that was specified in the request but doesn't correlate to an existing custom * data identifier.

*/ inline BatchGetCustomDataIdentifiersResult& AddNotFoundIdentifierIds(Aws::String&& value) { m_notFoundIdentifierIds.push_back(std::move(value)); return *this; } /** *

An array of custom data identifier IDs, one for each custom data identifier * that was specified in the request but doesn't correlate to an existing custom * data identifier.

*/ inline BatchGetCustomDataIdentifiersResult& AddNotFoundIdentifierIds(const char* value) { m_notFoundIdentifierIds.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 BatchGetCustomDataIdentifiersResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline BatchGetCustomDataIdentifiersResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline BatchGetCustomDataIdentifiersResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_customDataIdentifiers; Aws::Vector m_notFoundIdentifierIds; Aws::String m_requestId; }; } // namespace Model } // namespace Macie2 } // namespace Aws