118 lines
3.8 KiB
C++
118 lines
3.8 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/iot/IoT_EXPORTS.h>
|
|
#include <aws/iot/IoTRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Http
|
|
{
|
|
class URI;
|
|
} //namespace Http
|
|
namespace IoT
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>The input for the CreateCertificateFromCsr operation.</p><p><h3>See
|
|
* Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/iot-2015-05-28/CreateCertificateFromCsrRequest">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_IOT_API CreateCertificateFromCsrRequest : public IoTRequest
|
|
{
|
|
public:
|
|
CreateCertificateFromCsrRequest();
|
|
|
|
// Service request name is the Operation name which will send this request out,
|
|
// each operation should has unique request name, so that we can get operation's name from this request.
|
|
// Note: this is not true for response, multiple operations may have the same response name,
|
|
// so we can not get operation's name from response.
|
|
inline virtual const char* GetServiceRequestName() const override { return "CreateCertificateFromCsr"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
void AddQueryStringParameters(Aws::Http::URI& uri) const override;
|
|
|
|
|
|
/**
|
|
* <p>The certificate signing request (CSR).</p>
|
|
*/
|
|
inline const Aws::String& GetCertificateSigningRequest() const{ return m_certificateSigningRequest; }
|
|
|
|
/**
|
|
* <p>The certificate signing request (CSR).</p>
|
|
*/
|
|
inline bool CertificateSigningRequestHasBeenSet() const { return m_certificateSigningRequestHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The certificate signing request (CSR).</p>
|
|
*/
|
|
inline void SetCertificateSigningRequest(const Aws::String& value) { m_certificateSigningRequestHasBeenSet = true; m_certificateSigningRequest = value; }
|
|
|
|
/**
|
|
* <p>The certificate signing request (CSR).</p>
|
|
*/
|
|
inline void SetCertificateSigningRequest(Aws::String&& value) { m_certificateSigningRequestHasBeenSet = true; m_certificateSigningRequest = std::move(value); }
|
|
|
|
/**
|
|
* <p>The certificate signing request (CSR).</p>
|
|
*/
|
|
inline void SetCertificateSigningRequest(const char* value) { m_certificateSigningRequestHasBeenSet = true; m_certificateSigningRequest.assign(value); }
|
|
|
|
/**
|
|
* <p>The certificate signing request (CSR).</p>
|
|
*/
|
|
inline CreateCertificateFromCsrRequest& WithCertificateSigningRequest(const Aws::String& value) { SetCertificateSigningRequest(value); return *this;}
|
|
|
|
/**
|
|
* <p>The certificate signing request (CSR).</p>
|
|
*/
|
|
inline CreateCertificateFromCsrRequest& WithCertificateSigningRequest(Aws::String&& value) { SetCertificateSigningRequest(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The certificate signing request (CSR).</p>
|
|
*/
|
|
inline CreateCertificateFromCsrRequest& WithCertificateSigningRequest(const char* value) { SetCertificateSigningRequest(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Specifies whether the certificate is active.</p>
|
|
*/
|
|
inline bool GetSetAsActive() const{ return m_setAsActive; }
|
|
|
|
/**
|
|
* <p>Specifies whether the certificate is active.</p>
|
|
*/
|
|
inline bool SetAsActiveHasBeenSet() const { return m_setAsActiveHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Specifies whether the certificate is active.</p>
|
|
*/
|
|
inline void SetSetAsActive(bool value) { m_setAsActiveHasBeenSet = true; m_setAsActive = value; }
|
|
|
|
/**
|
|
* <p>Specifies whether the certificate is active.</p>
|
|
*/
|
|
inline CreateCertificateFromCsrRequest& WithSetAsActive(bool value) { SetSetAsActive(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_certificateSigningRequest;
|
|
bool m_certificateSigningRequestHasBeenSet;
|
|
|
|
bool m_setAsActive;
|
|
bool m_setAsActiveHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace IoT
|
|
} // namespace Aws
|