client_ring/
client-ring.rs

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_client::{
7    tls::{self, rustls_provider::CryptoMode},
8    Builder,
9};
10
11fn main() {
12    let _client = Builder::new()
13        .tls_provider(tls::Provider::Rustls(CryptoMode::Ring))
14        .build_https();
15}