/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A request to change information about an ClientCertificate
* resource.See Also:
AWS
* API Reference
The identifier of the ClientCertificate resource to be updated.
*/ inline const Aws::String& GetClientCertificateId() const{ return m_clientCertificateId; } /** *The identifier of the ClientCertificate resource to be updated.
*/ inline bool ClientCertificateIdHasBeenSet() const { return m_clientCertificateIdHasBeenSet; } /** *The identifier of the ClientCertificate resource to be updated.
*/ inline void SetClientCertificateId(const Aws::String& value) { m_clientCertificateIdHasBeenSet = true; m_clientCertificateId = value; } /** *The identifier of the ClientCertificate resource to be updated.
*/ inline void SetClientCertificateId(Aws::String&& value) { m_clientCertificateIdHasBeenSet = true; m_clientCertificateId = std::move(value); } /** *The identifier of the ClientCertificate resource to be updated.
*/ inline void SetClientCertificateId(const char* value) { m_clientCertificateIdHasBeenSet = true; m_clientCertificateId.assign(value); } /** *The identifier of the ClientCertificate resource to be updated.
*/ inline UpdateClientCertificateRequest& WithClientCertificateId(const Aws::String& value) { SetClientCertificateId(value); return *this;} /** *The identifier of the ClientCertificate resource to be updated.
*/ inline UpdateClientCertificateRequest& WithClientCertificateId(Aws::String&& value) { SetClientCertificateId(std::move(value)); return *this;} /** *The identifier of the ClientCertificate resource to be updated.
*/ inline UpdateClientCertificateRequest& WithClientCertificateId(const char* value) { SetClientCertificateId(value); return *this;} /** *For more information about supported patch operations, see Patch * Operations.
*/ inline const Aws::VectorFor more information about supported patch operations, see Patch * Operations.
*/ inline bool PatchOperationsHasBeenSet() const { return m_patchOperationsHasBeenSet; } /** *For more information about supported patch operations, see Patch * Operations.
*/ inline void SetPatchOperations(const Aws::VectorFor more information about supported patch operations, see Patch * Operations.
*/ inline void SetPatchOperations(Aws::VectorFor more information about supported patch operations, see Patch * Operations.
*/ inline UpdateClientCertificateRequest& WithPatchOperations(const Aws::VectorFor more information about supported patch operations, see Patch * Operations.
*/ inline UpdateClientCertificateRequest& WithPatchOperations(Aws::VectorFor more information about supported patch operations, see Patch * Operations.
*/ inline UpdateClientCertificateRequest& AddPatchOperations(const PatchOperation& value) { m_patchOperationsHasBeenSet = true; m_patchOperations.push_back(value); return *this; } /** *For more information about supported patch operations, see Patch * Operations.
*/ inline UpdateClientCertificateRequest& AddPatchOperations(PatchOperation&& value) { m_patchOperationsHasBeenSet = true; m_patchOperations.push_back(std::move(value)); return *this; } private: Aws::String m_clientCertificateId; bool m_clientCertificateIdHasBeenSet = false; Aws::Vector