/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The S3 location of the output reports.See Also:
AWS
* API Reference
The path of the business report.
*/ inline const Aws::String& GetPath() const{ return m_path; } /** *The path of the business report.
*/ inline bool PathHasBeenSet() const { return m_pathHasBeenSet; } /** *The path of the business report.
*/ inline void SetPath(const Aws::String& value) { m_pathHasBeenSet = true; m_path = value; } /** *The path of the business report.
*/ inline void SetPath(Aws::String&& value) { m_pathHasBeenSet = true; m_path = std::move(value); } /** *The path of the business report.
*/ inline void SetPath(const char* value) { m_pathHasBeenSet = true; m_path.assign(value); } /** *The path of the business report.
*/ inline BusinessReportS3Location& WithPath(const Aws::String& value) { SetPath(value); return *this;} /** *The path of the business report.
*/ inline BusinessReportS3Location& WithPath(Aws::String&& value) { SetPath(std::move(value)); return *this;} /** *The path of the business report.
*/ inline BusinessReportS3Location& WithPath(const char* value) { SetPath(value); return *this;} /** *The S3 bucket name of the output reports.
*/ inline const Aws::String& GetBucketName() const{ return m_bucketName; } /** *The S3 bucket name of the output reports.
*/ inline bool BucketNameHasBeenSet() const { return m_bucketNameHasBeenSet; } /** *The S3 bucket name of the output reports.
*/ inline void SetBucketName(const Aws::String& value) { m_bucketNameHasBeenSet = true; m_bucketName = value; } /** *The S3 bucket name of the output reports.
*/ inline void SetBucketName(Aws::String&& value) { m_bucketNameHasBeenSet = true; m_bucketName = std::move(value); } /** *The S3 bucket name of the output reports.
*/ inline void SetBucketName(const char* value) { m_bucketNameHasBeenSet = true; m_bucketName.assign(value); } /** *The S3 bucket name of the output reports.
*/ inline BusinessReportS3Location& WithBucketName(const Aws::String& value) { SetBucketName(value); return *this;} /** *The S3 bucket name of the output reports.
*/ inline BusinessReportS3Location& WithBucketName(Aws::String&& value) { SetBucketName(std::move(value)); return *this;} /** *The S3 bucket name of the output reports.
*/ inline BusinessReportS3Location& WithBucketName(const char* value) { SetBucketName(value); return *this;} private: Aws::String m_path; bool m_pathHasBeenSet = false; Aws::String m_bucketName; bool m_bucketNameHasBeenSet = false; }; } // namespace Model } // namespace AlexaForBusiness } // namespace Aws