/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Macie2 { namespace Model { /** *

Specifies the S3 buckets that are excluded from automated sensitive data * discovery for an Amazon Macie account.

See Also:

AWS * API Reference

*/ class S3ClassificationScope { public: AWS_MACIE2_API S3ClassificationScope(); AWS_MACIE2_API S3ClassificationScope(Aws::Utils::Json::JsonView jsonValue); AWS_MACIE2_API S3ClassificationScope& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_MACIE2_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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