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

Represents a request to specify the Amazon SNS topic to which Amazon SES will * publish bounce, complaint, or delivery notifications for emails sent with that * identity as the Source. For information about Amazon SES notifications, see the * Amazon * SES Developer Guide.

See Also:

AWS * API Reference

*/ class SetIdentityNotificationTopicRequest : public SESRequest { public: AWS_SES_API SetIdentityNotificationTopicRequest(); // 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 "SetIdentityNotificationTopic"; } AWS_SES_API Aws::String SerializePayload() const override; protected: AWS_SES_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

The identity (email address or domain) that you want to set the Amazon SNS * topic for.

You can only specify a verified identity for this * parameter.

You can specify an identity by using its name or * by using its Amazon Resource Name (ARN). The following examples are all valid * identities: sender@example.com, example.com, * arn:aws:ses:us-east-1:123456789012:identity/example.com.

*/ inline const Aws::String& GetIdentity() const{ return m_identity; } /** *

The identity (email address or domain) that you want to set the Amazon SNS * topic for.

You can only specify a verified identity for this * parameter.

You can specify an identity by using its name or * by using its Amazon Resource Name (ARN). The following examples are all valid * identities: sender@example.com, example.com, * arn:aws:ses:us-east-1:123456789012:identity/example.com.

*/ inline bool IdentityHasBeenSet() const { return m_identityHasBeenSet; } /** *

The identity (email address or domain) that you want to set the Amazon SNS * topic for.

You can only specify a verified identity for this * parameter.

You can specify an identity by using its name or * by using its Amazon Resource Name (ARN). The following examples are all valid * identities: sender@example.com, example.com, * arn:aws:ses:us-east-1:123456789012:identity/example.com.

*/ inline void SetIdentity(const Aws::String& value) { m_identityHasBeenSet = true; m_identity = value; } /** *

The identity (email address or domain) that you want to set the Amazon SNS * topic for.

You can only specify a verified identity for this * parameter.

You can specify an identity by using its name or * by using its Amazon Resource Name (ARN). The following examples are all valid * identities: sender@example.com, example.com, * arn:aws:ses:us-east-1:123456789012:identity/example.com.

*/ inline void SetIdentity(Aws::String&& value) { m_identityHasBeenSet = true; m_identity = std::move(value); } /** *

The identity (email address or domain) that you want to set the Amazon SNS * topic for.

You can only specify a verified identity for this * parameter.

You can specify an identity by using its name or * by using its Amazon Resource Name (ARN). The following examples are all valid * identities: sender@example.com, example.com, * arn:aws:ses:us-east-1:123456789012:identity/example.com.

*/ inline void SetIdentity(const char* value) { m_identityHasBeenSet = true; m_identity.assign(value); } /** *

The identity (email address or domain) that you want to set the Amazon SNS * topic for.

You can only specify a verified identity for this * parameter.

You can specify an identity by using its name or * by using its Amazon Resource Name (ARN). The following examples are all valid * identities: sender@example.com, example.com, * arn:aws:ses:us-east-1:123456789012:identity/example.com.

*/ inline SetIdentityNotificationTopicRequest& WithIdentity(const Aws::String& value) { SetIdentity(value); return *this;} /** *

The identity (email address or domain) that you want to set the Amazon SNS * topic for.

You can only specify a verified identity for this * parameter.

You can specify an identity by using its name or * by using its Amazon Resource Name (ARN). The following examples are all valid * identities: sender@example.com, example.com, * arn:aws:ses:us-east-1:123456789012:identity/example.com.

*/ inline SetIdentityNotificationTopicRequest& WithIdentity(Aws::String&& value) { SetIdentity(std::move(value)); return *this;} /** *

The identity (email address or domain) that you want to set the Amazon SNS * topic for.

You can only specify a verified identity for this * parameter.

You can specify an identity by using its name or * by using its Amazon Resource Name (ARN). The following examples are all valid * identities: sender@example.com, example.com, * arn:aws:ses:us-east-1:123456789012:identity/example.com.

*/ inline SetIdentityNotificationTopicRequest& WithIdentity(const char* value) { SetIdentity(value); return *this;} /** *

The type of notifications that will be published to the specified Amazon SNS * topic.

*/ inline const NotificationType& GetNotificationType() const{ return m_notificationType; } /** *

The type of notifications that will be published to the specified Amazon SNS * topic.

*/ inline bool NotificationTypeHasBeenSet() const { return m_notificationTypeHasBeenSet; } /** *

The type of notifications that will be published to the specified Amazon SNS * topic.

*/ inline void SetNotificationType(const NotificationType& value) { m_notificationTypeHasBeenSet = true; m_notificationType = value; } /** *

The type of notifications that will be published to the specified Amazon SNS * topic.

*/ inline void SetNotificationType(NotificationType&& value) { m_notificationTypeHasBeenSet = true; m_notificationType = std::move(value); } /** *

The type of notifications that will be published to the specified Amazon SNS * topic.

*/ inline SetIdentityNotificationTopicRequest& WithNotificationType(const NotificationType& value) { SetNotificationType(value); return *this;} /** *

The type of notifications that will be published to the specified Amazon SNS * topic.

*/ inline SetIdentityNotificationTopicRequest& WithNotificationType(NotificationType&& value) { SetNotificationType(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the Amazon SNS topic. If the parameter is * omitted from the request or a null value is passed, SnsTopic is * cleared and publishing is disabled.

*/ inline const Aws::String& GetSnsTopic() const{ return m_snsTopic; } /** *

The Amazon Resource Name (ARN) of the Amazon SNS topic. If the parameter is * omitted from the request or a null value is passed, SnsTopic is * cleared and publishing is disabled.

*/ inline bool SnsTopicHasBeenSet() const { return m_snsTopicHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the Amazon SNS topic. If the parameter is * omitted from the request or a null value is passed, SnsTopic is * cleared and publishing is disabled.

*/ inline void SetSnsTopic(const Aws::String& value) { m_snsTopicHasBeenSet = true; m_snsTopic = value; } /** *

The Amazon Resource Name (ARN) of the Amazon SNS topic. If the parameter is * omitted from the request or a null value is passed, SnsTopic is * cleared and publishing is disabled.

*/ inline void SetSnsTopic(Aws::String&& value) { m_snsTopicHasBeenSet = true; m_snsTopic = std::move(value); } /** *

The Amazon Resource Name (ARN) of the Amazon SNS topic. If the parameter is * omitted from the request or a null value is passed, SnsTopic is * cleared and publishing is disabled.

*/ inline void SetSnsTopic(const char* value) { m_snsTopicHasBeenSet = true; m_snsTopic.assign(value); } /** *

The Amazon Resource Name (ARN) of the Amazon SNS topic. If the parameter is * omitted from the request or a null value is passed, SnsTopic is * cleared and publishing is disabled.

*/ inline SetIdentityNotificationTopicRequest& WithSnsTopic(const Aws::String& value) { SetSnsTopic(value); return *this;} /** *

The Amazon Resource Name (ARN) of the Amazon SNS topic. If the parameter is * omitted from the request or a null value is passed, SnsTopic is * cleared and publishing is disabled.

*/ inline SetIdentityNotificationTopicRequest& WithSnsTopic(Aws::String&& value) { SetSnsTopic(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the Amazon SNS topic. If the parameter is * omitted from the request or a null value is passed, SnsTopic is * cleared and publishing is disabled.

*/ inline SetIdentityNotificationTopicRequest& WithSnsTopic(const char* value) { SetSnsTopic(value); return *this;} private: Aws::String m_identity; bool m_identityHasBeenSet = false; NotificationType m_notificationType; bool m_notificationTypeHasBeenSet = false; Aws::String m_snsTopic; bool m_snsTopicHasBeenSet = false; }; } // namespace Model } // namespace SES } // namespace Aws