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

Summary of details of a channel associated with channel flow.

See * Also:

AWS * API Reference

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

The name of the channel flow.

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

The name of the channel flow.

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

The name of the channel flow.

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

The name of the channel flow.

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

The name of the channel flow.

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

The name of the channel flow.

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

The name of the channel flow.

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

The name of the channel flow.

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

The ARN of the channel.

*/ inline const Aws::String& GetChannelArn() const{ return m_channelArn; } /** *

The ARN of the channel.

*/ inline bool ChannelArnHasBeenSet() const { return m_channelArnHasBeenSet; } /** *

The ARN of the channel.

*/ inline void SetChannelArn(const Aws::String& value) { m_channelArnHasBeenSet = true; m_channelArn = value; } /** *

The ARN of the channel.

*/ inline void SetChannelArn(Aws::String&& value) { m_channelArnHasBeenSet = true; m_channelArn = std::move(value); } /** *

The ARN of the channel.

*/ inline void SetChannelArn(const char* value) { m_channelArnHasBeenSet = true; m_channelArn.assign(value); } /** *

The ARN of the channel.

*/ inline ChannelAssociatedWithFlowSummary& WithChannelArn(const Aws::String& value) { SetChannelArn(value); return *this;} /** *

The ARN of the channel.

*/ inline ChannelAssociatedWithFlowSummary& WithChannelArn(Aws::String&& value) { SetChannelArn(std::move(value)); return *this;} /** *

The ARN of the channel.

*/ inline ChannelAssociatedWithFlowSummary& WithChannelArn(const char* value) { SetChannelArn(value); return *this;} /** *

The mode of the channel.

*/ inline const ChannelMode& GetMode() const{ return m_mode; } /** *

The mode of the channel.

*/ inline bool ModeHasBeenSet() const { return m_modeHasBeenSet; } /** *

The mode of the channel.

*/ inline void SetMode(const ChannelMode& value) { m_modeHasBeenSet = true; m_mode = value; } /** *

The mode of the channel.

*/ inline void SetMode(ChannelMode&& value) { m_modeHasBeenSet = true; m_mode = std::move(value); } /** *

The mode of the channel.

*/ inline ChannelAssociatedWithFlowSummary& WithMode(const ChannelMode& value) { SetMode(value); return *this;} /** *

The mode of the channel.

*/ inline ChannelAssociatedWithFlowSummary& WithMode(ChannelMode&& value) { SetMode(std::move(value)); return *this;} /** *

The channel's privacy setting.

*/ inline const ChannelPrivacy& GetPrivacy() const{ return m_privacy; } /** *

The channel's privacy setting.

*/ inline bool PrivacyHasBeenSet() const { return m_privacyHasBeenSet; } /** *

The channel's privacy setting.

*/ inline void SetPrivacy(const ChannelPrivacy& value) { m_privacyHasBeenSet = true; m_privacy = value; } /** *

The channel's privacy setting.

*/ inline void SetPrivacy(ChannelPrivacy&& value) { m_privacyHasBeenSet = true; m_privacy = std::move(value); } /** *

The channel's privacy setting.

*/ inline ChannelAssociatedWithFlowSummary& WithPrivacy(const ChannelPrivacy& value) { SetPrivacy(value); return *this;} /** *

The channel's privacy setting.

*/ inline ChannelAssociatedWithFlowSummary& WithPrivacy(ChannelPrivacy&& value) { SetPrivacy(std::move(value)); return *this;} /** *

The channel's metadata.

*/ inline const Aws::String& GetMetadata() const{ return m_metadata; } /** *

The channel's metadata.

*/ inline bool MetadataHasBeenSet() const { return m_metadataHasBeenSet; } /** *

The channel's metadata.

*/ inline void SetMetadata(const Aws::String& value) { m_metadataHasBeenSet = true; m_metadata = value; } /** *

The channel's metadata.

*/ inline void SetMetadata(Aws::String&& value) { m_metadataHasBeenSet = true; m_metadata = std::move(value); } /** *

The channel's metadata.

*/ inline void SetMetadata(const char* value) { m_metadataHasBeenSet = true; m_metadata.assign(value); } /** *

The channel's metadata.

*/ inline ChannelAssociatedWithFlowSummary& WithMetadata(const Aws::String& value) { SetMetadata(value); return *this;} /** *

The channel's metadata.

*/ inline ChannelAssociatedWithFlowSummary& WithMetadata(Aws::String&& value) { SetMetadata(std::move(value)); return *this;} /** *

The channel's metadata.

*/ inline ChannelAssociatedWithFlowSummary& WithMetadata(const char* value) { SetMetadata(value); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_channelArn; bool m_channelArnHasBeenSet = false; ChannelMode m_mode; bool m_modeHasBeenSet = false; ChannelPrivacy m_privacy; bool m_privacyHasBeenSet = false; Aws::String m_metadata; bool m_metadataHasBeenSet = false; }; } // namespace Model } // namespace ChimeSDKMessaging } // namespace Aws