/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An alias for an edge.See Also:
AWS API
* Reference
The canonical name of the alias.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The canonical name of the alias.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The canonical name of the alias.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The canonical name of the alias.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The canonical name of the alias.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The canonical name of the alias.
*/ inline Alias& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The canonical name of the alias.
*/ inline Alias& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The canonical name of the alias.
*/ inline Alias& WithName(const char* value) { SetName(value); return *this;} /** *A list of names for the alias, including the canonical name.
*/ inline const Aws::VectorA list of names for the alias, including the canonical name.
*/ inline bool NamesHasBeenSet() const { return m_namesHasBeenSet; } /** *A list of names for the alias, including the canonical name.
*/ inline void SetNames(const Aws::VectorA list of names for the alias, including the canonical name.
*/ inline void SetNames(Aws::VectorA list of names for the alias, including the canonical name.
*/ inline Alias& WithNames(const Aws::VectorA list of names for the alias, including the canonical name.
*/ inline Alias& WithNames(Aws::VectorA list of names for the alias, including the canonical name.
*/ inline Alias& AddNames(const Aws::String& value) { m_namesHasBeenSet = true; m_names.push_back(value); return *this; } /** *A list of names for the alias, including the canonical name.
*/ inline Alias& AddNames(Aws::String&& value) { m_namesHasBeenSet = true; m_names.push_back(std::move(value)); return *this; } /** *A list of names for the alias, including the canonical name.
*/ inline Alias& AddNames(const char* value) { m_namesHasBeenSet = true; m_names.push_back(value); return *this; } /** *The type of the alias.
*/ inline const Aws::String& GetType() const{ return m_type; } /** *The type of the alias.
*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *The type of the alias.
*/ inline void SetType(const Aws::String& value) { m_typeHasBeenSet = true; m_type = value; } /** *The type of the alias.
*/ inline void SetType(Aws::String&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *The type of the alias.
*/ inline void SetType(const char* value) { m_typeHasBeenSet = true; m_type.assign(value); } /** *The type of the alias.
*/ inline Alias& WithType(const Aws::String& value) { SetType(value); return *this;} /** *The type of the alias.
*/ inline Alias& WithType(Aws::String&& value) { SetType(std::move(value)); return *this;} /** *The type of the alias.
*/ inline Alias& WithType(const char* value) { SetType(value); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::Vector