/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes a launch template and overrides.See Also:
AWS
* API Reference
The launch template.
*/ inline const FleetLaunchTemplateSpecification& GetLaunchTemplateSpecification() const{ return m_launchTemplateSpecification; } /** *The launch template.
*/ inline bool LaunchTemplateSpecificationHasBeenSet() const { return m_launchTemplateSpecificationHasBeenSet; } /** *The launch template.
*/ inline void SetLaunchTemplateSpecification(const FleetLaunchTemplateSpecification& value) { m_launchTemplateSpecificationHasBeenSet = true; m_launchTemplateSpecification = value; } /** *The launch template.
*/ inline void SetLaunchTemplateSpecification(FleetLaunchTemplateSpecification&& value) { m_launchTemplateSpecificationHasBeenSet = true; m_launchTemplateSpecification = std::move(value); } /** *The launch template.
*/ inline LaunchTemplateAndOverridesResponse& WithLaunchTemplateSpecification(const FleetLaunchTemplateSpecification& value) { SetLaunchTemplateSpecification(value); return *this;} /** *The launch template.
*/ inline LaunchTemplateAndOverridesResponse& WithLaunchTemplateSpecification(FleetLaunchTemplateSpecification&& value) { SetLaunchTemplateSpecification(std::move(value)); return *this;} /** *Any parameters that you specify override the same parameters in the launch * template.
*/ inline const FleetLaunchTemplateOverrides& GetOverrides() const{ return m_overrides; } /** *Any parameters that you specify override the same parameters in the launch * template.
*/ inline bool OverridesHasBeenSet() const { return m_overridesHasBeenSet; } /** *Any parameters that you specify override the same parameters in the launch * template.
*/ inline void SetOverrides(const FleetLaunchTemplateOverrides& value) { m_overridesHasBeenSet = true; m_overrides = value; } /** *Any parameters that you specify override the same parameters in the launch * template.
*/ inline void SetOverrides(FleetLaunchTemplateOverrides&& value) { m_overridesHasBeenSet = true; m_overrides = std::move(value); } /** *Any parameters that you specify override the same parameters in the launch * template.
*/ inline LaunchTemplateAndOverridesResponse& WithOverrides(const FleetLaunchTemplateOverrides& value) { SetOverrides(value); return *this;} /** *Any parameters that you specify override the same parameters in the launch * template.
*/ inline LaunchTemplateAndOverridesResponse& WithOverrides(FleetLaunchTemplateOverrides&& value) { SetOverrides(std::move(value)); return *this;} private: FleetLaunchTemplateSpecification m_launchTemplateSpecification; bool m_launchTemplateSpecificationHasBeenSet; FleetLaunchTemplateOverrides m_overrides; bool m_overridesHasBeenSet; }; } // namespace Model } // namespace EC2 } // namespace Aws