/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input of a GetOnPremisesInstance
operation.
* See Also:
AWS
* API Reference
The name of the on-premises instance about which to get information.
*/ inline const Aws::String& GetInstanceName() const{ return m_instanceName; } /** *The name of the on-premises instance about which to get information.
*/ inline bool InstanceNameHasBeenSet() const { return m_instanceNameHasBeenSet; } /** *The name of the on-premises instance about which to get information.
*/ inline void SetInstanceName(const Aws::String& value) { m_instanceNameHasBeenSet = true; m_instanceName = value; } /** *The name of the on-premises instance about which to get information.
*/ inline void SetInstanceName(Aws::String&& value) { m_instanceNameHasBeenSet = true; m_instanceName = std::move(value); } /** *The name of the on-premises instance about which to get information.
*/ inline void SetInstanceName(const char* value) { m_instanceNameHasBeenSet = true; m_instanceName.assign(value); } /** *The name of the on-premises instance about which to get information.
*/ inline GetOnPremisesInstanceRequest& WithInstanceName(const Aws::String& value) { SetInstanceName(value); return *this;} /** *The name of the on-premises instance about which to get information.
*/ inline GetOnPremisesInstanceRequest& WithInstanceName(Aws::String&& value) { SetInstanceName(std::move(value)); return *this;} /** *The name of the on-premises instance about which to get information.
*/ inline GetOnPremisesInstanceRequest& WithInstanceName(const char* value) { SetInstanceName(value); return *this;} private: Aws::String m_instanceName; bool m_instanceNameHasBeenSet = false; }; } // namespace Model } // namespace CodeDeploy } // namespace Aws