/** * 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 AlexaForBusiness { namespace Model { /** *

The S3 location of the output reports.

See Also:

AWS * API Reference

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

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