1 /** 2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 * SPDX-License-Identifier: Apache-2.0. 4 */ 5 6 #include <aws/securityhub/model/CreateActionTargetRequest.h> 7 #include <aws/core/utils/json/JsonSerializer.h> 8 9 #include <utility> 10 11 using namespace Aws::SecurityHub::Model; 12 using namespace Aws::Utils::Json; 13 using namespace Aws::Utils; 14 CreateActionTargetRequest()15CreateActionTargetRequest::CreateActionTargetRequest() : 16 m_nameHasBeenSet(false), 17 m_descriptionHasBeenSet(false), 18 m_idHasBeenSet(false) 19 { 20 } 21 SerializePayload() const22Aws::String CreateActionTargetRequest::SerializePayload() const 23 { 24 JsonValue payload; 25 26 if(m_nameHasBeenSet) 27 { 28 payload.WithString("Name", m_name); 29 30 } 31 32 if(m_descriptionHasBeenSet) 33 { 34 payload.WithString("Description", m_description); 35 36 } 37 38 if(m_idHasBeenSet) 39 { 40 payload.WithString("Id", m_id); 41 42 } 43 44 return payload.View().WriteReadable(); 45 } 46 47 48 49 50