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

Specifies an S3 location where chat logs will be stored.

See * Also:

AWS * API Reference

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

Name of the Amazon S3 bucket where chat activity will be logged.

*/ inline const Aws::String& GetBucketName() const{ return m_bucketName; } /** *

Name of the Amazon S3 bucket where chat activity will be logged.

*/ inline bool BucketNameHasBeenSet() const { return m_bucketNameHasBeenSet; } /** *

Name of the Amazon S3 bucket where chat activity will be logged.

*/ inline void SetBucketName(const Aws::String& value) { m_bucketNameHasBeenSet = true; m_bucketName = value; } /** *

Name of the Amazon S3 bucket where chat activity will be logged.

*/ inline void SetBucketName(Aws::String&& value) { m_bucketNameHasBeenSet = true; m_bucketName = std::move(value); } /** *

Name of the Amazon S3 bucket where chat activity will be logged.

*/ inline void SetBucketName(const char* value) { m_bucketNameHasBeenSet = true; m_bucketName.assign(value); } /** *

Name of the Amazon S3 bucket where chat activity will be logged.

*/ inline S3DestinationConfiguration& WithBucketName(const Aws::String& value) { SetBucketName(value); return *this;} /** *

Name of the Amazon S3 bucket where chat activity will be logged.

*/ inline S3DestinationConfiguration& WithBucketName(Aws::String&& value) { SetBucketName(std::move(value)); return *this;} /** *

Name of the Amazon S3 bucket where chat activity will be logged.

*/ inline S3DestinationConfiguration& WithBucketName(const char* value) { SetBucketName(value); return *this;} private: Aws::String m_bucketName; bool m_bucketNameHasBeenSet = false; }; } // namespace Model } // namespace ivschat } // namespace Aws