/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input of a BatchGetDeployments
operation.
* See Also:
AWS
* API Reference
A list of deployment IDs, separated by spaces. The maximum number of * deployment IDs you can specify is 25.
*/ inline const Aws::VectorA list of deployment IDs, separated by spaces. The maximum number of * deployment IDs you can specify is 25.
*/ inline bool DeploymentIdsHasBeenSet() const { return m_deploymentIdsHasBeenSet; } /** *A list of deployment IDs, separated by spaces. The maximum number of * deployment IDs you can specify is 25.
*/ inline void SetDeploymentIds(const Aws::VectorA list of deployment IDs, separated by spaces. The maximum number of * deployment IDs you can specify is 25.
*/ inline void SetDeploymentIds(Aws::VectorA list of deployment IDs, separated by spaces. The maximum number of * deployment IDs you can specify is 25.
*/ inline BatchGetDeploymentsRequest& WithDeploymentIds(const Aws::VectorA list of deployment IDs, separated by spaces. The maximum number of * deployment IDs you can specify is 25.
*/ inline BatchGetDeploymentsRequest& WithDeploymentIds(Aws::VectorA list of deployment IDs, separated by spaces. The maximum number of * deployment IDs you can specify is 25.
*/ inline BatchGetDeploymentsRequest& AddDeploymentIds(const Aws::String& value) { m_deploymentIdsHasBeenSet = true; m_deploymentIds.push_back(value); return *this; } /** *A list of deployment IDs, separated by spaces. The maximum number of * deployment IDs you can specify is 25.
*/ inline BatchGetDeploymentsRequest& AddDeploymentIds(Aws::String&& value) { m_deploymentIdsHasBeenSet = true; m_deploymentIds.push_back(std::move(value)); return *this; } /** *A list of deployment IDs, separated by spaces. The maximum number of * deployment IDs you can specify is 25.
*/ inline BatchGetDeploymentsRequest& AddDeploymentIds(const char* value) { m_deploymentIdsHasBeenSet = true; m_deploymentIds.push_back(value); return *this; } private: Aws::Vector