/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/appstream/AppStream_EXPORTS.h> #include <aws/appstream/AppStreamRequest.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { namespace AppStream { namespace Model { /** */ class DisassociateFleetRequest : public AppStreamRequest { public: AWS_APPSTREAM_API DisassociateFleetRequest(); // 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 "DisassociateFleet"; } AWS_APPSTREAM_API Aws::String SerializePayload() const override; AWS_APPSTREAM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** * <p>The name of the fleet.</p> */ inline const Aws::String& GetFleetName() const{ return m_fleetName; } /** * <p>The name of the fleet.</p> */ inline bool FleetNameHasBeenSet() const { return m_fleetNameHasBeenSet; } /** * <p>The name of the fleet.</p> */ inline void SetFleetName(const Aws::String& value) { m_fleetNameHasBeenSet = true; m_fleetName = value; } /** * <p>The name of the fleet.</p> */ inline void SetFleetName(Aws::String&& value) { m_fleetNameHasBeenSet = true; m_fleetName = std::move(value); } /** * <p>The name of the fleet.</p> */ inline void SetFleetName(const char* value) { m_fleetNameHasBeenSet = true; m_fleetName.assign(value); } /** * <p>The name of the fleet.</p> */ inline DisassociateFleetRequest& WithFleetName(const Aws::String& value) { SetFleetName(value); return *this;} /** * <p>The name of the fleet.</p> */ inline DisassociateFleetRequest& WithFleetName(Aws::String&& value) { SetFleetName(std::move(value)); return *this;} /** * <p>The name of the fleet.</p> */ inline DisassociateFleetRequest& WithFleetName(const char* value) { SetFleetName(value); return *this;} /** * <p>The name of the stack.</p> */ inline const Aws::String& GetStackName() const{ return m_stackName; } /** * <p>The name of the stack.</p> */ inline bool StackNameHasBeenSet() const { return m_stackNameHasBeenSet; } /** * <p>The name of the stack.</p> */ inline void SetStackName(const Aws::String& value) { m_stackNameHasBeenSet = true; m_stackName = value; } /** * <p>The name of the stack.</p> */ inline void SetStackName(Aws::String&& value) { m_stackNameHasBeenSet = true; m_stackName = std::move(value); } /** * <p>The name of the stack.</p> */ inline void SetStackName(const char* value) { m_stackNameHasBeenSet = true; m_stackName.assign(value); } /** * <p>The name of the stack.</p> */ inline DisassociateFleetRequest& WithStackName(const Aws::String& value) { SetStackName(value); return *this;} /** * <p>The name of the stack.</p> */ inline DisassociateFleetRequest& WithStackName(Aws::String&& value) { SetStackName(std::move(value)); return *this;} /** * <p>The name of the stack.</p> */ inline DisassociateFleetRequest& 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