/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace AutoScaling { namespace Model { /** *

Use this structure to specify the launch templates and instance types * (overrides) for a mixed instances policy.

See Also:

AWS * API Reference

*/ class LaunchTemplate { public: AWS_AUTOSCALING_API LaunchTemplate(); AWS_AUTOSCALING_API LaunchTemplate(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_AUTOSCALING_API LaunchTemplate& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_AUTOSCALING_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_AUTOSCALING_API void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

The launch template.

*/ inline const LaunchTemplateSpecification& GetLaunchTemplateSpecification() const{ return m_launchTemplateSpecification; } /** *

The launch template.

*/ inline bool LaunchTemplateSpecificationHasBeenSet() const { return m_launchTemplateSpecificationHasBeenSet; } /** *

The launch template.

*/ inline void SetLaunchTemplateSpecification(const LaunchTemplateSpecification& value) { m_launchTemplateSpecificationHasBeenSet = true; m_launchTemplateSpecification = value; } /** *

The launch template.

*/ inline void SetLaunchTemplateSpecification(LaunchTemplateSpecification&& value) { m_launchTemplateSpecificationHasBeenSet = true; m_launchTemplateSpecification = std::move(value); } /** *

The launch template.

*/ inline LaunchTemplate& WithLaunchTemplateSpecification(const LaunchTemplateSpecification& value) { SetLaunchTemplateSpecification(value); return *this;} /** *

The launch template.

*/ inline LaunchTemplate& WithLaunchTemplateSpecification(LaunchTemplateSpecification&& value) { SetLaunchTemplateSpecification(std::move(value)); return *this;} /** *

Any properties that you specify override the same properties in the launch * template.

*/ inline const Aws::Vector& GetOverrides() const{ return m_overrides; } /** *

Any properties that you specify override the same properties in the launch * template.

*/ inline bool OverridesHasBeenSet() const { return m_overridesHasBeenSet; } /** *

Any properties that you specify override the same properties in the launch * template.

*/ inline void SetOverrides(const Aws::Vector& value) { m_overridesHasBeenSet = true; m_overrides = value; } /** *

Any properties that you specify override the same properties in the launch * template.

*/ inline void SetOverrides(Aws::Vector&& value) { m_overridesHasBeenSet = true; m_overrides = std::move(value); } /** *

Any properties that you specify override the same properties in the launch * template.

*/ inline LaunchTemplate& WithOverrides(const Aws::Vector& value) { SetOverrides(value); return *this;} /** *

Any properties that you specify override the same properties in the launch * template.

*/ inline LaunchTemplate& WithOverrides(Aws::Vector&& value) { SetOverrides(std::move(value)); return *this;} /** *

Any properties that you specify override the same properties in the launch * template.

*/ inline LaunchTemplate& AddOverrides(const LaunchTemplateOverrides& value) { m_overridesHasBeenSet = true; m_overrides.push_back(value); return *this; } /** *

Any properties that you specify override the same properties in the launch * template.

*/ inline LaunchTemplate& AddOverrides(LaunchTemplateOverrides&& value) { m_overridesHasBeenSet = true; m_overrides.push_back(std::move(value)); return *this; } private: LaunchTemplateSpecification m_launchTemplateSpecification; bool m_launchTemplateSpecificationHasBeenSet = false; Aws::Vector m_overrides; bool m_overridesHasBeenSet = false; }; } // namespace Model } // namespace AutoScaling } // namespace Aws