/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies the S3 buckets that are excluded from automated sensitive data
* discovery for an Amazon Macie account.See Also:
AWS
* API Reference
The S3 buckets that are excluded.
*/ inline const S3ClassificationScopeExclusion& GetExcludes() const{ return m_excludes; } /** *The S3 buckets that are excluded.
*/ inline bool ExcludesHasBeenSet() const { return m_excludesHasBeenSet; } /** *The S3 buckets that are excluded.
*/ inline void SetExcludes(const S3ClassificationScopeExclusion& value) { m_excludesHasBeenSet = true; m_excludes = value; } /** *The S3 buckets that are excluded.
*/ inline void SetExcludes(S3ClassificationScopeExclusion&& value) { m_excludesHasBeenSet = true; m_excludes = std::move(value); } /** *The S3 buckets that are excluded.
*/ inline S3ClassificationScope& WithExcludes(const S3ClassificationScopeExclusion& value) { SetExcludes(value); return *this;} /** *The S3 buckets that are excluded.
*/ inline S3ClassificationScope& WithExcludes(S3ClassificationScopeExclusion&& value) { SetExcludes(std::move(value)); return *this;} private: S3ClassificationScopeExclusion m_excludes; bool m_excludesHasBeenSet = false; }; } // namespace Model } // namespace Macie2 } // namespace Aws