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

The location where SimSpace Weaver sends simulation log data.

See * Also:

AWS * API Reference

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

An Amazon CloudWatch Logs log group that stores simulation log data. For more * information about log groups, see Working * with log groups and log streams in the Amazon CloudWatch Logs User * Guide.

*/ inline const CloudWatchLogsLogGroup& GetCloudWatchLogsLogGroup() const{ return m_cloudWatchLogsLogGroup; } /** *

An Amazon CloudWatch Logs log group that stores simulation log data. For more * information about log groups, see Working * with log groups and log streams in the Amazon CloudWatch Logs User * Guide.

*/ inline bool CloudWatchLogsLogGroupHasBeenSet() const { return m_cloudWatchLogsLogGroupHasBeenSet; } /** *

An Amazon CloudWatch Logs log group that stores simulation log data. For more * information about log groups, see Working * with log groups and log streams in the Amazon CloudWatch Logs User * Guide.

*/ inline void SetCloudWatchLogsLogGroup(const CloudWatchLogsLogGroup& value) { m_cloudWatchLogsLogGroupHasBeenSet = true; m_cloudWatchLogsLogGroup = value; } /** *

An Amazon CloudWatch Logs log group that stores simulation log data. For more * information about log groups, see Working * with log groups and log streams in the Amazon CloudWatch Logs User * Guide.

*/ inline void SetCloudWatchLogsLogGroup(CloudWatchLogsLogGroup&& value) { m_cloudWatchLogsLogGroupHasBeenSet = true; m_cloudWatchLogsLogGroup = std::move(value); } /** *

An Amazon CloudWatch Logs log group that stores simulation log data. For more * information about log groups, see Working * with log groups and log streams in the Amazon CloudWatch Logs User * Guide.

*/ inline LogDestination& WithCloudWatchLogsLogGroup(const CloudWatchLogsLogGroup& value) { SetCloudWatchLogsLogGroup(value); return *this;} /** *

An Amazon CloudWatch Logs log group that stores simulation log data. For more * information about log groups, see Working * with log groups and log streams in the Amazon CloudWatch Logs User * Guide.

*/ inline LogDestination& WithCloudWatchLogsLogGroup(CloudWatchLogsLogGroup&& value) { SetCloudWatchLogsLogGroup(std::move(value)); return *this;} private: CloudWatchLogsLogGroup m_cloudWatchLogsLogGroup; bool m_cloudWatchLogsLogGroupHasBeenSet = false; }; } // namespace Model } // namespace SimSpaceWeaver } // namespace Aws