/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The configuration for an application to automatically start on job
* submission.See Also:
AWS
* API Reference
Enables the application to automatically start on job submission. Defaults to * true.
*/ inline bool GetEnabled() const{ return m_enabled; } /** *Enables the application to automatically start on job submission. Defaults to * true.
*/ inline bool EnabledHasBeenSet() const { return m_enabledHasBeenSet; } /** *Enables the application to automatically start on job submission. Defaults to * true.
*/ inline void SetEnabled(bool value) { m_enabledHasBeenSet = true; m_enabled = value; } /** *Enables the application to automatically start on job submission. Defaults to * true.
*/ inline AutoStartConfig& WithEnabled(bool value) { SetEnabled(value); return *this;} private: bool m_enabled; bool m_enabledHasBeenSet = false; }; } // namespace Model } // namespace EMRServerless } // namespace Aws