/** * 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 ECR { namespace Model { /** */ class BatchGetRepositoryScanningConfigurationRequest : public ECRRequest { public: AWS_ECR_API BatchGetRepositoryScanningConfigurationRequest(); // 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 "BatchGetRepositoryScanningConfiguration"; } AWS_ECR_API Aws::String SerializePayload() const override; AWS_ECR_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

One or more repository names to get the scanning configuration for.

*/ inline const Aws::Vector& GetRepositoryNames() const{ return m_repositoryNames; } /** *

One or more repository names to get the scanning configuration for.

*/ inline bool RepositoryNamesHasBeenSet() const { return m_repositoryNamesHasBeenSet; } /** *

One or more repository names to get the scanning configuration for.

*/ inline void SetRepositoryNames(const Aws::Vector& value) { m_repositoryNamesHasBeenSet = true; m_repositoryNames = value; } /** *

One or more repository names to get the scanning configuration for.

*/ inline void SetRepositoryNames(Aws::Vector&& value) { m_repositoryNamesHasBeenSet = true; m_repositoryNames = std::move(value); } /** *

One or more repository names to get the scanning configuration for.

*/ inline BatchGetRepositoryScanningConfigurationRequest& WithRepositoryNames(const Aws::Vector& value) { SetRepositoryNames(value); return *this;} /** *

One or more repository names to get the scanning configuration for.

*/ inline BatchGetRepositoryScanningConfigurationRequest& WithRepositoryNames(Aws::Vector&& value) { SetRepositoryNames(std::move(value)); return *this;} /** *

One or more repository names to get the scanning configuration for.

*/ inline BatchGetRepositoryScanningConfigurationRequest& AddRepositoryNames(const Aws::String& value) { m_repositoryNamesHasBeenSet = true; m_repositoryNames.push_back(value); return *this; } /** *

One or more repository names to get the scanning configuration for.

*/ inline BatchGetRepositoryScanningConfigurationRequest& AddRepositoryNames(Aws::String&& value) { m_repositoryNamesHasBeenSet = true; m_repositoryNames.push_back(std::move(value)); return *this; } /** *

One or more repository names to get the scanning configuration for.

*/ inline BatchGetRepositoryScanningConfigurationRequest& AddRepositoryNames(const char* value) { m_repositoryNamesHasBeenSet = true; m_repositoryNames.push_back(value); return *this; } private: Aws::Vector m_repositoryNames; bool m_repositoryNamesHasBeenSet = false; }; } // namespace Model } // namespace ECR } // namespace Aws