// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
//! Wraps the `s2n_tls::cert_chain` module to avoid placing those s2n-tls types in the public API.
//!
//! Unlike the s2n-tls configuration which is shared across connections, once a connection is
//! established we'd expect to drop the s2n-tls Connection struct eventually. So we'll need our own
//! container for any information that we wish to retain after the connection ends.