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

The controls that Config uses for executing remediations.

See * Also:

AWS * API Reference

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

A SsmControls object.

*/ inline const SsmControls& GetSsmControls() const{ return m_ssmControls; } /** *

A SsmControls object.

*/ inline bool SsmControlsHasBeenSet() const { return m_ssmControlsHasBeenSet; } /** *

A SsmControls object.

*/ inline void SetSsmControls(const SsmControls& value) { m_ssmControlsHasBeenSet = true; m_ssmControls = value; } /** *

A SsmControls object.

*/ inline void SetSsmControls(SsmControls&& value) { m_ssmControlsHasBeenSet = true; m_ssmControls = std::move(value); } /** *

A SsmControls object.

*/ inline ExecutionControls& WithSsmControls(const SsmControls& value) { SetSsmControls(value); return *this;} /** *

A SsmControls object.

*/ inline ExecutionControls& WithSsmControls(SsmControls&& value) { SetSsmControls(std::move(value)); return *this;} private: SsmControls m_ssmControls; bool m_ssmControlsHasBeenSet = false; }; } // namespace Model } // namespace ConfigService } // namespace Aws