/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies an Amazon Web Services account that owns S3 buckets for a
* classification job to analyze, and one or more specific buckets to analyze for
* that account.See Also:
AWS
* API Reference
The unique identifier for the Amazon Web Services account that owns the * buckets.
*/ inline const Aws::String& GetAccountId() const{ return m_accountId; } /** *The unique identifier for the Amazon Web Services account that owns the * buckets.
*/ inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; } /** *The unique identifier for the Amazon Web Services account that owns the * buckets.
*/ inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; } /** *The unique identifier for the Amazon Web Services account that owns the * buckets.
*/ inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); } /** *The unique identifier for the Amazon Web Services account that owns the * buckets.
*/ inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); } /** *The unique identifier for the Amazon Web Services account that owns the * buckets.
*/ inline S3BucketDefinitionForJob& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;} /** *The unique identifier for the Amazon Web Services account that owns the * buckets.
*/ inline S3BucketDefinitionForJob& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;} /** *The unique identifier for the Amazon Web Services account that owns the * buckets.
*/ inline S3BucketDefinitionForJob& WithAccountId(const char* value) { SetAccountId(value); return *this;} /** *An array that lists the names of the buckets.
*/ inline const Aws::VectorAn array that lists the names of the buckets.
*/ inline bool BucketsHasBeenSet() const { return m_bucketsHasBeenSet; } /** *An array that lists the names of the buckets.
*/ inline void SetBuckets(const Aws::VectorAn array that lists the names of the buckets.
*/ inline void SetBuckets(Aws::VectorAn array that lists the names of the buckets.
*/ inline S3BucketDefinitionForJob& WithBuckets(const Aws::VectorAn array that lists the names of the buckets.
*/ inline S3BucketDefinitionForJob& WithBuckets(Aws::VectorAn array that lists the names of the buckets.
*/ inline S3BucketDefinitionForJob& AddBuckets(const Aws::String& value) { m_bucketsHasBeenSet = true; m_buckets.push_back(value); return *this; } /** *An array that lists the names of the buckets.
*/ inline S3BucketDefinitionForJob& AddBuckets(Aws::String&& value) { m_bucketsHasBeenSet = true; m_buckets.push_back(std::move(value)); return *this; } /** *An array that lists the names of the buckets.
*/ inline S3BucketDefinitionForJob& AddBuckets(const char* value) { m_bucketsHasBeenSet = true; m_buckets.push_back(value); return *this; } private: Aws::String m_accountId; bool m_accountIdHasBeenSet = false; Aws::Vector