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

Information about Amazon SNS topic and Directory Service directory * associations.

See Also:

AWS API * Reference

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

The Directory ID of an Directory Service directory that will publish status * messages to an Amazon SNS topic.

*/ inline const Aws::String& GetDirectoryId() const{ return m_directoryId; } /** *

The Directory ID of an Directory Service directory that will publish status * messages to an Amazon SNS topic.

*/ inline bool DirectoryIdHasBeenSet() const { return m_directoryIdHasBeenSet; } /** *

The Directory ID of an Directory Service directory that will publish status * messages to an Amazon SNS topic.

*/ inline void SetDirectoryId(const Aws::String& value) { m_directoryIdHasBeenSet = true; m_directoryId = value; } /** *

The Directory ID of an Directory Service directory that will publish status * messages to an Amazon SNS topic.

*/ inline void SetDirectoryId(Aws::String&& value) { m_directoryIdHasBeenSet = true; m_directoryId = std::move(value); } /** *

The Directory ID of an Directory Service directory that will publish status * messages to an Amazon SNS topic.

*/ inline void SetDirectoryId(const char* value) { m_directoryIdHasBeenSet = true; m_directoryId.assign(value); } /** *

The Directory ID of an Directory Service directory that will publish status * messages to an Amazon SNS topic.

*/ inline EventTopic& WithDirectoryId(const Aws::String& value) { SetDirectoryId(value); return *this;} /** *

The Directory ID of an Directory Service directory that will publish status * messages to an Amazon SNS topic.

*/ inline EventTopic& WithDirectoryId(Aws::String&& value) { SetDirectoryId(std::move(value)); return *this;} /** *

The Directory ID of an Directory Service directory that will publish status * messages to an Amazon SNS topic.

*/ inline EventTopic& WithDirectoryId(const char* value) { SetDirectoryId(value); return *this;} /** *

The name of an Amazon SNS topic the receives status messages from the * directory.

*/ inline const Aws::String& GetTopicName() const{ return m_topicName; } /** *

The name of an Amazon SNS topic the receives status messages from the * directory.

*/ inline bool TopicNameHasBeenSet() const { return m_topicNameHasBeenSet; } /** *

The name of an Amazon SNS topic the receives status messages from the * directory.

*/ inline void SetTopicName(const Aws::String& value) { m_topicNameHasBeenSet = true; m_topicName = value; } /** *

The name of an Amazon SNS topic the receives status messages from the * directory.

*/ inline void SetTopicName(Aws::String&& value) { m_topicNameHasBeenSet = true; m_topicName = std::move(value); } /** *

The name of an Amazon SNS topic the receives status messages from the * directory.

*/ inline void SetTopicName(const char* value) { m_topicNameHasBeenSet = true; m_topicName.assign(value); } /** *

The name of an Amazon SNS topic the receives status messages from the * directory.

*/ inline EventTopic& WithTopicName(const Aws::String& value) { SetTopicName(value); return *this;} /** *

The name of an Amazon SNS topic the receives status messages from the * directory.

*/ inline EventTopic& WithTopicName(Aws::String&& value) { SetTopicName(std::move(value)); return *this;} /** *

The name of an Amazon SNS topic the receives status messages from the * directory.

*/ inline EventTopic& WithTopicName(const char* value) { SetTopicName(value); return *this;} /** *

The Amazon SNS topic ARN (Amazon Resource Name).

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

The Amazon SNS topic ARN (Amazon Resource Name).

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

The Amazon SNS topic ARN (Amazon Resource Name).

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

The Amazon SNS topic ARN (Amazon Resource Name).

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

The Amazon SNS topic ARN (Amazon Resource Name).

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

The Amazon SNS topic ARN (Amazon Resource Name).

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

The Amazon SNS topic ARN (Amazon Resource Name).

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

The Amazon SNS topic ARN (Amazon Resource Name).

*/ inline EventTopic& WithTopicArn(const char* value) { SetTopicArn(value); return *this;} /** *

The date and time of when you associated your directory with the Amazon SNS * topic.

*/ inline const Aws::Utils::DateTime& GetCreatedDateTime() const{ return m_createdDateTime; } /** *

The date and time of when you associated your directory with the Amazon SNS * topic.

*/ inline bool CreatedDateTimeHasBeenSet() const { return m_createdDateTimeHasBeenSet; } /** *

The date and time of when you associated your directory with the Amazon SNS * topic.

*/ inline void SetCreatedDateTime(const Aws::Utils::DateTime& value) { m_createdDateTimeHasBeenSet = true; m_createdDateTime = value; } /** *

The date and time of when you associated your directory with the Amazon SNS * topic.

*/ inline void SetCreatedDateTime(Aws::Utils::DateTime&& value) { m_createdDateTimeHasBeenSet = true; m_createdDateTime = std::move(value); } /** *

The date and time of when you associated your directory with the Amazon SNS * topic.

*/ inline EventTopic& WithCreatedDateTime(const Aws::Utils::DateTime& value) { SetCreatedDateTime(value); return *this;} /** *

The date and time of when you associated your directory with the Amazon SNS * topic.

*/ inline EventTopic& WithCreatedDateTime(Aws::Utils::DateTime&& value) { SetCreatedDateTime(std::move(value)); return *this;} /** *

The topic registration status.

*/ inline const TopicStatus& GetStatus() const{ return m_status; } /** *

The topic registration status.

*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *

The topic registration status.

*/ inline void SetStatus(const TopicStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *

The topic registration status.

*/ inline void SetStatus(TopicStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *

The topic registration status.

*/ inline EventTopic& WithStatus(const TopicStatus& value) { SetStatus(value); return *this;} /** *

The topic registration status.

*/ inline EventTopic& WithStatus(TopicStatus&& value) { SetStatus(std::move(value)); return *this;} private: Aws::String m_directoryId; bool m_directoryIdHasBeenSet = false; Aws::String m_topicName; bool m_topicNameHasBeenSet = false; Aws::String m_topicArn; bool m_topicArnHasBeenSet = false; Aws::Utils::DateTime m_createdDateTime; bool m_createdDateTimeHasBeenSet = false; TopicStatus m_status; bool m_statusHasBeenSet = false; }; } // namespace Model } // namespace DirectoryService } // namespace Aws