/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template 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& result); DownloadDefaultKeyPairResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A base64-encoded public key of the ssh-rsa type.

*/ inline const Aws::String& GetPublicKeyBase64() const{ return m_publicKeyBase64; } /** *

A base64-encoded public key of the ssh-rsa type.

*/ inline void SetPublicKeyBase64(const Aws::String& value) { m_publicKeyBase64 = value; } /** *

A base64-encoded public key of the ssh-rsa type.

*/ inline void SetPublicKeyBase64(Aws::String&& value) { m_publicKeyBase64 = std::move(value); } /** *

A base64-encoded public key of the ssh-rsa type.

*/ inline void SetPublicKeyBase64(const char* value) { m_publicKeyBase64.assign(value); } /** *

A base64-encoded public key of the ssh-rsa type.

*/ inline DownloadDefaultKeyPairResult& WithPublicKeyBase64(const Aws::String& value) { SetPublicKeyBase64(value); return *this;} /** *

A base64-encoded public key of the ssh-rsa type.

*/ inline DownloadDefaultKeyPairResult& WithPublicKeyBase64(Aws::String&& value) { SetPublicKeyBase64(std::move(value)); return *this;} /** *

A base64-encoded public key of the ssh-rsa type.

*/ inline DownloadDefaultKeyPairResult& WithPublicKeyBase64(const char* value) { SetPublicKeyBase64(value); return *this;} /** *

A base64-encoded RSA private key.

*/ inline const Aws::String& GetPrivateKeyBase64() const{ return m_privateKeyBase64; } /** *

A base64-encoded RSA private key.

*/ inline void SetPrivateKeyBase64(const Aws::String& value) { m_privateKeyBase64 = value; } /** *

A base64-encoded RSA private key.

*/ inline void SetPrivateKeyBase64(Aws::String&& value) { m_privateKeyBase64 = std::move(value); } /** *

A base64-encoded RSA private key.

*/ inline void SetPrivateKeyBase64(const char* value) { m_privateKeyBase64.assign(value); } /** *

A base64-encoded RSA private key.

*/ inline DownloadDefaultKeyPairResult& WithPrivateKeyBase64(const Aws::String& value) { SetPrivateKeyBase64(value); return *this;} /** *

A base64-encoded RSA private key.

*/ inline DownloadDefaultKeyPairResult& WithPrivateKeyBase64(Aws::String&& value) { SetPrivateKeyBase64(std::move(value)); return *this;} /** *

A base64-encoded RSA private key.

*/ 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