/** * 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 Inspector { namespace Model { /** */ class UnsubscribeFromEventRequest : public InspectorRequest { public: AWS_INSPECTOR_API UnsubscribeFromEventRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "UnsubscribeFromEvent"; } AWS_INSPECTOR_API Aws::String SerializePayload() const override; AWS_INSPECTOR_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The ARN of the assessment template that is used during the event for which * you want to stop receiving SNS notifications.

*/ inline const Aws::String& GetResourceArn() const{ return m_resourceArn; } /** *

The ARN of the assessment template that is used during the event for which * you want to stop receiving SNS notifications.

*/ inline bool ResourceArnHasBeenSet() const { return m_resourceArnHasBeenSet; } /** *

The ARN of the assessment template that is used during the event for which * you want to stop receiving SNS notifications.

*/ inline void SetResourceArn(const Aws::String& value) { m_resourceArnHasBeenSet = true; m_resourceArn = value; } /** *

The ARN of the assessment template that is used during the event for which * you want to stop receiving SNS notifications.

*/ inline void SetResourceArn(Aws::String&& value) { m_resourceArnHasBeenSet = true; m_resourceArn = std::move(value); } /** *

The ARN of the assessment template that is used during the event for which * you want to stop receiving SNS notifications.

*/ inline void SetResourceArn(const char* value) { m_resourceArnHasBeenSet = true; m_resourceArn.assign(value); } /** *

The ARN of the assessment template that is used during the event for which * you want to stop receiving SNS notifications.

*/ inline UnsubscribeFromEventRequest& WithResourceArn(const Aws::String& value) { SetResourceArn(value); return *this;} /** *

The ARN of the assessment template that is used during the event for which * you want to stop receiving SNS notifications.

*/ inline UnsubscribeFromEventRequest& WithResourceArn(Aws::String&& value) { SetResourceArn(std::move(value)); return *this;} /** *

The ARN of the assessment template that is used during the event for which * you want to stop receiving SNS notifications.

*/ inline UnsubscribeFromEventRequest& WithResourceArn(const char* value) { SetResourceArn(value); return *this;} /** *

The event for which you want to stop receiving SNS notifications.

*/ inline const InspectorEvent& GetEvent() const{ return m_event; } /** *

The event for which you want to stop receiving SNS notifications.

*/ inline bool EventHasBeenSet() const { return m_eventHasBeenSet; } /** *

The event for which you want to stop receiving SNS notifications.

*/ inline void SetEvent(const InspectorEvent& value) { m_eventHasBeenSet = true; m_event = value; } /** *

The event for which you want to stop receiving SNS notifications.

*/ inline void SetEvent(InspectorEvent&& value) { m_eventHasBeenSet = true; m_event = std::move(value); } /** *

The event for which you want to stop receiving SNS notifications.

*/ inline UnsubscribeFromEventRequest& WithEvent(const InspectorEvent& value) { SetEvent(value); return *this;} /** *

The event for which you want to stop receiving SNS notifications.

*/ inline UnsubscribeFromEventRequest& WithEvent(InspectorEvent&& value) { SetEvent(std::move(value)); return *this;} /** *

The ARN of the SNS topic to which SNS notifications are sent.

*/ inline const Aws::String& GetTopicArn() const{ return m_topicArn; } /** *

The ARN of the SNS topic to which SNS notifications are sent.

*/ inline bool TopicArnHasBeenSet() const { return m_topicArnHasBeenSet; } /** *

The ARN of the SNS topic to which SNS notifications are sent.

*/ inline void SetTopicArn(const Aws::String& value) { m_topicArnHasBeenSet = true; m_topicArn = value; } /** *

The ARN of the SNS topic to which SNS notifications are sent.

*/ inline void SetTopicArn(Aws::String&& value) { m_topicArnHasBeenSet = true; m_topicArn = std::move(value); } /** *

The ARN of the SNS topic to which SNS notifications are sent.

*/ inline void SetTopicArn(const char* value) { m_topicArnHasBeenSet = true; m_topicArn.assign(value); } /** *

The ARN of the SNS topic to which SNS notifications are sent.

*/ inline UnsubscribeFromEventRequest& WithTopicArn(const Aws::String& value) { SetTopicArn(value); return *this;} /** *

The ARN of the SNS topic to which SNS notifications are sent.

*/ inline UnsubscribeFromEventRequest& WithTopicArn(Aws::String&& value) { SetTopicArn(std::move(value)); return *this;} /** *

The ARN of the SNS topic to which SNS notifications are sent.

*/ inline UnsubscribeFromEventRequest& WithTopicArn(const char* value) { SetTopicArn(value); return *this;} private: Aws::String m_resourceArn; bool m_resourceArnHasBeenSet = false; InspectorEvent m_event; bool m_eventHasBeenSet = false; Aws::String m_topicArn; bool m_topicArnHasBeenSet = false; }; } // namespace Model } // namespace Inspector } // namespace Aws