/** * 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 { namespace Lightsail { namespace Model { /** */ class GetInstanceAccessDetailsRequest : public LightsailRequest { public: AWS_LIGHTSAIL_API GetInstanceAccessDetailsRequest(); // 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 "GetInstanceAccessDetails"; } AWS_LIGHTSAIL_API Aws::String SerializePayload() const override; AWS_LIGHTSAIL_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the instance to access.

*/ inline const Aws::String& GetInstanceName() const{ return m_instanceName; } /** *

The name of the instance to access.

*/ inline bool InstanceNameHasBeenSet() const { return m_instanceNameHasBeenSet; } /** *

The name of the instance to access.

*/ inline void SetInstanceName(const Aws::String& value) { m_instanceNameHasBeenSet = true; m_instanceName = value; } /** *

The name of the instance to access.

*/ inline void SetInstanceName(Aws::String&& value) { m_instanceNameHasBeenSet = true; m_instanceName = std::move(value); } /** *

The name of the instance to access.

*/ inline void SetInstanceName(const char* value) { m_instanceNameHasBeenSet = true; m_instanceName.assign(value); } /** *

The name of the instance to access.

*/ inline GetInstanceAccessDetailsRequest& WithInstanceName(const Aws::String& value) { SetInstanceName(value); return *this;} /** *

The name of the instance to access.

*/ inline GetInstanceAccessDetailsRequest& WithInstanceName(Aws::String&& value) { SetInstanceName(std::move(value)); return *this;} /** *

The name of the instance to access.

*/ inline GetInstanceAccessDetailsRequest& WithInstanceName(const char* value) { SetInstanceName(value); return *this;} /** *

The protocol to use to connect to your instance. Defaults to * ssh.

*/ inline const InstanceAccessProtocol& GetProtocol() const{ return m_protocol; } /** *

The protocol to use to connect to your instance. Defaults to * ssh.

*/ inline bool ProtocolHasBeenSet() const { return m_protocolHasBeenSet; } /** *

The protocol to use to connect to your instance. Defaults to * ssh.

*/ inline void SetProtocol(const InstanceAccessProtocol& value) { m_protocolHasBeenSet = true; m_protocol = value; } /** *

The protocol to use to connect to your instance. Defaults to * ssh.

*/ inline void SetProtocol(InstanceAccessProtocol&& value) { m_protocolHasBeenSet = true; m_protocol = std::move(value); } /** *

The protocol to use to connect to your instance. Defaults to * ssh.

*/ inline GetInstanceAccessDetailsRequest& WithProtocol(const InstanceAccessProtocol& value) { SetProtocol(value); return *this;} /** *

The protocol to use to connect to your instance. Defaults to * ssh.

*/ inline GetInstanceAccessDetailsRequest& WithProtocol(InstanceAccessProtocol&& value) { SetProtocol(std::move(value)); return *this;} private: Aws::String m_instanceName; bool m_instanceNameHasBeenSet = false; InstanceAccessProtocol m_protocol; bool m_protocolHasBeenSet = false; }; } // namespace Model } // namespace Lightsail } // namespace Aws