/** * 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 Amazon CloudWatch Logs log group for the simulation. For more information * about log groups, see Working * with log groups and log streams in the Amazon CloudWatch Logs User * Guide.

See Also:

AWS * API Reference

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

The Amazon Resource Name (ARN) of the Amazon CloudWatch Logs log group for * the simulation. For more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General Reference. * For more information about log groups, see Working * with log groups and log streams in the Amazon CloudWatch Logs User * Guide.

*/ inline const Aws::String& GetLogGroupArn() const{ return m_logGroupArn; } /** *

The Amazon Resource Name (ARN) of the Amazon CloudWatch Logs log group for * the simulation. For more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General Reference. * For more information about log groups, see Working * with log groups and log streams in the Amazon CloudWatch Logs User * Guide.

*/ inline bool LogGroupArnHasBeenSet() const { return m_logGroupArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the Amazon CloudWatch Logs log group for * the simulation. For more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General Reference. * For more information about log groups, see Working * with log groups and log streams in the Amazon CloudWatch Logs User * Guide.

*/ inline void SetLogGroupArn(const Aws::String& value) { m_logGroupArnHasBeenSet = true; m_logGroupArn = value; } /** *

The Amazon Resource Name (ARN) of the Amazon CloudWatch Logs log group for * the simulation. For more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General Reference. * For more information about log groups, see Working * with log groups and log streams in the Amazon CloudWatch Logs User * Guide.

*/ inline void SetLogGroupArn(Aws::String&& value) { m_logGroupArnHasBeenSet = true; m_logGroupArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the Amazon CloudWatch Logs log group for * the simulation. For more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General Reference. * For more information about log groups, see Working * with log groups and log streams in the Amazon CloudWatch Logs User * Guide.

*/ inline void SetLogGroupArn(const char* value) { m_logGroupArnHasBeenSet = true; m_logGroupArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the Amazon CloudWatch Logs log group for * the simulation. For more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General Reference. * For more information about log groups, see Working * with log groups and log streams in the Amazon CloudWatch Logs User * Guide.

*/ inline CloudWatchLogsLogGroup& WithLogGroupArn(const Aws::String& value) { SetLogGroupArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the Amazon CloudWatch Logs log group for * the simulation. For more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General Reference. * For more information about log groups, see Working * with log groups and log streams in the Amazon CloudWatch Logs User * Guide.

*/ inline CloudWatchLogsLogGroup& WithLogGroupArn(Aws::String&& value) { SetLogGroupArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the Amazon CloudWatch Logs log group for * the simulation. For more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General Reference. * For more information about log groups, see Working * with log groups and log streams in the Amazon CloudWatch Logs User * Guide.

*/ inline CloudWatchLogsLogGroup& WithLogGroupArn(const char* value) { SetLogGroupArn(value); return *this;} private: Aws::String m_logGroupArn; bool m_logGroupArnHasBeenSet = false; }; } // namespace Model } // namespace SimSpaceWeaver } // namespace Aws