Enum aws_sdk_rust::aws::s3::endpoint::Signature [] [src]

pub enum Signature {
    V2,
    V4,
}

Required to specify which type of API Signature to use. AWS defaults to using V4 by default. However, third party applications often use V2 (AWS will still honor V2).

Variants

Trait Implementations

impl Debug for Signature
[src]

Formats the value using the given formatter.

impl Clone for Signature
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Signature
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Decodable for Signature
[src]

Deserialize a value using a Decoder.

impl Encodable for Signature
[src]

Serialize a value using an Encoder.