/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An array of objects that describes where your execution history events will
* be logged. See Also:
AWS
* API Reference
An object describing a CloudWatch Logs log group. For more information, see * * Amazon Web Services::Logs::LogGroup in the CloudFormation User Guide. *
*/ inline const AwsStepFunctionStateMachineLoggingConfigurationDestinationsCloudWatchLogsLogGroupDetails& GetCloudWatchLogsLogGroup() const{ return m_cloudWatchLogsLogGroup; } /** *An object describing a CloudWatch Logs log group. For more information, see * * Amazon Web Services::Logs::LogGroup in the CloudFormation User Guide. *
*/ inline bool CloudWatchLogsLogGroupHasBeenSet() const { return m_cloudWatchLogsLogGroupHasBeenSet; } /** *An object describing a CloudWatch Logs log group. For more information, see * * Amazon Web Services::Logs::LogGroup in the CloudFormation User Guide. *
*/ inline void SetCloudWatchLogsLogGroup(const AwsStepFunctionStateMachineLoggingConfigurationDestinationsCloudWatchLogsLogGroupDetails& value) { m_cloudWatchLogsLogGroupHasBeenSet = true; m_cloudWatchLogsLogGroup = value; } /** *An object describing a CloudWatch Logs log group. For more information, see * * Amazon Web Services::Logs::LogGroup in the CloudFormation User Guide. *
*/ inline void SetCloudWatchLogsLogGroup(AwsStepFunctionStateMachineLoggingConfigurationDestinationsCloudWatchLogsLogGroupDetails&& value) { m_cloudWatchLogsLogGroupHasBeenSet = true; m_cloudWatchLogsLogGroup = std::move(value); } /** *An object describing a CloudWatch Logs log group. For more information, see * * Amazon Web Services::Logs::LogGroup in the CloudFormation User Guide. *
*/ inline AwsStepFunctionStateMachineLoggingConfigurationDestinationsDetails& WithCloudWatchLogsLogGroup(const AwsStepFunctionStateMachineLoggingConfigurationDestinationsCloudWatchLogsLogGroupDetails& value) { SetCloudWatchLogsLogGroup(value); return *this;} /** *An object describing a CloudWatch Logs log group. For more information, see * * Amazon Web Services::Logs::LogGroup in the CloudFormation User Guide. *
*/ inline AwsStepFunctionStateMachineLoggingConfigurationDestinationsDetails& WithCloudWatchLogsLogGroup(AwsStepFunctionStateMachineLoggingConfigurationDestinationsCloudWatchLogsLogGroupDetails&& value) { SetCloudWatchLogsLogGroup(std::move(value)); return *this;} private: AwsStepFunctionStateMachineLoggingConfigurationDestinationsCloudWatchLogsLogGroupDetails m_cloudWatchLogsLogGroup; bool m_cloudWatchLogsLogGroupHasBeenSet = false; }; } // namespace Model } // namespace SecurityHub } // namespace Aws