/** * 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 StorageClass { NOT_SET, STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR, SNOW }; namespace StorageClassMapper { AWS_S3CRT_API StorageClass GetStorageClassForName(const Aws::String& name); AWS_S3CRT_API Aws::String GetNameForStorageClass(StorageClass value); } // namespace StorageClassMapper } // namespace Model } // namespace S3Crt } // namespace Aws