aws_smithy_http/
operation.rs

1/*
2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6//! Deprecated metadata type.
7
8/// Metadata added to the [`ConfigBag`](aws_smithy_types::config_bag::ConfigBag) that identifies the API being called.
9#[deprecated(
10    since = "0.60.2",
11    note = "Use aws_smithy_runtime_api::client::orchestrator::Metadata instead."
12)]
13pub type Metadata = aws_smithy_runtime_api::client::orchestrator::Metadata;