1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0
 */

//TODO(runtimeCratesVersioningCleanup): Keep the following deprecated type aliases for at least
// one release since 0.56.1 and then remove this module.

//! ByteStream Abstractions

/// Non-contiguous Binary Data Storage
#[deprecated(note = "Moved to `aws_smithy_types::byte_stream::AggregatedBytes`.")]
pub type AggregatedBytes = aws_smithy_types::byte_stream::AggregatedBytes;

/// Stream of binary data
#[deprecated(note = "Moved to `aws_smithy_types::byte_stream::ByteStream`.")]
pub type ByteStream = aws_smithy_types::byte_stream::ByteStream;

/// Errors related to bytestreams.
pub mod error {
    /// An error occurred in the byte stream
    #[deprecated(note = "Moved to `aws_smithy_types::byte_stream::error::Error`.")]
    pub type Error = aws_smithy_types::byte_stream::error::Error;
}

/// Builder for creating [`ByteStreams`](aws_smithy_types::byte_stream::ByteStream) from a file/path, with full control over advanced options.
#[cfg(feature = "rt-tokio")]
#[deprecated(note = "Moved to `aws_smithy_types::byte_stream::FsBuilder`.")]
pub type FsBuilder = aws_smithy_types::byte_stream::FsBuilder;

/// The length (in bytes) to read. Determines whether or not a short read counts as an error.
#[cfg(feature = "rt-tokio")]
#[deprecated(note = "Moved to `aws_smithy_types::byte_stream::Length`.")]
pub type Length = aws_smithy_types::byte_stream::Length;