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