piam-types 0.0.0

Patsnap IAM types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use hyper::{client::HttpConnector, Body};

use crate::policy::PolicyContainer;

pub type HttpRequest = http::Request<Body>;

pub struct AmzSignParams {
    pub access_key: &'static str,
    pub secret_key: &'static str,
    pub region: &'static str,
    pub service: &'static str,
}