/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A summary of an OpenSearch Ingestion blueprint.See Also:
AWS
* API Reference
The name of the blueprint.
*/ inline const Aws::String& GetBlueprintName() const{ return m_blueprintName; } /** *The name of the blueprint.
*/ inline bool BlueprintNameHasBeenSet() const { return m_blueprintNameHasBeenSet; } /** *The name of the blueprint.
*/ inline void SetBlueprintName(const Aws::String& value) { m_blueprintNameHasBeenSet = true; m_blueprintName = value; } /** *The name of the blueprint.
*/ inline void SetBlueprintName(Aws::String&& value) { m_blueprintNameHasBeenSet = true; m_blueprintName = std::move(value); } /** *The name of the blueprint.
*/ inline void SetBlueprintName(const char* value) { m_blueprintNameHasBeenSet = true; m_blueprintName.assign(value); } /** *The name of the blueprint.
*/ inline PipelineBlueprintSummary& WithBlueprintName(const Aws::String& value) { SetBlueprintName(value); return *this;} /** *The name of the blueprint.
*/ inline PipelineBlueprintSummary& WithBlueprintName(Aws::String&& value) { SetBlueprintName(std::move(value)); return *this;} /** *The name of the blueprint.
*/ inline PipelineBlueprintSummary& WithBlueprintName(const char* value) { SetBlueprintName(value); return *this;} private: Aws::String m_blueprintName; bool m_blueprintNameHasBeenSet = false; }; } // namespace Model } // namespace OSIS } // namespace Aws