Module Values.FeedSummarySource

Contains configuration information about a feed. It is used in the ListFeeds action.

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

    The ARN of the feed.

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

    The ID of the feed.

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

    The name of the feed

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

    The resource, if any, associated with the feed.

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

    The status of the feed.

    *)
}
Sourceval make : ?arn:??? -> ?id:??? -> ?name:??? -> ?association:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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