/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include State information about the operation step.See Also:
AWS
* API Reference
The steps current status.
*/ inline const Aws::String& GetStepStatus() const{ return m_stepStatus; } /** *The steps current status.
*/ inline bool StepStatusHasBeenSet() const { return m_stepStatusHasBeenSet; } /** *The steps current status.
*/ inline void SetStepStatus(const Aws::String& value) { m_stepStatusHasBeenSet = true; m_stepStatus = value; } /** *The steps current status.
*/ inline void SetStepStatus(Aws::String&& value) { m_stepStatusHasBeenSet = true; m_stepStatus = std::move(value); } /** *The steps current status.
*/ inline void SetStepStatus(const char* value) { m_stepStatusHasBeenSet = true; m_stepStatus.assign(value); } /** *The steps current status.
*/ inline ClusterOperationStepInfo& WithStepStatus(const Aws::String& value) { SetStepStatus(value); return *this;} /** *The steps current status.
*/ inline ClusterOperationStepInfo& WithStepStatus(Aws::String&& value) { SetStepStatus(std::move(value)); return *this;} /** *The steps current status.
*/ inline ClusterOperationStepInfo& WithStepStatus(const char* value) { SetStepStatus(value); return *this;} private: Aws::String m_stepStatus; bool m_stepStatusHasBeenSet = false; }; } // namespace Model } // namespace Kafka } // namespace Aws