/** * 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 Glue { namespace Model { class BatchGetBlueprintsResult { public: AWS_GLUE_API BatchGetBlueprintsResult(); AWS_GLUE_API BatchGetBlueprintsResult(const Aws::AmazonWebServiceResult& result); AWS_GLUE_API BatchGetBlueprintsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Returns a list of blueprint as a Blueprints object.

*/ inline const Aws::Vector& GetBlueprints() const{ return m_blueprints; } /** *

Returns a list of blueprint as a Blueprints object.

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

Returns a list of blueprint as a Blueprints object.

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

Returns a list of blueprint as a Blueprints object.

*/ inline BatchGetBlueprintsResult& WithBlueprints(const Aws::Vector& value) { SetBlueprints(value); return *this;} /** *

Returns a list of blueprint as a Blueprints object.

*/ inline BatchGetBlueprintsResult& WithBlueprints(Aws::Vector&& value) { SetBlueprints(std::move(value)); return *this;} /** *

Returns a list of blueprint as a Blueprints object.

*/ inline BatchGetBlueprintsResult& AddBlueprints(const Blueprint& value) { m_blueprints.push_back(value); return *this; } /** *

Returns a list of blueprint as a Blueprints object.

*/ inline BatchGetBlueprintsResult& AddBlueprints(Blueprint&& value) { m_blueprints.push_back(std::move(value)); return *this; } /** *

Returns a list of BlueprintNames that were not found.

*/ inline const Aws::Vector& GetMissingBlueprints() const{ return m_missingBlueprints; } /** *

Returns a list of BlueprintNames that were not found.

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

Returns a list of BlueprintNames that were not found.

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

Returns a list of BlueprintNames that were not found.

*/ inline BatchGetBlueprintsResult& WithMissingBlueprints(const Aws::Vector& value) { SetMissingBlueprints(value); return *this;} /** *

Returns a list of BlueprintNames that were not found.

*/ inline BatchGetBlueprintsResult& WithMissingBlueprints(Aws::Vector&& value) { SetMissingBlueprints(std::move(value)); return *this;} /** *

Returns a list of BlueprintNames that were not found.

*/ inline BatchGetBlueprintsResult& AddMissingBlueprints(const Aws::String& value) { m_missingBlueprints.push_back(value); return *this; } /** *

Returns a list of BlueprintNames that were not found.

*/ inline BatchGetBlueprintsResult& AddMissingBlueprints(Aws::String&& value) { m_missingBlueprints.push_back(std::move(value)); return *this; } /** *

Returns a list of BlueprintNames that were not found.

*/ inline BatchGetBlueprintsResult& AddMissingBlueprints(const char* value) { m_missingBlueprints.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 BatchGetBlueprintsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline BatchGetBlueprintsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline BatchGetBlueprintsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_blueprints; Aws::Vector m_missingBlueprints; Aws::String m_requestId; }; } // namespace Model } // namespace Glue } // namespace Aws