This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-ecr/include/aws/ecr/model/ImageScanningConfiguration.h

84 lines
2.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ecr/ECR_EXPORTS.h>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace ECR
{
namespace Model
{
/**
* <p>The image scanning configuration for a repository.</p><p><h3>See Also:</h3>
* <a
* href="http://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/ImageScanningConfiguration">AWS
* API Reference</a></p>
*/
class AWS_ECR_API ImageScanningConfiguration
{
public:
ImageScanningConfiguration();
ImageScanningConfiguration(Aws::Utils::Json::JsonView jsonValue);
ImageScanningConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The setting that determines whether images are scanned after being pushed to
* a repository. If set to <code>true</code>, images will be scanned after being
* pushed. If this parameter is not specified, it will default to
* <code>false</code> and images will not be scanned unless a scan is manually
* started with the <a>StartImageScan</a> API.</p>
*/
inline bool GetScanOnPush() const{ return m_scanOnPush; }
/**
* <p>The setting that determines whether images are scanned after being pushed to
* a repository. If set to <code>true</code>, images will be scanned after being
* pushed. If this parameter is not specified, it will default to
* <code>false</code> and images will not be scanned unless a scan is manually
* started with the <a>StartImageScan</a> API.</p>
*/
inline bool ScanOnPushHasBeenSet() const { return m_scanOnPushHasBeenSet; }
/**
* <p>The setting that determines whether images are scanned after being pushed to
* a repository. If set to <code>true</code>, images will be scanned after being
* pushed. If this parameter is not specified, it will default to
* <code>false</code> and images will not be scanned unless a scan is manually
* started with the <a>StartImageScan</a> API.</p>
*/
inline void SetScanOnPush(bool value) { m_scanOnPushHasBeenSet = true; m_scanOnPush = value; }
/**
* <p>The setting that determines whether images are scanned after being pushed to
* a repository. If set to <code>true</code>, images will be scanned after being
* pushed. If this parameter is not specified, it will default to
* <code>false</code> and images will not be scanned unless a scan is manually
* started with the <a>StartImageScan</a> API.</p>
*/
inline ImageScanningConfiguration& WithScanOnPush(bool value) { SetScanOnPush(value); return *this;}
private:
bool m_scanOnPush;
bool m_scanOnPushHasBeenSet;
};
} // namespace Model
} // namespace ECR
} // namespace Aws