96 lines
2.2 KiB
C++
96 lines
2.2 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/sagemaker/model/CreateDomainRequest.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::SageMaker::Model;
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
CreateDomainRequest::CreateDomainRequest() :
|
|
m_domainNameHasBeenSet(false),
|
|
m_authMode(AuthMode::NOT_SET),
|
|
m_authModeHasBeenSet(false),
|
|
m_defaultUserSettingsHasBeenSet(false),
|
|
m_subnetIdsHasBeenSet(false),
|
|
m_vpcIdHasBeenSet(false),
|
|
m_tagsHasBeenSet(false),
|
|
m_homeEfsFileSystemKmsKeyIdHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Aws::String CreateDomainRequest::SerializePayload() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_domainNameHasBeenSet)
|
|
{
|
|
payload.WithString("DomainName", m_domainName);
|
|
|
|
}
|
|
|
|
if(m_authModeHasBeenSet)
|
|
{
|
|
payload.WithString("AuthMode", AuthModeMapper::GetNameForAuthMode(m_authMode));
|
|
}
|
|
|
|
if(m_defaultUserSettingsHasBeenSet)
|
|
{
|
|
payload.WithObject("DefaultUserSettings", m_defaultUserSettings.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_subnetIdsHasBeenSet)
|
|
{
|
|
Array<JsonValue> subnetIdsJsonList(m_subnetIds.size());
|
|
for(unsigned subnetIdsIndex = 0; subnetIdsIndex < subnetIdsJsonList.GetLength(); ++subnetIdsIndex)
|
|
{
|
|
subnetIdsJsonList[subnetIdsIndex].AsString(m_subnetIds[subnetIdsIndex]);
|
|
}
|
|
payload.WithArray("SubnetIds", std::move(subnetIdsJsonList));
|
|
|
|
}
|
|
|
|
if(m_vpcIdHasBeenSet)
|
|
{
|
|
payload.WithString("VpcId", m_vpcId);
|
|
|
|
}
|
|
|
|
if(m_tagsHasBeenSet)
|
|
{
|
|
Array<JsonValue> tagsJsonList(m_tags.size());
|
|
for(unsigned tagsIndex = 0; tagsIndex < tagsJsonList.GetLength(); ++tagsIndex)
|
|
{
|
|
tagsJsonList[tagsIndex].AsObject(m_tags[tagsIndex].Jsonize());
|
|
}
|
|
payload.WithArray("Tags", std::move(tagsJsonList));
|
|
|
|
}
|
|
|
|
if(m_homeEfsFileSystemKmsKeyIdHasBeenSet)
|
|
{
|
|
payload.WithString("HomeEfsFileSystemKmsKeyId", m_homeEfsFileSystemKmsKeyId);
|
|
|
|
}
|
|
|
|
return payload.View().WriteReadable();
|
|
}
|
|
|
|
Aws::Http::HeaderValueCollection CreateDomainRequest::GetRequestSpecificHeaders() const
|
|
{
|
|
Aws::Http::HeaderValueCollection headers;
|
|
headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "SageMaker.CreateDomain"));
|
|
return headers;
|
|
|
|
}
|
|
|
|
|
|
|
|
|