/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The template version.See Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the template version.
*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *The Amazon Resource Name (ARN) of the template version.
*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the template version.
*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *The Amazon Resource Name (ARN) of the template version.
*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *The Amazon Resource Name (ARN) of the template version.
*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *The Amazon Resource Name (ARN) of the template version.
*/ inline TemplateVersionSummary& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the template version.
*/ inline TemplateVersionSummary& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the template version.
*/ inline TemplateVersionSummary& WithArn(const char* value) { SetArn(value); return *this;} /** *The version number of the template version.
*/ inline long long GetVersionNumber() const{ return m_versionNumber; } /** *The version number of the template version.
*/ inline bool VersionNumberHasBeenSet() const { return m_versionNumberHasBeenSet; } /** *The version number of the template version.
*/ inline void SetVersionNumber(long long value) { m_versionNumberHasBeenSet = true; m_versionNumber = value; } /** *The version number of the template version.
*/ inline TemplateVersionSummary& WithVersionNumber(long long value) { SetVersionNumber(value); return *this;} /** *The time that this template version was created.
*/ inline const Aws::Utils::DateTime& GetCreatedTime() const{ return m_createdTime; } /** *The time that this template version was created.
*/ inline bool CreatedTimeHasBeenSet() const { return m_createdTimeHasBeenSet; } /** *The time that this template version was created.
*/ inline void SetCreatedTime(const Aws::Utils::DateTime& value) { m_createdTimeHasBeenSet = true; m_createdTime = value; } /** *The time that this template version was created.
*/ inline void SetCreatedTime(Aws::Utils::DateTime&& value) { m_createdTimeHasBeenSet = true; m_createdTime = std::move(value); } /** *The time that this template version was created.
*/ inline TemplateVersionSummary& WithCreatedTime(const Aws::Utils::DateTime& value) { SetCreatedTime(value); return *this;} /** *The time that this template version was created.
*/ inline TemplateVersionSummary& WithCreatedTime(Aws::Utils::DateTime&& value) { SetCreatedTime(std::move(value)); return *this;} /** *The status of the template version.
*/ inline const ResourceStatus& GetStatus() const{ return m_status; } /** *The status of the template version.
*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *The status of the template version.
*/ inline void SetStatus(const ResourceStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *The status of the template version.
*/ inline void SetStatus(ResourceStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *The status of the template version.
*/ inline TemplateVersionSummary& WithStatus(const ResourceStatus& value) { SetStatus(value); return *this;} /** *The status of the template version.
*/ inline TemplateVersionSummary& WithStatus(ResourceStatus&& value) { SetStatus(std::move(value)); return *this;} /** *The description of the template version.
*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *The description of the template version.
*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *The description of the template version.
*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *The description of the template version.
*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *The description of the template version.
*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *The description of the template version.
*/ inline TemplateVersionSummary& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *The description of the template version.
*/ inline TemplateVersionSummary& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *The description of the template version.
*/ inline TemplateVersionSummary& WithDescription(const char* value) { SetDescription(value); return *this;} private: Aws::String m_arn; bool m_arnHasBeenSet = false; long long m_versionNumber; bool m_versionNumberHasBeenSet = false; Aws::Utils::DateTime m_createdTime; bool m_createdTimeHasBeenSet = false; ResourceStatus m_status; bool m_statusHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws