This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-lightsail/include/aws/lightsail/model/DownloadDefaultKeyPairResult.h

116 lines
3.5 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/lightsail/Lightsail_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace Lightsail
{
namespace Model
{
class AWS_LIGHTSAIL_API DownloadDefaultKeyPairResult
{
public:
DownloadDefaultKeyPairResult();
DownloadDefaultKeyPairResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
DownloadDefaultKeyPairResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>A base64-encoded public key of the <code>ssh-rsa</code> type.</p>
*/
inline const Aws::String& GetPublicKeyBase64() const{ return m_publicKeyBase64; }
/**
* <p>A base64-encoded public key of the <code>ssh-rsa</code> type.</p>
*/
inline void SetPublicKeyBase64(const Aws::String& value) { m_publicKeyBase64 = value; }
/**
* <p>A base64-encoded public key of the <code>ssh-rsa</code> type.</p>
*/
inline void SetPublicKeyBase64(Aws::String&& value) { m_publicKeyBase64 = std::move(value); }
/**
* <p>A base64-encoded public key of the <code>ssh-rsa</code> type.</p>
*/
inline void SetPublicKeyBase64(const char* value) { m_publicKeyBase64.assign(value); }
/**
* <p>A base64-encoded public key of the <code>ssh-rsa</code> type.</p>
*/
inline DownloadDefaultKeyPairResult& WithPublicKeyBase64(const Aws::String& value) { SetPublicKeyBase64(value); return *this;}
/**
* <p>A base64-encoded public key of the <code>ssh-rsa</code> type.</p>
*/
inline DownloadDefaultKeyPairResult& WithPublicKeyBase64(Aws::String&& value) { SetPublicKeyBase64(std::move(value)); return *this;}
/**
* <p>A base64-encoded public key of the <code>ssh-rsa</code> type.</p>
*/
inline DownloadDefaultKeyPairResult& WithPublicKeyBase64(const char* value) { SetPublicKeyBase64(value); return *this;}
/**
* <p>A base64-encoded RSA private key.</p>
*/
inline const Aws::String& GetPrivateKeyBase64() const{ return m_privateKeyBase64; }
/**
* <p>A base64-encoded RSA private key.</p>
*/
inline void SetPrivateKeyBase64(const Aws::String& value) { m_privateKeyBase64 = value; }
/**
* <p>A base64-encoded RSA private key.</p>
*/
inline void SetPrivateKeyBase64(Aws::String&& value) { m_privateKeyBase64 = std::move(value); }
/**
* <p>A base64-encoded RSA private key.</p>
*/
inline void SetPrivateKeyBase64(const char* value) { m_privateKeyBase64.assign(value); }
/**
* <p>A base64-encoded RSA private key.</p>
*/
inline DownloadDefaultKeyPairResult& WithPrivateKeyBase64(const Aws::String& value) { SetPrivateKeyBase64(value); return *this;}
/**
* <p>A base64-encoded RSA private key.</p>
*/
inline DownloadDefaultKeyPairResult& WithPrivateKeyBase64(Aws::String&& value) { SetPrivateKeyBase64(std::move(value)); return *this;}
/**
* <p>A base64-encoded RSA private key.</p>
*/
inline DownloadDefaultKeyPairResult& WithPrivateKeyBase64(const char* value) { SetPrivateKeyBase64(value); return *this;}
private:
Aws::String m_publicKeyBase64;
Aws::String m_privateKeyBase64;
};
} // namespace Model
} // namespace Lightsail
} // namespace Aws