/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information about conversation log settings.See
* Also:
AWS
* API Reference
The settings for your conversation logs. You can log text, audio, or * both.
*/ inline const Aws::VectorThe settings for your conversation logs. You can log text, audio, or * both.
*/ inline bool LogSettingsHasBeenSet() const { return m_logSettingsHasBeenSet; } /** *The settings for your conversation logs. You can log text, audio, or * both.
*/ inline void SetLogSettings(const Aws::VectorThe settings for your conversation logs. You can log text, audio, or * both.
*/ inline void SetLogSettings(Aws::VectorThe settings for your conversation logs. You can log text, audio, or * both.
*/ inline ConversationLogsResponse& WithLogSettings(const Aws::VectorThe settings for your conversation logs. You can log text, audio, or * both.
*/ inline ConversationLogsResponse& WithLogSettings(Aws::VectorThe settings for your conversation logs. You can log text, audio, or * both.
*/ inline ConversationLogsResponse& AddLogSettings(const LogSettingsResponse& value) { m_logSettingsHasBeenSet = true; m_logSettings.push_back(value); return *this; } /** *The settings for your conversation logs. You can log text, audio, or * both.
*/ inline ConversationLogsResponse& AddLogSettings(LogSettingsResponse&& value) { m_logSettingsHasBeenSet = true; m_logSettings.push_back(std::move(value)); return *this; } /** *The Amazon Resource Name (ARN) of the IAM role used to write your logs to * CloudWatch Logs or an S3 bucket.
*/ inline const Aws::String& GetIamRoleArn() const{ return m_iamRoleArn; } /** *The Amazon Resource Name (ARN) of the IAM role used to write your logs to * CloudWatch Logs or an S3 bucket.
*/ inline bool IamRoleArnHasBeenSet() const { return m_iamRoleArnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the IAM role used to write your logs to * CloudWatch Logs or an S3 bucket.
*/ inline void SetIamRoleArn(const Aws::String& value) { m_iamRoleArnHasBeenSet = true; m_iamRoleArn = value; } /** *The Amazon Resource Name (ARN) of the IAM role used to write your logs to * CloudWatch Logs or an S3 bucket.
*/ inline void SetIamRoleArn(Aws::String&& value) { m_iamRoleArnHasBeenSet = true; m_iamRoleArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the IAM role used to write your logs to * CloudWatch Logs or an S3 bucket.
*/ inline void SetIamRoleArn(const char* value) { m_iamRoleArnHasBeenSet = true; m_iamRoleArn.assign(value); } /** *The Amazon Resource Name (ARN) of the IAM role used to write your logs to * CloudWatch Logs or an S3 bucket.
*/ inline ConversationLogsResponse& WithIamRoleArn(const Aws::String& value) { SetIamRoleArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the IAM role used to write your logs to * CloudWatch Logs or an S3 bucket.
*/ inline ConversationLogsResponse& WithIamRoleArn(Aws::String&& value) { SetIamRoleArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the IAM role used to write your logs to * CloudWatch Logs or an S3 bucket.
*/ inline ConversationLogsResponse& WithIamRoleArn(const char* value) { SetIamRoleArn(value); return *this;} private: Aws::Vector