1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #pragma once
7 
8 #include <aws/core/Core_EXPORTS.h>
9 
10 #include <aws/core/utils/memory/stl/AWSAllocator.h>
11 
12 #include <vector>
13 
14 namespace Aws
15 {
16 
17 template< typename T > using Vector = std::vector< T, Aws::Allocator< T > >;
18 
19 } // namespace Aws
20