/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The controls that Config uses for executing remediations.See
* Also:
AWS
* API Reference
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