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

The resource target configurations for receiving Amazon Chime SDK meeting * and attendee event notifications. The Amazon Chime SDK supports resource targets * located in the US East (N. Virginia) AWS Region (us-east-1). *

See Also:

AWS * API Reference

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

The SNS topic ARN.

*/ inline const Aws::String& GetSnsTopicArn() const{ return m_snsTopicArn; } /** *

The SNS topic ARN.

*/ inline bool SnsTopicArnHasBeenSet() const { return m_snsTopicArnHasBeenSet; } /** *

The SNS topic ARN.

*/ inline void SetSnsTopicArn(const Aws::String& value) { m_snsTopicArnHasBeenSet = true; m_snsTopicArn = value; } /** *

The SNS topic ARN.

*/ inline void SetSnsTopicArn(Aws::String&& value) { m_snsTopicArnHasBeenSet = true; m_snsTopicArn = std::move(value); } /** *

The SNS topic ARN.

*/ inline void SetSnsTopicArn(const char* value) { m_snsTopicArnHasBeenSet = true; m_snsTopicArn.assign(value); } /** *

The SNS topic ARN.

*/ inline MeetingNotificationConfiguration& WithSnsTopicArn(const Aws::String& value) { SetSnsTopicArn(value); return *this;} /** *

The SNS topic ARN.

*/ inline MeetingNotificationConfiguration& WithSnsTopicArn(Aws::String&& value) { SetSnsTopicArn(std::move(value)); return *this;} /** *

The SNS topic ARN.

*/ inline MeetingNotificationConfiguration& WithSnsTopicArn(const char* value) { SetSnsTopicArn(value); return *this;} /** *

The SQS queue ARN.

*/ inline const Aws::String& GetSqsQueueArn() const{ return m_sqsQueueArn; } /** *

The SQS queue ARN.

*/ inline bool SqsQueueArnHasBeenSet() const { return m_sqsQueueArnHasBeenSet; } /** *

The SQS queue ARN.

*/ inline void SetSqsQueueArn(const Aws::String& value) { m_sqsQueueArnHasBeenSet = true; m_sqsQueueArn = value; } /** *

The SQS queue ARN.

*/ inline void SetSqsQueueArn(Aws::String&& value) { m_sqsQueueArnHasBeenSet = true; m_sqsQueueArn = std::move(value); } /** *

The SQS queue ARN.

*/ inline void SetSqsQueueArn(const char* value) { m_sqsQueueArnHasBeenSet = true; m_sqsQueueArn.assign(value); } /** *

The SQS queue ARN.

*/ inline MeetingNotificationConfiguration& WithSqsQueueArn(const Aws::String& value) { SetSqsQueueArn(value); return *this;} /** *

The SQS queue ARN.

*/ inline MeetingNotificationConfiguration& WithSqsQueueArn(Aws::String&& value) { SetSqsQueueArn(std::move(value)); return *this;} /** *

The SQS queue ARN.

*/ inline MeetingNotificationConfiguration& WithSqsQueueArn(const char* value) { SetSqsQueueArn(value); return *this;} private: Aws::String m_snsTopicArn; bool m_snsTopicArnHasBeenSet = false; Aws::String m_sqsQueueArn; bool m_sqsQueueArnHasBeenSet = false; }; } // namespace Model } // namespace Chime } // namespace Aws