/** * 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 XRay { namespace Model { /** *

A list of EC2 instance IDs corresponding to the segments in a trace. *

See Also:

AWS * API Reference

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

The ID of a corresponding EC2 instance.

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

The ID of a corresponding EC2 instance.

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

The ID of a corresponding EC2 instance.

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

The ID of a corresponding EC2 instance.

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

The ID of a corresponding EC2 instance.

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

The ID of a corresponding EC2 instance.

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

The ID of a corresponding EC2 instance.

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

The ID of a corresponding EC2 instance.

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