[][src]Trait rusoto_s3::util::PreSignedRequest

pub trait PreSignedRequest {
    fn get_presigned_url(
        &self,
        region: &Region,
        credentials: &AwsCredentials,
        option: &PreSignedRequestOption
    ) -> String; }

Required methods

fn get_presigned_url(
    &self,
    region: &Region,
    credentials: &AwsCredentials,
    option: &PreSignedRequestOption
) -> String

http://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html

Loading content...

Implementors

impl PreSignedRequest for DeleteObjectRequest[src]

fn get_presigned_url(
    &self,
    region: &Region,
    credentials: &AwsCredentials,
    option: &PreSignedRequestOption
) -> String
[src]

https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectDELETE.html

impl PreSignedRequest for GetObjectRequest[src]

fn get_presigned_url(
    &self,
    region: &Region,
    credentials: &AwsCredentials,
    option: &PreSignedRequestOption
) -> String
[src]

https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectGET.html

impl PreSignedRequest for PutObjectRequest[src]

fn get_presigned_url(
    &self,
    region: &Region,
    credentials: &AwsCredentials,
    option: &PreSignedRequestOption
) -> String
[src]

https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectPUT.html

impl PreSignedRequest for UploadPartRequest[src]

fn get_presigned_url(
    &self,
    region: &Region,
    credentials: &AwsCredentials,
    option: &PreSignedRequestOption
) -> String
[src]

https://docs.aws.amazon.com/AmazonS3/latest/API/mpUploadUploadPart.html

Loading content...