This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-elastictranscoder/source/model/CreatePipelineRequest.cpp

85 lines
1.6 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/elastictranscoder/model/CreatePipelineRequest.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::ElasticTranscoder::Model;
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
CreatePipelineRequest::CreatePipelineRequest() :
m_nameHasBeenSet(false),
m_inputBucketHasBeenSet(false),
m_outputBucketHasBeenSet(false),
m_roleHasBeenSet(false),
m_awsKmsKeyArnHasBeenSet(false),
m_notificationsHasBeenSet(false),
m_contentConfigHasBeenSet(false),
m_thumbnailConfigHasBeenSet(false)
{
}
Aws::String CreatePipelineRequest::SerializePayload() const
{
JsonValue payload;
if(m_nameHasBeenSet)
{
payload.WithString("Name", m_name);
}
if(m_inputBucketHasBeenSet)
{
payload.WithString("InputBucket", m_inputBucket);
}
if(m_outputBucketHasBeenSet)
{
payload.WithString("OutputBucket", m_outputBucket);
}
if(m_roleHasBeenSet)
{
payload.WithString("Role", m_role);
}
if(m_awsKmsKeyArnHasBeenSet)
{
payload.WithString("AwsKmsKeyArn", m_awsKmsKeyArn);
}
if(m_notificationsHasBeenSet)
{
payload.WithObject("Notifications", m_notifications.Jsonize());
}
if(m_contentConfigHasBeenSet)
{
payload.WithObject("ContentConfig", m_contentConfig.Jsonize());
}
if(m_thumbnailConfigHasBeenSet)
{
payload.WithObject("ThumbnailConfig", m_thumbnailConfig.Jsonize());
}
return payload.View().WriteReadable();
}