using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Amazon.DocDB.Internal
{
///
/// Interface implemented by requests that are supported by
///
public interface IPreSignedUrlRequest
{
///
///
/// Gets and sets the source region for the operation.
/// If set, the PreSignedUrl property is not required for cross-region operations.
/// PreSignedUrl will be auto-generated based on SourceRegion, and sent by the client.
///
///
string SourceRegion { get; set; }
///
/// Gets and sets the property PreSignedUrl.
///
string PreSignedUrl { get; set; }
}
}