This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-appstream/include/aws/appstream/model/AssociateFleetRequest.h

130 lines
3.7 KiB
C++

/**
* 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 AWS_APPSTREAM_API AssociateFleetRequest : public AppStreamRequest
{
public:
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::String SerializePayload() const override;
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 AssociateFleetRequest& WithFleetName(const Aws::String& value) { SetFleetName(value); return *this;}
/**
* <p>The name of the fleet. </p>
*/
inline AssociateFleetRequest& WithFleetName(Aws::String&& value) { SetFleetName(std::move(value)); return *this;}
/**
* <p>The name of the fleet. </p>
*/
inline AssociateFleetRequest& 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 AssociateFleetRequest& WithStackName(const Aws::String& value) { SetStackName(value); return *this;}
/**
* <p>The name of the stack.</p>
*/
inline AssociateFleetRequest& WithStackName(Aws::String&& value) { SetStackName(std::move(value)); return *this;}
/**
* <p>The name of the stack.</p>
*/
inline AssociateFleetRequest& WithStackName(const char* value) { SetStackName(value); return *this;}
private:
Aws::String m_fleetName;
bool m_fleetNameHasBeenSet;
Aws::String m_stackName;
bool m_stackNameHasBeenSet;
};
} // namespace Model
} // namespace AppStream
} // namespace Aws