/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information about a partition error.See Also:
AWS
* API Reference
The values that define the partition.
*/ inline const Aws::VectorThe values that define the partition.
*/ inline bool PartitionValuesHasBeenSet() const { return m_partitionValuesHasBeenSet; } /** *The values that define the partition.
*/ inline void SetPartitionValues(const Aws::VectorThe values that define the partition.
*/ inline void SetPartitionValues(Aws::VectorThe values that define the partition.
*/ inline PartitionError& WithPartitionValues(const Aws::VectorThe values that define the partition.
*/ inline PartitionError& WithPartitionValues(Aws::VectorThe values that define the partition.
*/ inline PartitionError& AddPartitionValues(const Aws::String& value) { m_partitionValuesHasBeenSet = true; m_partitionValues.push_back(value); return *this; } /** *The values that define the partition.
*/ inline PartitionError& AddPartitionValues(Aws::String&& value) { m_partitionValuesHasBeenSet = true; m_partitionValues.push_back(std::move(value)); return *this; } /** *The values that define the partition.
*/ inline PartitionError& AddPartitionValues(const char* value) { m_partitionValuesHasBeenSet = true; m_partitionValues.push_back(value); return *this; } /** *The details about the partition error.
*/ inline const ErrorDetail& GetErrorDetail() const{ return m_errorDetail; } /** *The details about the partition error.
*/ inline bool ErrorDetailHasBeenSet() const { return m_errorDetailHasBeenSet; } /** *The details about the partition error.
*/ inline void SetErrorDetail(const ErrorDetail& value) { m_errorDetailHasBeenSet = true; m_errorDetail = value; } /** *The details about the partition error.
*/ inline void SetErrorDetail(ErrorDetail&& value) { m_errorDetailHasBeenSet = true; m_errorDetail = std::move(value); } /** *The details about the partition error.
*/ inline PartitionError& WithErrorDetail(const ErrorDetail& value) { SetErrorDetail(value); return *this;} /** *The details about the partition error.
*/ inline PartitionError& WithErrorDetail(ErrorDetail&& value) { SetErrorDetail(std::move(value)); return *this;} private: Aws::Vector