/** * 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 AWS_MACIE2_API BatchGetCustomDataIdentifiersResult { public: BatchGetCustomDataIdentifiersResult(); BatchGetCustomDataIdentifiersResult(const Aws::AmazonWebServiceResult& result); BatchGetCustomDataIdentifiersResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

An array of objects, one for each custom data identifier that meets 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 meets 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 meets 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 meets 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 meets 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 meets 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 meets the * criteria specified in the request.

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

An array of identifiers, one for each 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 identifiers, one for each 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 identifiers, one for each 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 identifiers, one for each 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 identifiers, one for each 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 identifiers, one for each 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 identifiers, one for each 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 identifiers, one for each 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; } private: Aws::Vector m_customDataIdentifiers; Aws::Vector m_notFoundIdentifierIds; }; } // namespace Model } // namespace Macie2 } // namespace Aws