34 lines
817 B
C
34 lines
817 B
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/accessanalyzer/AccessAnalyzer_EXPORTS.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace AccessAnalyzer
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
enum class ValidationExceptionReason
|
|||
|
|
{
|
|||
|
|
NOT_SET,
|
|||
|
|
cannotParse,
|
|||
|
|
fieldValidationFailed,
|
|||
|
|
other,
|
|||
|
|
unknownOperation
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
namespace ValidationExceptionReasonMapper
|
|||
|
|
{
|
|||
|
|
AWS_ACCESSANALYZER_API ValidationExceptionReason GetValidationExceptionReasonForName(const Aws::String& name);
|
|||
|
|
|
|||
|
|
AWS_ACCESSANALYZER_API Aws::String GetNameForValidationExceptionReason(ValidationExceptionReason value);
|
|||
|
|
} // namespace ValidationExceptionReasonMapper
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace AccessAnalyzer
|
|||
|
|
} // namespace Aws
|