public ExtendedClientConfiguration(ExtendedClientConfiguration other)
 {
     S3           = other.S3;
     S3BucketName = other.S3BucketName;
     IsLargePayloadSupportEnabled = other.IsLargePayloadSupportEnabled;
     AlwaysThroughS3      = other.AlwaysThroughS3;
     MessageSizeThreshold = other.MessageSizeThreshold;
 }
 public AmazonSQSExtendedClient(IAmazonSQS sqsClient, ExtendedClientConfiguration configuration)
     : base(sqsClient)
 {
     clientConfiguration = configuration;
 }