[][src]Enum s3handler::AuthType

pub enum AuthType {
    AWS4,
    AWS2,
}

The signature type of Authentication

AWS2, AWS4 represent for AWS signature v2 and AWS signature v4 The v2 and v4 signature are both supported by CEPH. Generally, AWS support v4 signature, and only limited support v2 signature. following AWS region support v2 signature before June 24, 2019

  • US East (N. Virginia) Region
  • US West (N. California) Region
  • US West (Oregon) Region
  • EU (Ireland) Region
  • Asia Pacific (Tokyo) Region
  • Asia Pacific (Singapore) Region
  • Asia Pacific (Sydney) Region
  • South America (So Paulo) Region

Variants

AWS4
AWS2

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err

impl<T> Same<T> for T

type Output = T

Should always be Self