/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A request to delete the ClientCertificate resource.See Also:
* AWS
* API Reference
The identifier of the ClientCertificate resource to be deleted.
*/ inline const Aws::String& GetClientCertificateId() const{ return m_clientCertificateId; } /** *The identifier of the ClientCertificate resource to be deleted.
*/ inline bool ClientCertificateIdHasBeenSet() const { return m_clientCertificateIdHasBeenSet; } /** *The identifier of the ClientCertificate resource to be deleted.
*/ inline void SetClientCertificateId(const Aws::String& value) { m_clientCertificateIdHasBeenSet = true; m_clientCertificateId = value; } /** *The identifier of the ClientCertificate resource to be deleted.
*/ inline void SetClientCertificateId(Aws::String&& value) { m_clientCertificateIdHasBeenSet = true; m_clientCertificateId = std::move(value); } /** *The identifier of the ClientCertificate resource to be deleted.
*/ inline void SetClientCertificateId(const char* value) { m_clientCertificateIdHasBeenSet = true; m_clientCertificateId.assign(value); } /** *The identifier of the ClientCertificate resource to be deleted.
*/ inline DeleteClientCertificateRequest& WithClientCertificateId(const Aws::String& value) { SetClientCertificateId(value); return *this;} /** *The identifier of the ClientCertificate resource to be deleted.
*/ inline DeleteClientCertificateRequest& WithClientCertificateId(Aws::String&& value) { SetClientCertificateId(std::move(value)); return *this;} /** *The identifier of the ClientCertificate resource to be deleted.
*/ inline DeleteClientCertificateRequest& WithClientCertificateId(const char* value) { SetClientCertificateId(value); return *this;} private: Aws::String m_clientCertificateId; bool m_clientCertificateIdHasBeenSet = false; }; } // namespace Model } // namespace APIGateway } // namespace Aws