/** * 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 Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace CodePipeline { namespace Model { /** *

Reserved for future use.

See Also:

AWS * API Reference

*/ class BlockerDeclaration { public: AWS_CODEPIPELINE_API BlockerDeclaration(); AWS_CODEPIPELINE_API BlockerDeclaration(Aws::Utils::Json::JsonView jsonValue); AWS_CODEPIPELINE_API BlockerDeclaration& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_CODEPIPELINE_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

Reserved for future use.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

Reserved for future use.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

Reserved for future use.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

Reserved for future use.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

Reserved for future use.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

Reserved for future use.

*/ inline BlockerDeclaration& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

Reserved for future use.

*/ inline BlockerDeclaration& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

Reserved for future use.

*/ inline BlockerDeclaration& WithName(const char* value) { SetName(value); return *this;} /** *

Reserved for future use.

*/ inline const BlockerType& GetType() const{ return m_type; } /** *

Reserved for future use.

*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *

Reserved for future use.

*/ inline void SetType(const BlockerType& value) { m_typeHasBeenSet = true; m_type = value; } /** *

Reserved for future use.

*/ inline void SetType(BlockerType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *

Reserved for future use.

*/ inline BlockerDeclaration& WithType(const BlockerType& value) { SetType(value); return *this;} /** *

Reserved for future use.

*/ inline BlockerDeclaration& WithType(BlockerType&& value) { SetType(std::move(value)); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet = false; BlockerType m_type; bool m_typeHasBeenSet = false; }; } // namespace Model } // namespace CodePipeline } // namespace Aws