/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include namespace Aws { namespace S3Crt { namespace Model { enum class ObjectStorageClass { NOT_SET, STANDARD, REDUCED_REDUNDANCY, GLACIER, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR, SNOW }; namespace ObjectStorageClassMapper { AWS_S3CRT_API ObjectStorageClass GetObjectStorageClassForName(const Aws::String& name); AWS_S3CRT_API Aws::String GetNameForObjectStorageClass(ObjectStorageClass value); } // namespace ObjectStorageClassMapper } // namespace Model } // namespace S3Crt } // namespace Aws