/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information from your report job about your report
* destination.See Also:
AWS
* API Reference
The unique name of the Amazon S3 bucket that receives your reports.
*/ inline const Aws::String& GetS3BucketName() const{ return m_s3BucketName; } /** *The unique name of the Amazon S3 bucket that receives your reports.
*/ inline bool S3BucketNameHasBeenSet() const { return m_s3BucketNameHasBeenSet; } /** *The unique name of the Amazon S3 bucket that receives your reports.
*/ inline void SetS3BucketName(const Aws::String& value) { m_s3BucketNameHasBeenSet = true; m_s3BucketName = value; } /** *The unique name of the Amazon S3 bucket that receives your reports.
*/ inline void SetS3BucketName(Aws::String&& value) { m_s3BucketNameHasBeenSet = true; m_s3BucketName = std::move(value); } /** *The unique name of the Amazon S3 bucket that receives your reports.
*/ inline void SetS3BucketName(const char* value) { m_s3BucketNameHasBeenSet = true; m_s3BucketName.assign(value); } /** *The unique name of the Amazon S3 bucket that receives your reports.
*/ inline ReportDestination& WithS3BucketName(const Aws::String& value) { SetS3BucketName(value); return *this;} /** *The unique name of the Amazon S3 bucket that receives your reports.
*/ inline ReportDestination& WithS3BucketName(Aws::String&& value) { SetS3BucketName(std::move(value)); return *this;} /** *The unique name of the Amazon S3 bucket that receives your reports.
*/ inline ReportDestination& WithS3BucketName(const char* value) { SetS3BucketName(value); return *this;} /** *The object key that uniquely identifies your reports in your S3 bucket.
*/ inline const Aws::VectorThe object key that uniquely identifies your reports in your S3 bucket.
*/ inline bool S3KeysHasBeenSet() const { return m_s3KeysHasBeenSet; } /** *The object key that uniquely identifies your reports in your S3 bucket.
*/ inline void SetS3Keys(const Aws::VectorThe object key that uniquely identifies your reports in your S3 bucket.
*/ inline void SetS3Keys(Aws::VectorThe object key that uniquely identifies your reports in your S3 bucket.
*/ inline ReportDestination& WithS3Keys(const Aws::VectorThe object key that uniquely identifies your reports in your S3 bucket.
*/ inline ReportDestination& WithS3Keys(Aws::VectorThe object key that uniquely identifies your reports in your S3 bucket.
*/ inline ReportDestination& AddS3Keys(const Aws::String& value) { m_s3KeysHasBeenSet = true; m_s3Keys.push_back(value); return *this; } /** *The object key that uniquely identifies your reports in your S3 bucket.
*/ inline ReportDestination& AddS3Keys(Aws::String&& value) { m_s3KeysHasBeenSet = true; m_s3Keys.push_back(std::move(value)); return *this; } /** *The object key that uniquely identifies your reports in your S3 bucket.
*/ inline ReportDestination& AddS3Keys(const char* value) { m_s3KeysHasBeenSet = true; m_s3Keys.push_back(value); return *this; } private: Aws::String m_s3BucketName; bool m_s3BucketNameHasBeenSet = false; Aws::Vector