/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes a data processor.See Also:
AWS
* API Reference
The type of processor.
*/ inline const ProcessorType& GetType() const{ return m_type; } /** *The type of processor.
*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *The type of processor.
*/ inline void SetType(const ProcessorType& value) { m_typeHasBeenSet = true; m_type = value; } /** *The type of processor.
*/ inline void SetType(ProcessorType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *The type of processor.
*/ inline Processor& WithType(const ProcessorType& value) { SetType(value); return *this;} /** *The type of processor.
*/ inline Processor& WithType(ProcessorType&& value) { SetType(std::move(value)); return *this;} /** *The processor parameters.
*/ inline const Aws::VectorThe processor parameters.
*/ inline bool ParametersHasBeenSet() const { return m_parametersHasBeenSet; } /** *The processor parameters.
*/ inline void SetParameters(const Aws::VectorThe processor parameters.
*/ inline void SetParameters(Aws::VectorThe processor parameters.
*/ inline Processor& WithParameters(const Aws::VectorThe processor parameters.
*/ inline Processor& WithParameters(Aws::VectorThe processor parameters.
*/ inline Processor& AddParameters(const ProcessorParameter& value) { m_parametersHasBeenSet = true; m_parameters.push_back(value); return *this; } /** *The processor parameters.
*/ inline Processor& AddParameters(ProcessorParameter&& value) { m_parametersHasBeenSet = true; m_parameters.push_back(std::move(value)); return *this; } private: ProcessorType m_type; bool m_typeHasBeenSet; Aws::Vector