91 lines
3.1 KiB
C++
91 lines
3.1 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/ec2/EC2_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Xml
|
|
{
|
|
class XmlNode;
|
|
} // namespace Xml
|
|
} // namespace Utils
|
|
namespace EC2
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Describes a license configuration.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateLicenseConfigurationRequest">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_EC2_API LaunchTemplateLicenseConfigurationRequest
|
|
{
|
|
public:
|
|
LaunchTemplateLicenseConfigurationRequest();
|
|
LaunchTemplateLicenseConfigurationRequest(const Aws::Utils::Xml::XmlNode& xmlNode);
|
|
LaunchTemplateLicenseConfigurationRequest& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
|
|
|
|
void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
|
|
void OutputToStream(Aws::OStream& oStream, const char* location) const;
|
|
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the license configuration.</p>
|
|
*/
|
|
inline const Aws::String& GetLicenseConfigurationArn() const{ return m_licenseConfigurationArn; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the license configuration.</p>
|
|
*/
|
|
inline bool LicenseConfigurationArnHasBeenSet() const { return m_licenseConfigurationArnHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the license configuration.</p>
|
|
*/
|
|
inline void SetLicenseConfigurationArn(const Aws::String& value) { m_licenseConfigurationArnHasBeenSet = true; m_licenseConfigurationArn = value; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the license configuration.</p>
|
|
*/
|
|
inline void SetLicenseConfigurationArn(Aws::String&& value) { m_licenseConfigurationArnHasBeenSet = true; m_licenseConfigurationArn = std::move(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the license configuration.</p>
|
|
*/
|
|
inline void SetLicenseConfigurationArn(const char* value) { m_licenseConfigurationArnHasBeenSet = true; m_licenseConfigurationArn.assign(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the license configuration.</p>
|
|
*/
|
|
inline LaunchTemplateLicenseConfigurationRequest& WithLicenseConfigurationArn(const Aws::String& value) { SetLicenseConfigurationArn(value); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the license configuration.</p>
|
|
*/
|
|
inline LaunchTemplateLicenseConfigurationRequest& WithLicenseConfigurationArn(Aws::String&& value) { SetLicenseConfigurationArn(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the license configuration.</p>
|
|
*/
|
|
inline LaunchTemplateLicenseConfigurationRequest& WithLicenseConfigurationArn(const char* value) { SetLicenseConfigurationArn(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_licenseConfigurationArn;
|
|
bool m_licenseConfigurationArnHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace EC2
|
|
} // namespace Aws
|