Module Values.DescribeEventSourceResponseSource

This operation lists details about a partner event source that is shared with your account.

Sourcetype nonrec t = {
  1. arn : String_.t option;
    (*

    The ARN of the partner event source.

    *)
  2. createdBy : String_.t option;
    (*

    The name of the SaaS partner that created the event source.

    *)
  3. creationTime : Timestamp.t option;
    (*

    The date and time that the event source was created.

    *)
  4. expirationTime : Timestamp.t option;
    (*

    The date and time that the event source will expire if you do not create a matching event bus.

    *)
  5. name : String_.t option;
    (*

    The name of the partner event source.

    *)
  6. state : EventSourceState.t option;
    (*

    The state of the event source. If it is ACTIVE, you have already created a matching event bus for this event source, and that event bus is active. If it is PENDING, either you haven't yet created a matching event bus, or that event bus is deactivated. If it is DELETED, you have created a matching event bus, but the event source has since been deleted.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalException of InternalException.t
  2. | `OperationDisabledException of OperationDisabledException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?createdBy:??? -> ?creationTime:??? -> ?expirationTime:??? -> ?name:??? -> ?state:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalException of unit | `OperationDisabledException of unit | `ResourceNotFoundException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalException of unit | `OperationDisabledException of unit | `ResourceNotFoundException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Timestamp.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