/** * 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 AppStream { namespace Model { /** */ class AssociateFleetRequest : public AppStreamRequest { public: AWS_APPSTREAM_API AssociateFleetRequest(); // 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 "AssociateFleet"; } AWS_APPSTREAM_API Aws::String SerializePayload() const override; AWS_APPSTREAM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the fleet.

*/ inline const Aws::String& GetFleetName() const{ return m_fleetName; } /** *

The name of the fleet.

*/ inline bool FleetNameHasBeenSet() const { return m_fleetNameHasBeenSet; } /** *

The name of the fleet.

*/ inline void SetFleetName(const Aws::String& value) { m_fleetNameHasBeenSet = true; m_fleetName = value; } /** *

The name of the fleet.

*/ inline void SetFleetName(Aws::String&& value) { m_fleetNameHasBeenSet = true; m_fleetName = std::move(value); } /** *

The name of the fleet.

*/ inline void SetFleetName(const char* value) { m_fleetNameHasBeenSet = true; m_fleetName.assign(value); } /** *

The name of the fleet.

*/ inline AssociateFleetRequest& WithFleetName(const Aws::String& value) { SetFleetName(value); return *this;} /** *

The name of the fleet.

*/ inline AssociateFleetRequest& WithFleetName(Aws::String&& value) { SetFleetName(std::move(value)); return *this;} /** *

The name of the fleet.

*/ inline AssociateFleetRequest& WithFleetName(const char* value) { SetFleetName(value); return *this;} /** *

The name of the stack.

*/ inline const Aws::String& GetStackName() const{ return m_stackName; } /** *

The name of the stack.

*/ inline bool StackNameHasBeenSet() const { return m_stackNameHasBeenSet; } /** *

The name of the stack.

*/ inline void SetStackName(const Aws::String& value) { m_stackNameHasBeenSet = true; m_stackName = value; } /** *

The name of the stack.

*/ inline void SetStackName(Aws::String&& value) { m_stackNameHasBeenSet = true; m_stackName = std::move(value); } /** *

The name of the stack.

*/ inline void SetStackName(const char* value) { m_stackNameHasBeenSet = true; m_stackName.assign(value); } /** *

The name of the stack.

*/ inline AssociateFleetRequest& WithStackName(const Aws::String& value) { SetStackName(value); return *this;} /** *

The name of the stack.

*/ inline AssociateFleetRequest& WithStackName(Aws::String&& value) { SetStackName(std::move(value)); return *this;} /** *

The name of the stack.

*/ inline AssociateFleetRequest& WithStackName(const char* value) { SetStackName(value); return *this;} private: Aws::String m_fleetName; bool m_fleetNameHasBeenSet = false; Aws::String m_stackName; bool m_stackNameHasBeenSet = false; }; } // namespace Model } // namespace AppStream } // namespace Aws