/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include using namespace Aws::imagebuilder::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws::Http; GetContainerRecipePolicyRequest::GetContainerRecipePolicyRequest() : m_containerRecipeArnHasBeenSet(false) { } Aws::String GetContainerRecipePolicyRequest::SerializePayload() const { return {}; } void GetContainerRecipePolicyRequest::AddQueryStringParameters(URI& uri) const { Aws::StringStream ss; if(m_containerRecipeArnHasBeenSet) { ss << m_containerRecipeArn; uri.AddQueryStringParameter("containerRecipeArn", ss.str()); ss.str(""); } }