1/* 2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6use aws_smithy_http::label; 7 8pub(super) fn percent_encode_path(value: &str) -> String { 9 label::fmt_string(value, label::EncodingStrategy::Greedy) 10}