/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The source analysis of the template.See Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the resource.
*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *The Amazon Resource Name (ARN) of the resource.
*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the resource.
*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *The Amazon Resource Name (ARN) of the resource.
*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *The Amazon Resource Name (ARN) of the resource.
*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *The Amazon Resource Name (ARN) of the resource.
*/ inline TemplateSourceAnalysis& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the resource.
*/ inline TemplateSourceAnalysis& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the resource.
*/ inline TemplateSourceAnalysis& WithArn(const char* value) { SetArn(value); return *this;} /** *A structure containing information about the dataset references used as * placeholders in the template.
*/ inline const Aws::VectorA structure containing information about the dataset references used as * placeholders in the template.
*/ inline bool DataSetReferencesHasBeenSet() const { return m_dataSetReferencesHasBeenSet; } /** *A structure containing information about the dataset references used as * placeholders in the template.
*/ inline void SetDataSetReferences(const Aws::VectorA structure containing information about the dataset references used as * placeholders in the template.
*/ inline void SetDataSetReferences(Aws::VectorA structure containing information about the dataset references used as * placeholders in the template.
*/ inline TemplateSourceAnalysis& WithDataSetReferences(const Aws::VectorA structure containing information about the dataset references used as * placeholders in the template.
*/ inline TemplateSourceAnalysis& WithDataSetReferences(Aws::VectorA structure containing information about the dataset references used as * placeholders in the template.
*/ inline TemplateSourceAnalysis& AddDataSetReferences(const DataSetReference& value) { m_dataSetReferencesHasBeenSet = true; m_dataSetReferences.push_back(value); return *this; } /** *A structure containing information about the dataset references used as * placeholders in the template.
*/ inline TemplateSourceAnalysis& AddDataSetReferences(DataSetReference&& value) { m_dataSetReferencesHasBeenSet = true; m_dataSetReferences.push_back(std::move(value)); return *this; } private: Aws::String m_arn; bool m_arnHasBeenSet = false; Aws::Vector