/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::MediaStore::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; DeleteLifecyclePolicyRequest::DeleteLifecyclePolicyRequest() : m_containerNameHasBeenSet(false) { } Aws::String DeleteLifecyclePolicyRequest::SerializePayload() const { JsonValue payload; if(m_containerNameHasBeenSet) { payload.WithString("ContainerName", m_containerName); } return payload.View().WriteReadable(); } Aws::Http::HeaderValueCollection DeleteLifecyclePolicyRequest::GetRequestSpecificHeaders() const { Aws::Http::HeaderValueCollection headers; headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "MediaStore_20170901.DeleteLifecyclePolicy")); return headers; }