Module Values.AwsRdsEventSubscriptionDetailsSource

Details about an Amazon RDS event notification subscription. The subscription allows Amazon RDS to post events to an SNS topic.

Sourcetype nonrec t = {
  1. custSubscriptionId : NonEmptyString.t option;
    (*

    The identifier of the account that is associated with the event notification subscription.

    *)
  2. customerAwsId : NonEmptyString.t option;
    (*

    The identifier of the event notification subscription.

    *)
  3. enabled : Boolean.t option;
    (*

    Whether the event notification subscription is enabled.

    *)
  4. eventCategoriesList : NonEmptyStringList.t option;
    (*

    The list of event categories for the event notification subscription.

    *)
  5. eventSubscriptionArn : NonEmptyString.t option;
    (*

    The ARN of the event notification subscription.

    *)
  6. snsTopicArn : NonEmptyString.t option;
    (*

    The ARN of the SNS topic to post the event notifications to.

    *)
  7. sourceIdsList : NonEmptyStringList.t option;
    (*

    A list of source identifiers for the event notification subscription.

    *)
  8. sourceType : NonEmptyString.t option;
    (*

    The source type for the event notification subscription.

    *)
  9. status : NonEmptyString.t option;
    (*

    The status of the event notification subscription. Valid values: creating | modifying | deleting | active | no-permission | topic-not-exist

    *)
  10. subscriptionCreationTime : NonEmptyString.t option;
    (*

    The datetime when the event notification subscription was created. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

    *)
}
Sourceval make : ?custSubscriptionId:??? -> ?customerAwsId:??? -> ?enabled:??? -> ?eventCategoriesList:??? -> ?eventSubscriptionArn:??? -> ?snsTopicArn:??? -> ?sourceIdsList:??? -> ?sourceType:??? -> ?status:??? -> ?subscriptionCreationTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of NonEmptyString.t ] list | `String of NonEmptyString.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