/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace CodeStar { namespace Model { /** *

Information about a resource for a project.

See Also:

AWS * API Reference

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

The Amazon Resource Name (ARN) of the resource.

*/ inline const Aws::String& GetId() const{ return m_id; } /** *

The Amazon Resource Name (ARN) of the resource.

*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the resource.

*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *

The Amazon Resource Name (ARN) of the resource.

*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *

The Amazon Resource Name (ARN) of the resource.

*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *

The Amazon Resource Name (ARN) of the resource.

*/ inline Resource& WithId(const Aws::String& value) { SetId(value); return *this;} /** *

The Amazon Resource Name (ARN) of the resource.

*/ inline Resource& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the resource.

*/ inline Resource& WithId(const char* value) { SetId(value); return *this;} private: Aws::String m_id; bool m_idHasBeenSet = false; }; } // namespace Model } // namespace CodeStar } // namespace Aws