cloud-sdk 0.34.0

no_std-first provider-neutral cloud SDK foundations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Immutable endpoint identities and provider-owned trust policies.

mod identity;
mod policy;

pub use identity::{
    BoundTransport, EndpointIdentity, EndpointIdentityError, EndpointScheme,
    MAX_ENDPOINT_BASE_PATH_BYTES, MAX_ENDPOINT_HOST_BYTES,
};
pub use policy::{
    AcknowledgedCustomEndpoint, CustomEndpointAcknowledgement, EndpointPolicy, EndpointPolicyError,
    EndpointPolicyKind, MAX_ENDPOINT_REGION_BYTES, MAX_OFFICIAL_ENDPOINTS, RegionEndpoint,
};