/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input of a BatchGetOnPremisesInstances
* operation.See Also:
AWS
* API Reference
The names of the on-premises instances about which to get information. The * maximum number of instance names you can specify is 25.
*/ inline const Aws::VectorThe names of the on-premises instances about which to get information. The * maximum number of instance names you can specify is 25.
*/ inline bool InstanceNamesHasBeenSet() const { return m_instanceNamesHasBeenSet; } /** *The names of the on-premises instances about which to get information. The * maximum number of instance names you can specify is 25.
*/ inline void SetInstanceNames(const Aws::VectorThe names of the on-premises instances about which to get information. The * maximum number of instance names you can specify is 25.
*/ inline void SetInstanceNames(Aws::VectorThe names of the on-premises instances about which to get information. The * maximum number of instance names you can specify is 25.
*/ inline BatchGetOnPremisesInstancesRequest& WithInstanceNames(const Aws::VectorThe names of the on-premises instances about which to get information. The * maximum number of instance names you can specify is 25.
*/ inline BatchGetOnPremisesInstancesRequest& WithInstanceNames(Aws::VectorThe names of the on-premises instances about which to get information. The * maximum number of instance names you can specify is 25.
*/ inline BatchGetOnPremisesInstancesRequest& AddInstanceNames(const Aws::String& value) { m_instanceNamesHasBeenSet = true; m_instanceNames.push_back(value); return *this; } /** *The names of the on-premises instances about which to get information. The * maximum number of instance names you can specify is 25.
*/ inline BatchGetOnPremisesInstancesRequest& AddInstanceNames(Aws::String&& value) { m_instanceNamesHasBeenSet = true; m_instanceNames.push_back(std::move(value)); return *this; } /** *The names of the on-premises instances about which to get information. The * maximum number of instance names you can specify is 25.
*/ inline BatchGetOnPremisesInstancesRequest& AddInstanceNames(const char* value) { m_instanceNamesHasBeenSet = true; m_instanceNames.push_back(value); return *this; } private: Aws::Vector