/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The scanning configuration for a private registry.See Also:
* AWS
* API Reference
The type of scanning configured for the registry.
*/ inline const ScanType& GetScanType() const{ return m_scanType; } /** *The type of scanning configured for the registry.
*/ inline bool ScanTypeHasBeenSet() const { return m_scanTypeHasBeenSet; } /** *The type of scanning configured for the registry.
*/ inline void SetScanType(const ScanType& value) { m_scanTypeHasBeenSet = true; m_scanType = value; } /** *The type of scanning configured for the registry.
*/ inline void SetScanType(ScanType&& value) { m_scanTypeHasBeenSet = true; m_scanType = std::move(value); } /** *The type of scanning configured for the registry.
*/ inline RegistryScanningConfiguration& WithScanType(const ScanType& value) { SetScanType(value); return *this;} /** *The type of scanning configured for the registry.
*/ inline RegistryScanningConfiguration& WithScanType(ScanType&& value) { SetScanType(std::move(value)); return *this;} /** *The scanning rules associated with the registry.
*/ inline const Aws::VectorThe scanning rules associated with the registry.
*/ inline bool RulesHasBeenSet() const { return m_rulesHasBeenSet; } /** *The scanning rules associated with the registry.
*/ inline void SetRules(const Aws::VectorThe scanning rules associated with the registry.
*/ inline void SetRules(Aws::VectorThe scanning rules associated with the registry.
*/ inline RegistryScanningConfiguration& WithRules(const Aws::VectorThe scanning rules associated with the registry.
*/ inline RegistryScanningConfiguration& WithRules(Aws::VectorThe scanning rules associated with the registry.
*/ inline RegistryScanningConfiguration& AddRules(const RegistryScanningRule& value) { m_rulesHasBeenSet = true; m_rules.push_back(value); return *this; } /** *The scanning rules associated with the registry.
*/ inline RegistryScanningConfiguration& AddRules(RegistryScanningRule&& value) { m_rulesHasBeenSet = true; m_rules.push_back(std::move(value)); return *this; } private: ScanType m_scanType; bool m_scanTypeHasBeenSet = false; Aws::Vector