/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The Amazon Chime Business Calling settings for the administrator's AWS
* account. Includes any Amazon S3 buckets designated for storing call detail
* records.See Also:
AWS
* API Reference
The Amazon S3 bucket designated for call detail record storage.
*/ inline const Aws::String& GetCdrBucket() const{ return m_cdrBucket; } /** *The Amazon S3 bucket designated for call detail record storage.
*/ inline bool CdrBucketHasBeenSet() const { return m_cdrBucketHasBeenSet; } /** *The Amazon S3 bucket designated for call detail record storage.
*/ inline void SetCdrBucket(const Aws::String& value) { m_cdrBucketHasBeenSet = true; m_cdrBucket = value; } /** *The Amazon S3 bucket designated for call detail record storage.
*/ inline void SetCdrBucket(Aws::String&& value) { m_cdrBucketHasBeenSet = true; m_cdrBucket = std::move(value); } /** *The Amazon S3 bucket designated for call detail record storage.
*/ inline void SetCdrBucket(const char* value) { m_cdrBucketHasBeenSet = true; m_cdrBucket.assign(value); } /** *The Amazon S3 bucket designated for call detail record storage.
*/ inline BusinessCallingSettings& WithCdrBucket(const Aws::String& value) { SetCdrBucket(value); return *this;} /** *The Amazon S3 bucket designated for call detail record storage.
*/ inline BusinessCallingSettings& WithCdrBucket(Aws::String&& value) { SetCdrBucket(std::move(value)); return *this;} /** *The Amazon S3 bucket designated for call detail record storage.
*/ inline BusinessCallingSettings& WithCdrBucket(const char* value) { SetCdrBucket(value); return *this;} private: Aws::String m_cdrBucket; bool m_cdrBucketHasBeenSet = false; }; } // namespace Model } // namespace Chime } // namespace Aws