/** * 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 { namespace Glue { namespace Model { /** */ class BatchGetDevEndpointsRequest : public GlueRequest { public: AWS_GLUE_API BatchGetDevEndpointsRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "BatchGetDevEndpoints"; } AWS_GLUE_API Aws::String SerializePayload() const override; AWS_GLUE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The list of DevEndpoint names, which might be the names returned * from the ListDevEndpoint operation.

*/ inline const Aws::Vector& GetDevEndpointNames() const{ return m_devEndpointNames; } /** *

The list of DevEndpoint names, which might be the names returned * from the ListDevEndpoint operation.

*/ inline bool DevEndpointNamesHasBeenSet() const { return m_devEndpointNamesHasBeenSet; } /** *

The list of DevEndpoint names, which might be the names returned * from the ListDevEndpoint operation.

*/ inline void SetDevEndpointNames(const Aws::Vector& value) { m_devEndpointNamesHasBeenSet = true; m_devEndpointNames = value; } /** *

The list of DevEndpoint names, which might be the names returned * from the ListDevEndpoint operation.

*/ inline void SetDevEndpointNames(Aws::Vector&& value) { m_devEndpointNamesHasBeenSet = true; m_devEndpointNames = std::move(value); } /** *

The list of DevEndpoint names, which might be the names returned * from the ListDevEndpoint operation.

*/ inline BatchGetDevEndpointsRequest& WithDevEndpointNames(const Aws::Vector& value) { SetDevEndpointNames(value); return *this;} /** *

The list of DevEndpoint names, which might be the names returned * from the ListDevEndpoint operation.

*/ inline BatchGetDevEndpointsRequest& WithDevEndpointNames(Aws::Vector&& value) { SetDevEndpointNames(std::move(value)); return *this;} /** *

The list of DevEndpoint names, which might be the names returned * from the ListDevEndpoint operation.

*/ inline BatchGetDevEndpointsRequest& AddDevEndpointNames(const Aws::String& value) { m_devEndpointNamesHasBeenSet = true; m_devEndpointNames.push_back(value); return *this; } /** *

The list of DevEndpoint names, which might be the names returned * from the ListDevEndpoint operation.

*/ inline BatchGetDevEndpointsRequest& AddDevEndpointNames(Aws::String&& value) { m_devEndpointNamesHasBeenSet = true; m_devEndpointNames.push_back(std::move(value)); return *this; } /** *

The list of DevEndpoint names, which might be the names returned * from the ListDevEndpoint operation.

*/ inline BatchGetDevEndpointsRequest& AddDevEndpointNames(const char* value) { m_devEndpointNamesHasBeenSet = true; m_devEndpointNames.push_back(value); return *this; } private: Aws::Vector m_devEndpointNames; bool m_devEndpointNamesHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws