/** * 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; DeleteContainerRequest::DeleteContainerRequest() : m_containerNameHasBeenSet(false) { } Aws::String DeleteContainerRequest::SerializePayload() const { JsonValue payload; if(m_containerNameHasBeenSet) { payload.WithString("ContainerName", m_containerName); } return payload.View().WriteReadable(); } Aws::Http::HeaderValueCollection DeleteContainerRequest::GetRequestSpecificHeaders() const { Aws::Http::HeaderValueCollection headers; headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "MediaStore_20170901.DeleteContainer")); return headers; }