Module Values.EventTopicSource

Information about Amazon SNS topic and Directory Service directory associations.

Sourcetype nonrec t = {
  1. directoryId : DirectoryId.t option;
    (*

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

    *)
  2. topicName : TopicName.t option;
    (*

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

    *)
  3. topicArn : TopicArn.t option;
    (*

    The Amazon SNS topic ARN (Amazon Resource Name).

    *)
  4. createdDateTime : CreatedDateTime.t option;
    (*

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

    *)
  5. status : TopicStatus.t option;
    (*

    The topic registration status.

    *)
}
Sourceval make : ?directoryId:??? -> ?topicName:??? -> ?topicArn:??? -> ?createdDateTime:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DirectoryId.t | `Timestamp of CreatedDateTime.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t