/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input of a batch get repositories operation.See
* Also:
AWS
* API Reference
The names of the repositories to get information about.
The * length constraint limit is for each string in the array. The array itself can be * empty.
*/ inline const Aws::VectorThe names of the repositories to get information about.
The * length constraint limit is for each string in the array. The array itself can be * empty.
*/ inline bool RepositoryNamesHasBeenSet() const { return m_repositoryNamesHasBeenSet; } /** *The names of the repositories to get information about.
The * length constraint limit is for each string in the array. The array itself can be * empty.
*/ inline void SetRepositoryNames(const Aws::VectorThe names of the repositories to get information about.
The * length constraint limit is for each string in the array. The array itself can be * empty.
*/ inline void SetRepositoryNames(Aws::VectorThe names of the repositories to get information about.
The * length constraint limit is for each string in the array. The array itself can be * empty.
*/ inline BatchGetRepositoriesRequest& WithRepositoryNames(const Aws::VectorThe names of the repositories to get information about.
The * length constraint limit is for each string in the array. The array itself can be * empty.
*/ inline BatchGetRepositoriesRequest& WithRepositoryNames(Aws::VectorThe names of the repositories to get information about.
The * length constraint limit is for each string in the array. The array itself can be * empty.
*/ inline BatchGetRepositoriesRequest& AddRepositoryNames(const Aws::String& value) { m_repositoryNamesHasBeenSet = true; m_repositoryNames.push_back(value); return *this; } /** *The names of the repositories to get information about.
The * length constraint limit is for each string in the array. The array itself can be * empty.
*/ inline BatchGetRepositoriesRequest& AddRepositoryNames(Aws::String&& value) { m_repositoryNamesHasBeenSet = true; m_repositoryNames.push_back(std::move(value)); return *this; } /** *The names of the repositories to get information about.
The * length constraint limit is for each string in the array. The array itself can be * empty.
*/ inline BatchGetRepositoriesRequest& AddRepositoryNames(const char* value) { m_repositoryNamesHasBeenSet = true; m_repositoryNames.push_back(value); return *this; } private: Aws::Vector