/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Reports the configuration of a bootstrap action in a cluster (job
* flow).See Also:
AWS
* API Reference
A description of the bootstrap action.
*/ inline const BootstrapActionConfig& GetBootstrapActionConfig() const{ return m_bootstrapActionConfig; } /** *A description of the bootstrap action.
*/ inline bool BootstrapActionConfigHasBeenSet() const { return m_bootstrapActionConfigHasBeenSet; } /** *A description of the bootstrap action.
*/ inline void SetBootstrapActionConfig(const BootstrapActionConfig& value) { m_bootstrapActionConfigHasBeenSet = true; m_bootstrapActionConfig = value; } /** *A description of the bootstrap action.
*/ inline void SetBootstrapActionConfig(BootstrapActionConfig&& value) { m_bootstrapActionConfigHasBeenSet = true; m_bootstrapActionConfig = std::move(value); } /** *A description of the bootstrap action.
*/ inline BootstrapActionDetail& WithBootstrapActionConfig(const BootstrapActionConfig& value) { SetBootstrapActionConfig(value); return *this;} /** *A description of the bootstrap action.
*/ inline BootstrapActionDetail& WithBootstrapActionConfig(BootstrapActionConfig&& value) { SetBootstrapActionConfig(std::move(value)); return *this;} private: BootstrapActionConfig m_bootstrapActionConfig; bool m_bootstrapActionConfigHasBeenSet = false; }; } // namespace Model } // namespace EMR } // namespace Aws