/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Summary information about a product path for a user.See Also:
* AWS
* API Reference
The identifier of the product path.
*/ inline const Aws::String& GetId() const{ return m_id; } /** *The identifier of the product path.
*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *The identifier of the product path.
*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *The identifier of the product path.
*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *The identifier of the product path.
*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *The identifier of the product path.
*/ inline LaunchPathSummary& WithId(const Aws::String& value) { SetId(value); return *this;} /** *The identifier of the product path.
*/ inline LaunchPathSummary& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *The identifier of the product path.
*/ inline LaunchPathSummary& WithId(const char* value) { SetId(value); return *this;} /** *The constraints on the portfolio-product relationship.
*/ inline const Aws::VectorThe constraints on the portfolio-product relationship.
*/ inline bool ConstraintSummariesHasBeenSet() const { return m_constraintSummariesHasBeenSet; } /** *The constraints on the portfolio-product relationship.
*/ inline void SetConstraintSummaries(const Aws::VectorThe constraints on the portfolio-product relationship.
*/ inline void SetConstraintSummaries(Aws::VectorThe constraints on the portfolio-product relationship.
*/ inline LaunchPathSummary& WithConstraintSummaries(const Aws::VectorThe constraints on the portfolio-product relationship.
*/ inline LaunchPathSummary& WithConstraintSummaries(Aws::VectorThe constraints on the portfolio-product relationship.
*/ inline LaunchPathSummary& AddConstraintSummaries(const ConstraintSummary& value) { m_constraintSummariesHasBeenSet = true; m_constraintSummaries.push_back(value); return *this; } /** *The constraints on the portfolio-product relationship.
*/ inline LaunchPathSummary& AddConstraintSummaries(ConstraintSummary&& value) { m_constraintSummariesHasBeenSet = true; m_constraintSummaries.push_back(std::move(value)); return *this; } /** *The tags associated with this product path.
*/ inline const Aws::VectorThe tags associated with this product path.
*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *The tags associated with this product path.
*/ inline void SetTags(const Aws::VectorThe tags associated with this product path.
*/ inline void SetTags(Aws::VectorThe tags associated with this product path.
*/ inline LaunchPathSummary& WithTags(const Aws::VectorThe tags associated with this product path.
*/ inline LaunchPathSummary& WithTags(Aws::VectorThe tags associated with this product path.
*/ inline LaunchPathSummary& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; } /** *The tags associated with this product path.
*/ inline LaunchPathSummary& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; } /** *The name of the portfolio that contains the product.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The name of the portfolio that contains the product.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the portfolio that contains the product.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the portfolio that contains the product.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the portfolio that contains the product.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The name of the portfolio that contains the product.
*/ inline LaunchPathSummary& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of the portfolio that contains the product.
*/ inline LaunchPathSummary& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of the portfolio that contains the product.
*/ inline LaunchPathSummary& WithName(const char* value) { SetName(value); return *this;} private: Aws::String m_id; bool m_idHasBeenSet = false; Aws::Vector