/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the application fleet association.See Also:
AWS
* API Reference
The name of the fleet associated with the application.
*/ inline const Aws::String& GetFleetName() const{ return m_fleetName; } /** *The name of the fleet associated with the application.
*/ inline bool FleetNameHasBeenSet() const { return m_fleetNameHasBeenSet; } /** *The name of the fleet associated with the application.
*/ inline void SetFleetName(const Aws::String& value) { m_fleetNameHasBeenSet = true; m_fleetName = value; } /** *The name of the fleet associated with the application.
*/ inline void SetFleetName(Aws::String&& value) { m_fleetNameHasBeenSet = true; m_fleetName = std::move(value); } /** *The name of the fleet associated with the application.
*/ inline void SetFleetName(const char* value) { m_fleetNameHasBeenSet = true; m_fleetName.assign(value); } /** *The name of the fleet associated with the application.
*/ inline ApplicationFleetAssociation& WithFleetName(const Aws::String& value) { SetFleetName(value); return *this;} /** *The name of the fleet associated with the application.
*/ inline ApplicationFleetAssociation& WithFleetName(Aws::String&& value) { SetFleetName(std::move(value)); return *this;} /** *The name of the fleet associated with the application.
*/ inline ApplicationFleetAssociation& WithFleetName(const char* value) { SetFleetName(value); return *this;} /** *The ARN of the application associated with the fleet.
*/ inline const Aws::String& GetApplicationArn() const{ return m_applicationArn; } /** *The ARN of the application associated with the fleet.
*/ inline bool ApplicationArnHasBeenSet() const { return m_applicationArnHasBeenSet; } /** *The ARN of the application associated with the fleet.
*/ inline void SetApplicationArn(const Aws::String& value) { m_applicationArnHasBeenSet = true; m_applicationArn = value; } /** *The ARN of the application associated with the fleet.
*/ inline void SetApplicationArn(Aws::String&& value) { m_applicationArnHasBeenSet = true; m_applicationArn = std::move(value); } /** *The ARN of the application associated with the fleet.
*/ inline void SetApplicationArn(const char* value) { m_applicationArnHasBeenSet = true; m_applicationArn.assign(value); } /** *The ARN of the application associated with the fleet.
*/ inline ApplicationFleetAssociation& WithApplicationArn(const Aws::String& value) { SetApplicationArn(value); return *this;} /** *The ARN of the application associated with the fleet.
*/ inline ApplicationFleetAssociation& WithApplicationArn(Aws::String&& value) { SetApplicationArn(std::move(value)); return *this;} /** *The ARN of the application associated with the fleet.
*/ inline ApplicationFleetAssociation& WithApplicationArn(const char* value) { SetApplicationArn(value); return *this;} private: Aws::String m_fleetName; bool m_fleetNameHasBeenSet = false; Aws::String m_applicationArn; bool m_applicationArnHasBeenSet = false; }; } // namespace Model } // namespace AppStream } // namespace Aws