/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies the names of the S3 buckets that are excluded from automated
* sensitive data discovery.See Also:
AWS
* API Reference
An array of strings, one for each S3 bucket that is excluded. Each string is * the full name of an excluded bucket.
*/ inline const Aws::VectorAn array of strings, one for each S3 bucket that is excluded. Each string is * the full name of an excluded bucket.
*/ inline bool BucketNamesHasBeenSet() const { return m_bucketNamesHasBeenSet; } /** *An array of strings, one for each S3 bucket that is excluded. Each string is * the full name of an excluded bucket.
*/ inline void SetBucketNames(const Aws::VectorAn array of strings, one for each S3 bucket that is excluded. Each string is * the full name of an excluded bucket.
*/ inline void SetBucketNames(Aws::VectorAn array of strings, one for each S3 bucket that is excluded. Each string is * the full name of an excluded bucket.
*/ inline S3ClassificationScopeExclusion& WithBucketNames(const Aws::VectorAn array of strings, one for each S3 bucket that is excluded. Each string is * the full name of an excluded bucket.
*/ inline S3ClassificationScopeExclusion& WithBucketNames(Aws::VectorAn array of strings, one for each S3 bucket that is excluded. Each string is * the full name of an excluded bucket.
*/ inline S3ClassificationScopeExclusion& AddBucketNames(const Aws::String& value) { m_bucketNamesHasBeenSet = true; m_bucketNames.push_back(value); return *this; } /** *An array of strings, one for each S3 bucket that is excluded. Each string is * the full name of an excluded bucket.
*/ inline S3ClassificationScopeExclusion& AddBucketNames(Aws::String&& value) { m_bucketNamesHasBeenSet = true; m_bucketNames.push_back(std::move(value)); return *this; } /** *An array of strings, one for each S3 bucket that is excluded. Each string is * the full name of an excluded bucket.
*/ inline S3ClassificationScopeExclusion& AddBucketNames(const char* value) { m_bucketNamesHasBeenSet = true; m_bucketNames.push_back(value); return *this; } private: Aws::Vector