/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The LoggingConfiguration
data type is used to set CloudWatch
* Logs options. See Also:
AWS
* API Reference
An array of objects that describes where your execution history events will * be logged.
*/ inline const Aws::VectorAn array of objects that describes where your execution history events will * be logged.
*/ inline bool DestinationsHasBeenSet() const { return m_destinationsHasBeenSet; } /** *An array of objects that describes where your execution history events will * be logged.
*/ inline void SetDestinations(const Aws::VectorAn array of objects that describes where your execution history events will * be logged.
*/ inline void SetDestinations(Aws::VectorAn array of objects that describes where your execution history events will * be logged.
*/ inline AwsStepFunctionStateMachineLoggingConfigurationDetails& WithDestinations(const Aws::VectorAn array of objects that describes where your execution history events will * be logged.
*/ inline AwsStepFunctionStateMachineLoggingConfigurationDetails& WithDestinations(Aws::VectorAn array of objects that describes where your execution history events will * be logged.
*/ inline AwsStepFunctionStateMachineLoggingConfigurationDetails& AddDestinations(const AwsStepFunctionStateMachineLoggingConfigurationDestinationsDetails& value) { m_destinationsHasBeenSet = true; m_destinations.push_back(value); return *this; } /** *An array of objects that describes where your execution history events will * be logged.
*/ inline AwsStepFunctionStateMachineLoggingConfigurationDetails& AddDestinations(AwsStepFunctionStateMachineLoggingConfigurationDestinationsDetails&& value) { m_destinationsHasBeenSet = true; m_destinations.push_back(std::move(value)); return *this; } /** *Determines whether execution data is included in your log. When set to * false, data is excluded.
*/ inline bool GetIncludeExecutionData() const{ return m_includeExecutionData; } /** *Determines whether execution data is included in your log. When set to * false, data is excluded.
*/ inline bool IncludeExecutionDataHasBeenSet() const { return m_includeExecutionDataHasBeenSet; } /** *Determines whether execution data is included in your log. When set to * false, data is excluded.
*/ inline void SetIncludeExecutionData(bool value) { m_includeExecutionDataHasBeenSet = true; m_includeExecutionData = value; } /** *Determines whether execution data is included in your log. When set to * false, data is excluded.
*/ inline AwsStepFunctionStateMachineLoggingConfigurationDetails& WithIncludeExecutionData(bool value) { SetIncludeExecutionData(value); return *this;} /** *Defines which category of execution history events are logged.
*/ inline const Aws::String& GetLevel() const{ return m_level; } /** *Defines which category of execution history events are logged.
*/ inline bool LevelHasBeenSet() const { return m_levelHasBeenSet; } /** *Defines which category of execution history events are logged.
*/ inline void SetLevel(const Aws::String& value) { m_levelHasBeenSet = true; m_level = value; } /** *Defines which category of execution history events are logged.
*/ inline void SetLevel(Aws::String&& value) { m_levelHasBeenSet = true; m_level = std::move(value); } /** *Defines which category of execution history events are logged.
*/ inline void SetLevel(const char* value) { m_levelHasBeenSet = true; m_level.assign(value); } /** *Defines which category of execution history events are logged.
*/ inline AwsStepFunctionStateMachineLoggingConfigurationDetails& WithLevel(const Aws::String& value) { SetLevel(value); return *this;} /** *Defines which category of execution history events are logged.
*/ inline AwsStepFunctionStateMachineLoggingConfigurationDetails& WithLevel(Aws::String&& value) { SetLevel(std::move(value)); return *this;} /** *Defines which category of execution history events are logged.
*/ inline AwsStepFunctionStateMachineLoggingConfigurationDetails& WithLevel(const char* value) { SetLevel(value); return *this;} private: Aws::Vector