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

Object for the summarized details of the layout.

See Also:

* AWS * API Reference

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

The Amazon Resource Name (ARN) of the layout.

*/ inline const Aws::String& GetLayoutArn() const{ return m_layoutArn; } /** *

The Amazon Resource Name (ARN) of the layout.

*/ inline bool LayoutArnHasBeenSet() const { return m_layoutArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the layout.

*/ inline void SetLayoutArn(const Aws::String& value) { m_layoutArnHasBeenSet = true; m_layoutArn = value; } /** *

The Amazon Resource Name (ARN) of the layout.

*/ inline void SetLayoutArn(Aws::String&& value) { m_layoutArnHasBeenSet = true; m_layoutArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the layout.

*/ inline void SetLayoutArn(const char* value) { m_layoutArnHasBeenSet = true; m_layoutArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the layout.

*/ inline LayoutSummary& WithLayoutArn(const Aws::String& value) { SetLayoutArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the layout.

*/ inline LayoutSummary& WithLayoutArn(Aws::String&& value) { SetLayoutArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the layout.

*/ inline LayoutSummary& WithLayoutArn(const char* value) { SetLayoutArn(value); return *this;} /** *

The unique identifier for of the layout.

*/ inline const Aws::String& GetLayoutId() const{ return m_layoutId; } /** *

The unique identifier for of the layout.

*/ inline bool LayoutIdHasBeenSet() const { return m_layoutIdHasBeenSet; } /** *

The unique identifier for of the layout.

*/ inline void SetLayoutId(const Aws::String& value) { m_layoutIdHasBeenSet = true; m_layoutId = value; } /** *

The unique identifier for of the layout.

*/ inline void SetLayoutId(Aws::String&& value) { m_layoutIdHasBeenSet = true; m_layoutId = std::move(value); } /** *

The unique identifier for of the layout.

*/ inline void SetLayoutId(const char* value) { m_layoutIdHasBeenSet = true; m_layoutId.assign(value); } /** *

The unique identifier for of the layout.

*/ inline LayoutSummary& WithLayoutId(const Aws::String& value) { SetLayoutId(value); return *this;} /** *

The unique identifier for of the layout.

*/ inline LayoutSummary& WithLayoutId(Aws::String&& value) { SetLayoutId(std::move(value)); return *this;} /** *

The unique identifier for of the layout.

*/ inline LayoutSummary& WithLayoutId(const char* value) { SetLayoutId(value); return *this;} /** *

The name of the layout.

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

The name of the layout.

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

The name of the layout.

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

The name of the layout.

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

The name of the layout.

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

The name of the layout.

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

The name of the layout.

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

The name of the layout.

*/ inline LayoutSummary& WithName(const char* value) { SetName(value); return *this;} private: Aws::String m_layoutArn; bool m_layoutArnHasBeenSet = false; Aws::String m_layoutId; bool m_layoutIdHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; }; } // namespace Model } // namespace ConnectCases } // namespace Aws