/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace OSIS { namespace Model { /** */ class GetPipelineBlueprintRequest : public OSISRequest { public: AWS_OSIS_API GetPipelineBlueprintRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "GetPipelineBlueprint"; } AWS_OSIS_API Aws::String SerializePayload() const override; /** *

The name of the blueprint to retrieve.

*/ inline const Aws::String& GetBlueprintName() const{ return m_blueprintName; } /** *

The name of the blueprint to retrieve.

*/ inline bool BlueprintNameHasBeenSet() const { return m_blueprintNameHasBeenSet; } /** *

The name of the blueprint to retrieve.

*/ inline void SetBlueprintName(const Aws::String& value) { m_blueprintNameHasBeenSet = true; m_blueprintName = value; } /** *

The name of the blueprint to retrieve.

*/ inline void SetBlueprintName(Aws::String&& value) { m_blueprintNameHasBeenSet = true; m_blueprintName = std::move(value); } /** *

The name of the blueprint to retrieve.

*/ inline void SetBlueprintName(const char* value) { m_blueprintNameHasBeenSet = true; m_blueprintName.assign(value); } /** *

The name of the blueprint to retrieve.

*/ inline GetPipelineBlueprintRequest& WithBlueprintName(const Aws::String& value) { SetBlueprintName(value); return *this;} /** *

The name of the blueprint to retrieve.

*/ inline GetPipelineBlueprintRequest& WithBlueprintName(Aws::String&& value) { SetBlueprintName(std::move(value)); return *this;} /** *

The name of the blueprint to retrieve.

*/ inline GetPipelineBlueprintRequest& WithBlueprintName(const char* value) { SetBlueprintName(value); return *this;} private: Aws::String m_blueprintName; bool m_blueprintNameHasBeenSet = false; }; } // namespace Model } // namespace OSIS } // namespace Aws