/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace EC2 { namespace Model { class GetConsoleOutputResponse { public: AWS_EC2_API GetConsoleOutputResponse(); AWS_EC2_API GetConsoleOutputResponse(const Aws::AmazonWebServiceResult& result); AWS_EC2_API GetConsoleOutputResponse& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ID of the instance.

*/ inline const Aws::String& GetInstanceId() const{ return m_instanceId; } /** *

The ID of the instance.

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

The ID of the instance.

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

The ID of the instance.

*/ inline void SetInstanceId(const char* value) { m_instanceId.assign(value); } /** *

The ID of the instance.

*/ inline GetConsoleOutputResponse& WithInstanceId(const Aws::String& value) { SetInstanceId(value); return *this;} /** *

The ID of the instance.

*/ inline GetConsoleOutputResponse& WithInstanceId(Aws::String&& value) { SetInstanceId(std::move(value)); return *this;} /** *

The ID of the instance.

*/ inline GetConsoleOutputResponse& WithInstanceId(const char* value) { SetInstanceId(value); return *this;} /** *

The console output, base64-encoded. If you are using a command line tool, the * tool decodes the output for you.

*/ inline const Aws::String& GetOutput() const{ return m_output; } /** *

The console output, base64-encoded. If you are using a command line tool, the * tool decodes the output for you.

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

The console output, base64-encoded. If you are using a command line tool, the * tool decodes the output for you.

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

The console output, base64-encoded. If you are using a command line tool, the * tool decodes the output for you.

*/ inline void SetOutput(const char* value) { m_output.assign(value); } /** *

The console output, base64-encoded. If you are using a command line tool, the * tool decodes the output for you.

*/ inline GetConsoleOutputResponse& WithOutput(const Aws::String& value) { SetOutput(value); return *this;} /** *

The console output, base64-encoded. If you are using a command line tool, the * tool decodes the output for you.

*/ inline GetConsoleOutputResponse& WithOutput(Aws::String&& value) { SetOutput(std::move(value)); return *this;} /** *

The console output, base64-encoded. If you are using a command line tool, the * tool decodes the output for you.

*/ inline GetConsoleOutputResponse& WithOutput(const char* value) { SetOutput(value); return *this;} /** *

The time at which the output was last updated.

*/ inline const Aws::Utils::DateTime& GetTimestamp() const{ return m_timestamp; } /** *

The time at which the output was last updated.

*/ inline void SetTimestamp(const Aws::Utils::DateTime& value) { m_timestamp = value; } /** *

The time at which the output was last updated.

*/ inline void SetTimestamp(Aws::Utils::DateTime&& value) { m_timestamp = std::move(value); } /** *

The time at which the output was last updated.

*/ inline GetConsoleOutputResponse& WithTimestamp(const Aws::Utils::DateTime& value) { SetTimestamp(value); return *this;} /** *

The time at which the output was last updated.

*/ inline GetConsoleOutputResponse& WithTimestamp(Aws::Utils::DateTime&& value) { SetTimestamp(std::move(value)); return *this;} inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; } inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; } inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); } inline GetConsoleOutputResponse& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline GetConsoleOutputResponse& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::String m_instanceId; Aws::String m_output; Aws::Utils::DateTime m_timestamp; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace EC2 } // namespace Aws