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

The configuration for resource targets to receive notifications when meeting * and attendee events occur.

See Also:

AWS * API Reference

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

The ARN of the AWS Lambda function in the notifications configuration.

*/ inline const Aws::String& GetLambdaFunctionArn() const{ return m_lambdaFunctionArn; } /** *

The ARN of the AWS Lambda function in the notifications configuration.

*/ inline bool LambdaFunctionArnHasBeenSet() const { return m_lambdaFunctionArnHasBeenSet; } /** *

The ARN of the AWS Lambda function in the notifications configuration.

*/ inline void SetLambdaFunctionArn(const Aws::String& value) { m_lambdaFunctionArnHasBeenSet = true; m_lambdaFunctionArn = value; } /** *

The ARN of the AWS Lambda function in the notifications configuration.

*/ inline void SetLambdaFunctionArn(Aws::String&& value) { m_lambdaFunctionArnHasBeenSet = true; m_lambdaFunctionArn = std::move(value); } /** *

The ARN of the AWS Lambda function in the notifications configuration.

*/ inline void SetLambdaFunctionArn(const char* value) { m_lambdaFunctionArnHasBeenSet = true; m_lambdaFunctionArn.assign(value); } /** *

The ARN of the AWS Lambda function in the notifications configuration.

*/ inline NotificationsConfiguration& WithLambdaFunctionArn(const Aws::String& value) { SetLambdaFunctionArn(value); return *this;} /** *

The ARN of the AWS Lambda function in the notifications configuration.

*/ inline NotificationsConfiguration& WithLambdaFunctionArn(Aws::String&& value) { SetLambdaFunctionArn(std::move(value)); return *this;} /** *

The ARN of the AWS Lambda function in the notifications configuration.

*/ inline NotificationsConfiguration& WithLambdaFunctionArn(const char* value) { SetLambdaFunctionArn(value); return *this;} /** *

The ARN of the SNS topic.

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

The ARN of the SNS topic.

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

The ARN of the SNS topic.

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

The ARN of the SNS topic.

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

The ARN of the SNS topic.

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

The ARN of the SNS topic.

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

The ARN of the SNS topic.

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

The ARN of the SNS topic.

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

The ARN of the SQS queue.

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

The ARN of the SQS queue.

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

The ARN of the SQS queue.

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

The ARN of the SQS queue.

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

The ARN of the SQS queue.

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

The ARN of the SQS queue.

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

The ARN of the SQS queue.

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

The ARN of the SQS queue.

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