Module Values.GetFeedResponseSource

Retrieves information about the specified feed.

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

    The ARN of the feed.

    *)
  2. name : ResourceName.t option;
    (*

    The name of the feed being queried.

    *)
  3. id : FeedId.t option;
    (*

    The ID of the feed being queried.

    *)
  4. dataEndpoints : StringList.t option;
    (*

    The dataEndpoints of the feed being queried.

    *)
  5. outputs : GetOutputList.t option;
    (*

    An array of the outputs in the feed being queried.

    *)
  6. status : FeedStatus.t option;
    (*

    The status of the feed being queried.

    *)
  7. association : FeedAssociation.t option;
    (*

    Information about the resource, if any, associated with the feed being queried.

    *)
  8. tags : TagMap.t option;
    (*

    A list of the tags, if any, for the feed being queried.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerErrorException of InternalServerErrorException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `TooManyRequestException of TooManyRequestException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?name:??? -> ?id:??? -> ?dataEndpoints:??? -> ?outputs:??? -> ?status:??? -> ?association:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerErrorException of InternalServerErrorException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `TooManyRequestException of TooManyRequestException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerErrorException of InternalServerErrorException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `TooManyRequestException of TooManyRequestException.t | `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 | `List of [> `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of ResourceName.t | `Structure of (string * [> `Structure of (string * [> `String of ResourceDescription.t ]) list ]) list ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of FeedArn.t | `Structure of (string * [> `String of AssociatedResourceName.t ]) 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