/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A request to apply a service updateSee Also:
AWS
* API Reference
The unique ID of the service update
*/ inline const Aws::String& GetServiceUpdateNameToApply() const{ return m_serviceUpdateNameToApply; } /** *The unique ID of the service update
*/ inline bool ServiceUpdateNameToApplyHasBeenSet() const { return m_serviceUpdateNameToApplyHasBeenSet; } /** *The unique ID of the service update
*/ inline void SetServiceUpdateNameToApply(const Aws::String& value) { m_serviceUpdateNameToApplyHasBeenSet = true; m_serviceUpdateNameToApply = value; } /** *The unique ID of the service update
*/ inline void SetServiceUpdateNameToApply(Aws::String&& value) { m_serviceUpdateNameToApplyHasBeenSet = true; m_serviceUpdateNameToApply = std::move(value); } /** *The unique ID of the service update
*/ inline void SetServiceUpdateNameToApply(const char* value) { m_serviceUpdateNameToApplyHasBeenSet = true; m_serviceUpdateNameToApply.assign(value); } /** *The unique ID of the service update
*/ inline ServiceUpdateRequest& WithServiceUpdateNameToApply(const Aws::String& value) { SetServiceUpdateNameToApply(value); return *this;} /** *The unique ID of the service update
*/ inline ServiceUpdateRequest& WithServiceUpdateNameToApply(Aws::String&& value) { SetServiceUpdateNameToApply(std::move(value)); return *this;} /** *The unique ID of the service update
*/ inline ServiceUpdateRequest& WithServiceUpdateNameToApply(const char* value) { SetServiceUpdateNameToApply(value); return *this;} private: Aws::String m_serviceUpdateNameToApply; bool m_serviceUpdateNameToApplyHasBeenSet = false; }; } // namespace Model } // namespace MemoryDB } // namespace Aws