/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace EC2 { namespace Model { /** */ class GetConsoleScreenshotRequest : public EC2Request { public: AWS_EC2_API GetConsoleScreenshotRequest(); // 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 "GetConsoleScreenshot"; } AWS_EC2_API Aws::String SerializePayload() const override; protected: AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline bool GetDryRun() const{ return m_dryRun; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline GetConsoleScreenshotRequest& WithDryRun(bool value) { SetDryRun(value); return *this;} /** *

The ID of the instance.

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

The ID of the instance.

*/ inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; } /** *

The ID of the instance.

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

The ID of the instance.

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

The ID of the instance.

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

The ID of the instance.

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

The ID of the instance.

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

The ID of the instance.

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

When set to true, acts as keystroke input and wakes up an * instance that's in standby or "sleep" mode.

*/ inline bool GetWakeUp() const{ return m_wakeUp; } /** *

When set to true, acts as keystroke input and wakes up an * instance that's in standby or "sleep" mode.

*/ inline bool WakeUpHasBeenSet() const { return m_wakeUpHasBeenSet; } /** *

When set to true, acts as keystroke input and wakes up an * instance that's in standby or "sleep" mode.

*/ inline void SetWakeUp(bool value) { m_wakeUpHasBeenSet = true; m_wakeUp = value; } /** *

When set to true, acts as keystroke input and wakes up an * instance that's in standby or "sleep" mode.

*/ inline GetConsoleScreenshotRequest& WithWakeUp(bool value) { SetWakeUp(value); return *this;} private: bool m_dryRun; bool m_dryRunHasBeenSet = false; Aws::String m_instanceId; bool m_instanceIdHasBeenSet = false; bool m_wakeUp; bool m_wakeUpHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws