/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::Comprehend::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; CreateEndpointRequest::CreateEndpointRequest() : m_endpointNameHasBeenSet(false), m_modelArnHasBeenSet(false), m_desiredInferenceUnits(0), m_desiredInferenceUnitsHasBeenSet(false), m_clientRequestToken(Aws::Utils::UUID::PseudoRandomUUID()), m_clientRequestTokenHasBeenSet(true), m_tagsHasBeenSet(false), m_dataAccessRoleArnHasBeenSet(false), m_flywheelArnHasBeenSet(false) { } Aws::String CreateEndpointRequest::SerializePayload() const { JsonValue payload; if(m_endpointNameHasBeenSet) { payload.WithString("EndpointName", m_endpointName); } if(m_modelArnHasBeenSet) { payload.WithString("ModelArn", m_modelArn); } if(m_desiredInferenceUnitsHasBeenSet) { payload.WithInteger("DesiredInferenceUnits", m_desiredInferenceUnits); } if(m_clientRequestTokenHasBeenSet) { payload.WithString("ClientRequestToken", m_clientRequestToken); } if(m_tagsHasBeenSet) { Aws::Utils::Array 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_dataAccessRoleArnHasBeenSet) { payload.WithString("DataAccessRoleArn", m_dataAccessRoleArn); } if(m_flywheelArnHasBeenSet) { payload.WithString("FlywheelArn", m_flywheelArn); } return payload.View().WriteReadable(); } Aws::Http::HeaderValueCollection CreateEndpointRequest::GetRequestSpecificHeaders() const { Aws::Http::HeaderValueCollection headers; headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "Comprehend_20171127.CreateEndpoint")); return headers; }