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