/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include using namespace Aws::Glacier::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; GetJobOutputRequest::GetJobOutputRequest() : m_accountIdHasBeenSet(false), m_vaultNameHasBeenSet(false), m_jobIdHasBeenSet(false), m_rangeHasBeenSet(false) { } Aws::String GetJobOutputRequest::SerializePayload() const { return {}; } Aws::Http::HeaderValueCollection GetJobOutputRequest::GetRequestSpecificHeaders() const { Aws::Http::HeaderValueCollection headers; Aws::StringStream ss; if(m_rangeHasBeenSet) { ss << m_range; headers.emplace("range", ss.str()); ss.str(""); } return headers; }