Module Values.EventConfigurationItemSource

Event configuration object for a single resource.

Sourcetype nonrec t = {
  1. identifier : Identifier.t option;
    (*

    Resource identifier opted in for event messaging.

    *)
  2. identifierType : IdentifierType.t option;
    (*

    Identifier type of the particular resource identifier for event configuration.

    *)
  3. partnerType : EventNotificationPartnerType.t option;
    (*

    Partner type of the resource if the identifier type is PartnerAccountId.

    *)
  4. events : EventNotificationItemConfigurations.t option;
}
Sourceval make : ?identifier:??? -> ?identifierType:??? -> ?partnerType:??? -> ?events:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Identifier.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string ]) list ]) list ]) list ]) 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