/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include using namespace Aws::NimbleStudio::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; DeleteLaunchProfileRequest::DeleteLaunchProfileRequest() : m_clientToken(Aws::Utils::UUID::PseudoRandomUUID()), m_clientTokenHasBeenSet(true), m_launchProfileIdHasBeenSet(false), m_studioIdHasBeenSet(false) { } Aws::String DeleteLaunchProfileRequest::SerializePayload() const { return {}; } Aws::Http::HeaderValueCollection DeleteLaunchProfileRequest::GetRequestSpecificHeaders() const { Aws::Http::HeaderValueCollection headers; Aws::StringStream ss; if(m_clientTokenHasBeenSet) { ss << m_clientToken; headers.emplace("x-amz-client-token", ss.str()); ss.str(""); } return headers; }