/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::IdentityStore::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; UpdateGroupRequest::UpdateGroupRequest() : m_identityStoreIdHasBeenSet(false), m_groupIdHasBeenSet(false), m_operationsHasBeenSet(false) { } Aws::String UpdateGroupRequest::SerializePayload() const { JsonValue payload; if(m_identityStoreIdHasBeenSet) { payload.WithString("IdentityStoreId", m_identityStoreId); } if(m_groupIdHasBeenSet) { payload.WithString("GroupId", m_groupId); } if(m_operationsHasBeenSet) { Aws::Utils::Array operationsJsonList(m_operations.size()); for(unsigned operationsIndex = 0; operationsIndex < operationsJsonList.GetLength(); ++operationsIndex) { operationsJsonList[operationsIndex].AsObject(m_operations[operationsIndex].Jsonize()); } payload.WithArray("Operations", std::move(operationsJsonList)); } return payload.View().WriteReadable(); } Aws::Http::HeaderValueCollection UpdateGroupRequest::GetRequestSpecificHeaders() const { Aws::Http::HeaderValueCollection headers; headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "AWSIdentityStore.UpdateGroup")); return headers; }