58 lines
1.3 KiB
C++
58 lines
1.3 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/kinesis/model/StartStreamEncryptionRequest.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Kinesis::Model;
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
StartStreamEncryptionRequest::StartStreamEncryptionRequest() :
|
|
m_streamNameHasBeenSet(false),
|
|
m_encryptionType(EncryptionType::NOT_SET),
|
|
m_encryptionTypeHasBeenSet(false),
|
|
m_keyIdHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Aws::String StartStreamEncryptionRequest::SerializePayload() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_streamNameHasBeenSet)
|
|
{
|
|
payload.WithString("StreamName", m_streamName);
|
|
|
|
}
|
|
|
|
if(m_encryptionTypeHasBeenSet)
|
|
{
|
|
payload.WithString("EncryptionType", EncryptionTypeMapper::GetNameForEncryptionType(m_encryptionType));
|
|
}
|
|
|
|
if(m_keyIdHasBeenSet)
|
|
{
|
|
payload.WithString("KeyId", m_keyId);
|
|
|
|
}
|
|
|
|
return payload.View().WriteReadable();
|
|
}
|
|
|
|
Aws::Http::HeaderValueCollection StartStreamEncryptionRequest::GetRequestSpecificHeaders() const
|
|
{
|
|
Aws::Http::HeaderValueCollection headers;
|
|
headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "Kinesis_20131202.StartStreamEncryption"));
|
|
return headers;
|
|
|
|
}
|
|
|
|
|
|
|
|
|